Tldraw/components/editor.tsx

57 wiersze
1.2 KiB
TypeScript
Czysty Zwykły widok Historia

import useKeyboardEvents from 'hooks/useKeyboardEvents'
import useLoadOnMount from 'hooks/useLoadOnMount'
import Canvas from './canvas/canvas'
import StatusBar from './status-bar'
import CodePanel from './code-panel/code-panel'
import ControlsPanel from './controls-panel/controls-panel'
import ToolsPanel from './tools-panel/tools-panel'
import StylePanel from './style-panel/style-panel'
import { useSelector } from 'state'
import styled from 'styles'
2021-06-03 12:06:39 +00:00
import PagePanel from './page-panel/page-panel'
2021-06-10 09:49:16 +00:00
import ContextMenu from './context-menu'
2021-05-09 13:04:42 +00:00
export default function Editor() {
2021-05-12 11:27:33 +00:00
useKeyboardEvents()
useLoadOnMount()
2021-05-12 11:27:33 +00:00
2021-05-26 21:47:46 +00:00
const hasControls = useSelector(
(s) => Object.keys(s.data.codeControls).length > 0
)
2021-05-09 13:04:42 +00:00
return (
2021-05-17 10:01:11 +00:00
<Layout>
<CodePanel />
2021-06-03 12:06:39 +00:00
<PagePanel />
<Spacer />
<StylePanel />
<Canvas />
<ToolsPanel />
2021-06-11 20:14:43 +00:00
<StatusBar />
2021-05-17 10:01:11 +00:00
</Layout>
2021-05-09 13:04:42 +00:00
)
}
2021-05-17 10:01:11 +00:00
const Spacer = styled('div', {
flexGrow: 2,
})
2021-06-01 21:49:32 +00:00
const Layout = styled('main', {
position: 'fixed',
2021-05-17 10:01:11 +00:00
top: 0,
left: 0,
bottom: 0,
right: 0,
height: '100%',
width: '100%',
padding: '8px 8px 0 8px',
zIndex: 200,
display: 'flex',
alignItems: 'flex-start',
justifyContent: 'flex-start',
2021-06-01 21:49:32 +00:00
pointerEvents: 'none',
'& > *': {
PointerEvent: 'all',
},
2021-05-26 10:34:10 +00:00
})