mirror of
https://github.com/cpvalente/ontime.git
synced 2026-08-09 17:33:55 +00:00
74 lines
2.2 KiB
React
74 lines
2.2 KiB
React
import { Heading } from '@chakra-ui/layout';
|
|
import { Box } from '@chakra-ui/layout';
|
|
import NumberedText from 'common/components/text/NumberedText';
|
|
import PlaybackControl from '../control/PlaybackControl';
|
|
import MessageControl from '../control/MessageControl';
|
|
import styles from './Editor.module.css';
|
|
import EventListWrapper from './list/EventListWrapper';
|
|
import { useDisclosure } from '@chakra-ui/hooks';
|
|
import SettingsModal from '../modals/SettingsModal';
|
|
import { useEffect } from 'react';
|
|
import MenuBar from 'features/menu/MenuBar';
|
|
|
|
export default function Editor() {
|
|
const { isOpen, onOpen, onClose } = useDisclosure();
|
|
|
|
// Set window title
|
|
useEffect(() => {
|
|
document.title = 'ontime - Editor';
|
|
}, []);
|
|
|
|
return (
|
|
<>
|
|
<SettingsModal isOpen={isOpen} onClose={onClose} />
|
|
|
|
<div className={styles.mainContainer}>
|
|
<Box id='settings' className={styles.settings}>
|
|
<NavMenu onOpen={onOpen} onClose={onClose} />
|
|
</Box>
|
|
|
|
<Box className={styles.editor}>
|
|
<Heading size='lg' paddingBottom={'0.25em'}>
|
|
Event List
|
|
</Heading>
|
|
<NumberedText number={1} text={'Manage events'} />
|
|
<div className={styles.content}>
|
|
<EventListWrapper />
|
|
</div>
|
|
</Box>
|
|
|
|
<Box className={styles.messages}>
|
|
<Heading size='lg' paddingBottom={'0.25em'}>
|
|
Display Messages
|
|
</Heading>
|
|
<NumberedText
|
|
number={3}
|
|
text={'Show realtime messages on different screens'}
|
|
/>
|
|
<div className={styles.content}>
|
|
<MessageControl />
|
|
</div>
|
|
</Box>
|
|
|
|
<Box className={styles.playback}>
|
|
<Heading size='lg' paddingBottom={'0.25em'}>
|
|
Time Control
|
|
</Heading>
|
|
<NumberedText number={2} text={'Control timers'} />
|
|
<div className={styles.content}>
|
|
<PlaybackControl />
|
|
</div>
|
|
</Box>
|
|
|
|
<Box className={styles.info} borderRadius='0.5em' overflowX='auto'>
|
|
<Heading size='lg' paddingBottom={'0.25em'}>
|
|
Info
|
|
</Heading>
|
|
<NumberedText number={4} text={'Running Info'} />
|
|
<div className={styles.content}></div>
|
|
</Box>
|
|
</div>
|
|
</>
|
|
);
|
|
}
|