tldraw/components/style-panel/style-panel.tsx

94 lines
2.4 KiB
TypeScript
Raw Normal View History

2021-05-28 20:30:27 +00:00
import styled from 'styles'
import state, { useSelector } from 'state'
import * as Panel from 'components/panel'
import { useRef } from 'react'
2021-07-01 22:11:09 +00:00
import { IconButton, ButtonsRow } from 'components/shared'
import { ChevronDown, X } from 'react-feather'
import ShapesFunctions from './shapes-functions'
2021-05-28 20:30:27 +00:00
import AlignDistribute from './align-distribute'
import QuickColorSelect from './quick-color-select'
import QuickSizeSelect from './quick-size-select'
2021-07-01 22:11:09 +00:00
import QuickDashSelect from './quick-dash-select'
import QuickFillSelect from './quick-fill-select'
2021-06-02 21:17:38 +00:00
import Tooltip from 'components/tooltip'
2021-07-01 22:11:09 +00:00
import { motion } from 'framer-motion'
2021-05-26 10:34:10 +00:00
const breakpoints = { '@initial': 'mobile', '@sm': 'small' } as any
const handleStylePanelOpen = () => state.send('TOGGLED_STYLE_PANEL_OPEN')
2021-06-21 21:35:28 +00:00
export default function StylePanel(): JSX.Element {
2021-05-26 10:34:10 +00:00
const rContainer = useRef<HTMLDivElement>(null)
2021-05-26 10:34:10 +00:00
const isOpen = useSelector((s) => s.data.settings.isStyleOpen)
return (
<StylePanelRoot dir="ltr" ref={rContainer} isOpen={isOpen}>
2021-07-01 22:11:09 +00:00
<ButtonsRow>
<QuickColorSelect />
<QuickSizeSelect />
<QuickDashSelect />
<QuickFillSelect />
<IconButton
bp={breakpoints}
title="Style"
size="small"
onClick={handleStylePanelOpen}
>
<Tooltip label="More">{isOpen ? <X /> : <ChevronDown />}</Tooltip>
</IconButton>
</ButtonsRow>
{isOpen && <SelectedShapeContent />}
2021-05-26 10:34:10 +00:00
</StylePanelRoot>
)
}
2021-07-01 22:11:09 +00:00
function SelectedShapeContent(): JSX.Element {
const selectedShapesCount = useSelector((s) => s.values.selectedIds.length)
2021-05-26 21:47:46 +00:00
2021-05-26 10:34:10 +00:00
return (
2021-07-01 22:11:09 +00:00
<>
<hr />
<ShapesFunctions />
<AlignDistribute
hasTwoOrMore={selectedShapesCount > 1}
hasThreeOrMore={selectedShapesCount > 2}
/>
</>
2021-05-26 10:34:10 +00:00
)
}
2021-07-01 22:11:09 +00:00
const StylePanelRoot = styled(motion(Panel.Root), {
2021-05-26 19:20:52 +00:00
minWidth: 1,
2021-07-01 22:11:09 +00:00
width: 'fit-content',
maxWidth: 'fit-content',
2021-05-28 20:30:27 +00:00
overflow: 'hidden',
position: 'relative',
2021-05-30 13:49:33 +00:00
border: '1px solid $panel',
boxShadow: '0px 2px 4px rgba(0,0,0,.2)',
2021-06-01 21:49:32 +00:00
display: 'flex',
2021-07-01 22:11:09 +00:00
flexDirection: 'column',
2021-06-01 21:49:32 +00:00
alignItems: 'center',
pointerEvents: 'all',
2021-07-01 22:11:09 +00:00
padding: 2,
'& hr': {
marginTop: 2,
marginBottom: 2,
marginLeft: '-2px',
border: 'none',
height: 1,
backgroundColor: '$brushFill',
width: 'calc(100% + 4px)',
},
2021-05-26 10:34:10 +00:00
variants: {
isOpen: {
2021-05-26 19:20:52 +00:00
true: {},
2021-05-26 10:34:10 +00:00
false: {
2021-06-01 21:49:32 +00:00
width: 'fit-content',
2021-05-26 10:34:10 +00:00
},
},
},
})