names memoized components
This commit is contained in:
parent
bf16a6e292
commit
75beaf2516
3 changed files with 33 additions and 25 deletions
|
@ -24,7 +24,7 @@ export default function Defs() {
|
||||||
)
|
)
|
||||||
}
|
}
|
||||||
|
|
||||||
const Def = memo(({ id }: { id: string }) => {
|
const Def = memo(function Def({ id }: { id: string }) {
|
||||||
const shape = useSelector(({ data }) => getPage(data).shapes[id])
|
const shape = useSelector(({ data }) => getPage(data).shapes[id])
|
||||||
if (!shape) return null
|
if (!shape) return null
|
||||||
return getShapeUtils(shape).render(shape)
|
return getShapeUtils(shape).render(shape)
|
||||||
|
|
|
@ -25,8 +25,13 @@ export default function Selected() {
|
||||||
)
|
)
|
||||||
}
|
}
|
||||||
|
|
||||||
export const ShapeOutline = memo(
|
export const ShapeOutline = memo(function ShapeOutline({
|
||||||
({ id, isSelected }: { id: string; isSelected: boolean }) => {
|
id,
|
||||||
|
isSelected,
|
||||||
|
}: {
|
||||||
|
id: string
|
||||||
|
isSelected: boolean
|
||||||
|
}) {
|
||||||
const rIndicator = useRef<SVGUseElement>(null)
|
const rIndicator = useRef<SVGUseElement>(null)
|
||||||
|
|
||||||
const shape = useSelector(({ data }) => getPage(data).shapes[id])
|
const shape = useSelector(({ data }) => getPage(data).shapes[id])
|
||||||
|
@ -51,8 +56,7 @@ export const ShapeOutline = memo(
|
||||||
{...events}
|
{...events}
|
||||||
/>
|
/>
|
||||||
)
|
)
|
||||||
}
|
})
|
||||||
)
|
|
||||||
|
|
||||||
const SelectIndicator = styled('path', {
|
const SelectIndicator = styled('path', {
|
||||||
zStrokeWidth: 3,
|
zStrokeWidth: 3,
|
||||||
|
|
|
@ -47,11 +47,15 @@ function Shape({ id, isSelecting }: { id: string; isSelecting: boolean }) {
|
||||||
)
|
)
|
||||||
}
|
}
|
||||||
|
|
||||||
const RealShape = memo(
|
const RealShape = memo(function RealShape({
|
||||||
({ id, style }: { id: string; style: ReturnType<typeof getShapeStyle> }) => {
|
id,
|
||||||
|
style,
|
||||||
|
}: {
|
||||||
|
id: string
|
||||||
|
style: ReturnType<typeof getShapeStyle>
|
||||||
|
}) {
|
||||||
return <StyledShape as="use" href={'#' + id} {...style} />
|
return <StyledShape as="use" href={'#' + id} {...style} />
|
||||||
}
|
})
|
||||||
)
|
|
||||||
|
|
||||||
const StyledShape = styled('path', {
|
const StyledShape = styled('path', {
|
||||||
strokeLinecap: 'round',
|
strokeLinecap: 'round',
|
||||||
|
|
Loading…
Reference in a new issue