mirror of
https://github.com/cpvalente/ontime.git
synced 2026-08-16 12:53:32 +00:00
1849b4d39f
* chore: migrate eslint to oxlint * chore: migrate prettier to oxfmt * chore: migrate typescript * chore: toThrow should have a expected value * chore: cast test value as Day * chore: small title fix * chore: mocks should be hoisted * chore: incorrect async useage * chore: test should be inside description * chore: test sohuld include an expeced * chore: oxfmt --------- Co-authored-by: alex-Arc <omnivox@LAPTOP-RC5SNBVV.localdomain>
30 lines
799 B
TypeScript
30 lines
799 B
TypeScript
import { memo } from 'react';
|
|
|
|
import Empty from '../../common/components/state/Empty';
|
|
import { useRundownWithMetadata } from '../../common/hooks-query/useRundown';
|
|
import { useRundownEditor } from '../../common/hooks/useSocket';
|
|
import Rundown from './Rundown';
|
|
|
|
export default memo(RundownList);
|
|
function RundownList() {
|
|
const { data, status, rundownMetadata } = useRundownWithMetadata();
|
|
const featureData = useRundownEditor();
|
|
|
|
const isLoading = status !== 'success' || !data || !rundownMetadata;
|
|
|
|
if (isLoading) {
|
|
return <Empty text='Connecting to server' />;
|
|
}
|
|
|
|
return (
|
|
<Rundown
|
|
order={data.order}
|
|
flatOrder={data.flatOrder}
|
|
entries={data.entries}
|
|
id={data.id}
|
|
rundownMetadata={rundownMetadata}
|
|
featureData={featureData}
|
|
/>
|
|
);
|
|
}
|