2021-05-28 14:37:23 +00:00
|
|
|
import React, { useCallback, useRef, memo } from 'react'
|
|
|
|
import state, { useSelector } from 'state'
|
|
|
|
import inputs from 'state/inputs'
|
|
|
|
import styled from 'styles'
|
|
|
|
import { getShapeUtils } from 'lib/shape-utils'
|
|
|
|
import { getPage } from 'utils/utils'
|
|
|
|
import { ShapeStyles } from 'types'
|
|
|
|
|
|
|
|
function Shape({ id, isSelecting }: { id: string; isSelecting: boolean }) {
|
2021-05-14 22:56:41 +00:00
|
|
|
const isHovered = useSelector((state) => state.data.hoveredId === id)
|
2021-05-15 13:02:13 +00:00
|
|
|
|
2021-05-14 21:05:21 +00:00
|
|
|
const isSelected = useSelector((state) => state.values.selectedIds.has(id))
|
|
|
|
|
2021-05-22 15:45:24 +00:00
|
|
|
const shape = useSelector(({ data }) => getPage(data).shapes[id])
|
2021-05-09 21:22:25 +00:00
|
|
|
|
2021-05-28 13:08:51 +00:00
|
|
|
const rGroup = useRef<SVGGElement>(null)
|
|
|
|
|
2021-05-12 21:11:17 +00:00
|
|
|
const handlePointerDown = useCallback(
|
|
|
|
(e: React.PointerEvent) => {
|
|
|
|
e.stopPropagation()
|
|
|
|
rGroup.current.setPointerCapture(e.pointerId)
|
2021-05-28 14:37:23 +00:00
|
|
|
state.send('POINTED_SHAPE', inputs.pointerDown(e, id))
|
2021-05-12 21:11:17 +00:00
|
|
|
},
|
|
|
|
[id]
|
|
|
|
)
|
|
|
|
|
|
|
|
const handlePointerUp = useCallback(
|
|
|
|
(e: React.PointerEvent) => {
|
|
|
|
e.stopPropagation()
|
|
|
|
rGroup.current.releasePointerCapture(e.pointerId)
|
2021-05-28 14:37:23 +00:00
|
|
|
state.send('STOPPED_POINTING', inputs.pointerUp(e))
|
2021-05-12 21:11:17 +00:00
|
|
|
},
|
|
|
|
[id]
|
|
|
|
)
|
|
|
|
|
|
|
|
const handlePointerEnter = useCallback(
|
2021-05-14 22:56:41 +00:00
|
|
|
(e: React.PointerEvent) => {
|
2021-05-28 14:37:23 +00:00
|
|
|
state.send('HOVERED_SHAPE', inputs.pointerEnter(e, id))
|
2021-05-14 22:56:41 +00:00
|
|
|
},
|
|
|
|
[id, shape]
|
|
|
|
)
|
|
|
|
|
|
|
|
const handlePointerMove = useCallback(
|
|
|
|
(e: React.PointerEvent) => {
|
2021-05-28 14:37:23 +00:00
|
|
|
state.send('MOVED_OVER_SHAPE', inputs.pointerEnter(e, id))
|
2021-05-14 22:56:41 +00:00
|
|
|
},
|
|
|
|
[id, shape]
|
2021-05-12 21:11:17 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
const handlePointerLeave = useCallback(
|
2021-05-28 14:37:23 +00:00
|
|
|
() => state.send('UNHOVERED_SHAPE', { target: id }),
|
2021-05-12 21:11:17 +00:00
|
|
|
[id]
|
|
|
|
)
|
2021-05-14 22:56:41 +00:00
|
|
|
|
2021-05-15 21:04:28 +00:00
|
|
|
// This is a problem with deleted shapes. The hooks in this component
|
|
|
|
// may sometimes run before the hook in the Page component, which means
|
|
|
|
// a deleted shape will still be pulled here before the page component
|
|
|
|
// detects the change and pulls this component.
|
|
|
|
if (!shape) return null
|
|
|
|
|
2021-05-12 21:11:17 +00:00
|
|
|
return (
|
|
|
|
<StyledGroup
|
|
|
|
ref={rGroup}
|
2021-05-14 22:56:41 +00:00
|
|
|
isHovered={isHovered}
|
2021-05-12 21:11:17 +00:00
|
|
|
isSelected={isSelected}
|
2021-05-17 21:27:18 +00:00
|
|
|
transform={`rotate(${shape.rotation * (180 / Math.PI)},${getShapeUtils(
|
|
|
|
shape
|
|
|
|
).getCenter(shape)}) translate(${shape.point})`}
|
2021-05-12 21:11:17 +00:00
|
|
|
onPointerDown={handlePointerDown}
|
|
|
|
onPointerUp={handlePointerUp}
|
|
|
|
onPointerEnter={handlePointerEnter}
|
|
|
|
onPointerLeave={handlePointerLeave}
|
2021-05-14 22:56:41 +00:00
|
|
|
onPointerMove={handlePointerMove}
|
2021-05-12 21:11:17 +00:00
|
|
|
>
|
2021-05-28 14:37:23 +00:00
|
|
|
{isSelecting && <HoverIndicator as="use" href={'#' + id} />}
|
|
|
|
<StyledShape id={id} style={shape.style} />
|
2021-05-12 21:11:17 +00:00
|
|
|
</StyledGroup>
|
|
|
|
)
|
2021-05-09 21:22:25 +00:00
|
|
|
}
|
|
|
|
|
2021-05-28 14:37:23 +00:00
|
|
|
const StyledShape = memo(
|
|
|
|
({ id, style }: { id: string; style: ShapeStyles }) => {
|
|
|
|
return <MainShape as="use" href={'#' + id} {...style} />
|
|
|
|
}
|
|
|
|
)
|
2021-05-15 17:11:08 +00:00
|
|
|
|
2021-05-28 14:37:23 +00:00
|
|
|
const MainShape = styled('use', {
|
2021-05-15 17:11:08 +00:00
|
|
|
zStrokeWidth: 1,
|
2021-05-12 21:11:17 +00:00
|
|
|
})
|
|
|
|
|
2021-05-28 14:37:23 +00:00
|
|
|
const HoverIndicator = styled('path', {
|
|
|
|
fill: 'none',
|
|
|
|
stroke: 'transparent',
|
|
|
|
pointerEvents: 'all',
|
|
|
|
strokeLinecap: 'round',
|
|
|
|
strokeLinejoin: 'round',
|
|
|
|
transform: 'all .2s',
|
2021-05-12 21:11:17 +00:00
|
|
|
})
|
|
|
|
|
2021-05-28 14:37:23 +00:00
|
|
|
const StyledGroup = styled('g', {
|
2021-05-12 21:11:17 +00:00
|
|
|
[`& ${HoverIndicator}`]: {
|
2021-05-28 14:37:23 +00:00
|
|
|
opacity: '0',
|
2021-05-12 21:11:17 +00:00
|
|
|
},
|
|
|
|
variants: {
|
|
|
|
isSelected: {
|
2021-05-28 14:37:23 +00:00
|
|
|
true: {},
|
2021-05-14 22:56:41 +00:00
|
|
|
false: {},
|
|
|
|
},
|
|
|
|
isHovered: {
|
2021-05-15 13:02:13 +00:00
|
|
|
true: {},
|
|
|
|
false: {},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
compoundVariants: [
|
|
|
|
{
|
|
|
|
isSelected: true,
|
|
|
|
isHovered: true,
|
|
|
|
css: {
|
2021-05-14 22:56:41 +00:00
|
|
|
[`& ${HoverIndicator}`]: {
|
2021-05-28 14:37:23 +00:00
|
|
|
opacity: '1',
|
|
|
|
stroke: '$hint',
|
2021-05-15 13:02:13 +00:00
|
|
|
zStrokeWidth: [8, 4],
|
2021-05-12 21:11:17 +00:00
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
2021-05-15 13:02:13 +00:00
|
|
|
{
|
|
|
|
isSelected: true,
|
|
|
|
isHovered: false,
|
|
|
|
css: {
|
|
|
|
[`& ${HoverIndicator}`]: {
|
2021-05-28 14:37:23 +00:00
|
|
|
opacity: '1',
|
|
|
|
stroke: '$hint',
|
2021-05-15 13:02:13 +00:00
|
|
|
zStrokeWidth: [6, 3],
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
{
|
|
|
|
isSelected: false,
|
|
|
|
isHovered: true,
|
|
|
|
css: {
|
|
|
|
[`& ${HoverIndicator}`]: {
|
2021-05-28 14:37:23 +00:00
|
|
|
opacity: '1',
|
|
|
|
stroke: '$hint',
|
2021-05-15 13:02:13 +00:00
|
|
|
zStrokeWidth: [8, 4],
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
],
|
2021-05-12 21:11:17 +00:00
|
|
|
})
|
|
|
|
|
2021-05-28 14:37:23 +00:00
|
|
|
export { HoverIndicator }
|
2021-05-12 21:11:17 +00:00
|
|
|
|
2021-05-09 21:22:25 +00:00
|
|
|
export default memo(Shape)
|