import { ShapeIndicator, TLHoveredShapeIndicatorComponent, useEditor, useValue, } from '@bigbluebutton/editor' /** @public */ export const TldrawHoveredShapeIndicator: TLHoveredShapeIndicatorComponent = ({ shapeId }) => { const editor = useEditor() const showHoveredShapeIndicator = useValue( 'show hovered', () => { // When the editor is editing a shape and hovering that shape, // don't show its indicator; but DO show other hover indicators if (editor.isIn('select.editing_shape')) { return editor.getHoveredShapeId() !== editor.getEditingShapeId() } // Otherise, only show the hovered indicator when the editor // is in the idle state return editor.isInAny('select.idle') }, [editor] ) if (!showHoveredShapeIndicator) return null return } //