tldraw/components/canvas/defs.tsx

32 lines
927 B
TypeScript
Raw Normal View History

2021-05-28 16:25:43 +00:00
import { getShapeUtils } from 'lib/shape-utils'
import { memo } from 'react'
2021-05-28 16:25:43 +00:00
import { useSelector } from 'state'
2021-06-03 12:06:39 +00:00
import { deepCompareArrays, getCurrentCamera, getPage } from 'utils/utils'
2021-05-28 13:08:51 +00:00
export default function Defs() {
2021-06-03 12:06:39 +00:00
const zoom = useSelector((s) => getCurrentCamera(s.data).zoom)
2021-05-28 13:08:51 +00:00
const currentPageShapeIds = useSelector(({ data }) => {
return Object.values(getPage(data).shapes)
.sort((a, b) => a.childIndex - b.childIndex)
.map((shape) => shape.id)
}, deepCompareArrays)
return (
<defs>
{currentPageShapeIds.map((id) => (
<Def key={id} id={id} />
))}
<filter id="expand">
<feMorphology operator="dilate" radius={2 / zoom} />
</filter>
2021-05-28 13:08:51 +00:00
</defs>
)
}
2021-06-03 21:23:16 +00:00
const Def = memo(function Def({ id }: { id: string }) {
2021-05-28 13:08:51 +00:00
const shape = useSelector(({ data }) => getPage(data).shapes[id])
2021-05-28 16:25:43 +00:00
if (!shape) return null
2021-05-28 13:08:51 +00:00
return getShapeUtils(shape).render(shape)
})