[tiny] remove unused shape indicator equality checker (#3171)

This PR removes an unused / vestigial equality checker in our default
indicator.

### Change Type

- [x] `sdk` — Changes the tldraw SDK
- [x] `improvement` — Improving existing features
pull/3173/head
Steve Ruiz 2024-03-16 09:25:54 +00:00 zatwierdzone przez GitHub
rodzic 6969352aef
commit 0f081e145e
Nie znaleziono w bazie danych klucza dla tego podpisu
ID klucza GPG: B5690EEEBB952194
1 zmienionych plików z 5 dodań i 23 usunięć

Wyświetl plik

@ -8,31 +8,17 @@ import { useEditor } from '../../hooks/useEditor'
import { useEditorComponents } from '../../hooks/useEditorComponents'
import { OptionalErrorBoundary } from '../ErrorBoundary'
class ShapeWithPropsEquality {
constructor(public shape: TLShape | undefined) {}
equals(other: ShapeWithPropsEquality) {
return (
this.shape?.isLocked === other?.shape?.isLocked &&
this.shape?.props === other?.shape?.props &&
this.shape?.meta === other?.shape?.meta
)
}
}
// need an extra layer of indirection here to allow hooks to be used inside the indicator render
const EvenInnererIndicator = ({ shape, util }: { shape: TLShape; util: ShapeUtil<any> }) => {
return useStateTracking('Indicator:' + shape.type, () => util.indicator(shape))
return useStateTracking('Indicator: ' + shape.type, () => util.indicator(shape))
}
const InnerIndicator = ({ editor, id }: { editor: Editor; id: TLShapeId }) => {
const shape = useValue('shape', () => new ShapeWithPropsEquality(editor.store.get(id)), [
editor,
id,
])
const shape = useValue('shape for indicator', () => editor.store.get(id), [editor, id])
const { ShapeIndicatorErrorFallback } = useEditorComponents()
if (!shape.shape || shape.shape.isLocked) return null
if (!shape || shape.isLocked) return null
return (
<OptionalErrorBoundary
@ -41,11 +27,7 @@ const InnerIndicator = ({ editor, id }: { editor: Editor; id: TLShapeId }) => {
editor.annotateError(error, { origin: 'react.shapeIndicator', willCrashApp: false })
}
>
<EvenInnererIndicator
key={shape.shape.id}
shape={shape.shape}
util={editor.getShapeUtil(shape.shape)}
/>
<EvenInnererIndicator key={shape.id} shape={shape} util={editor.getShapeUtil(shape)} />
</OptionalErrorBoundary>
)
}
@ -68,7 +50,7 @@ export const DefaultShapeIndicator = memo(function DefaultShapeIndicator({
const editor = useEditor()
const transform = useValue(
'transform',
'indicator transform',
() => {
const pageTransform = editor.getShapePageTransform(shapeId)
if (!pageTransform) return ''