NoteShapeUtil
See source codeTable of contents
- migrations
- props
- type
- editor
- Properties
- Methods
- canBeLaidOut
- canBind
- canCrop
- canDropShapes
- canEdit
- canEditInReadOnly
- canReceiveNewChildrenOfType
- canResize
- canScroll
- canSnap
- component
- getBoundsSnapGeometry
- getCanvasSvgDefs
- getDefaultProps
- getGeometry
- getHandles
- getHandleSnapGeometry
- getInterpolatedProps
- getText
- hideResizeHandles
- hideRotateHandle
- hideSelectionBoundsBg
- hideSelectionBoundsFg
- indicator
- isAspectRatioLocked
- onBeforeCreate
- onBeforeUpdate
- onChildrenChange
- onClick
- onDoubleClick
- onDoubleClickEdge
- onDoubleClickHandle
- onDragShapesOut
- onDragShapesOver
- onDropShapesOver
- onEditEnd
- onHandleDrag
- onResize
- onResizeEnd
- onResizeStart
- onRotate
- onRotateEnd
- onRotateStart
- onTranslate
- onTranslateEnd
- onTranslateStart
- toBackgroundSvg
- toSvg
 
Extends ShapeUtil<TLNoteShape>.
class NoteShapeUtil extends ShapeUtil<TLNoteShape> {}Constructor
Constructs a new instance of the ShapeUtil class
Parameters
| Name | Description | 
|---|---|
| 
 | 
Properties
migrations
static migrations: import('@tldraw/editor').TLPropsMigrationsprops
static props: import('@tldraw/editor').RecordProps<TLNoteShape>type
static type: 'note'editor
editor: EditorMethods
canBeLaidOut()
Whether the shape participates in stacking, aligning, and distributing.
canBeLaidOut(_shape: Shape): booleanParameters
| Name | Description | 
|---|---|
| 
 |  | 
Returns
booleancanBind()
Whether the shape can be bound to. See TLShapeUtilCanBindOpts for details.
canBind(_opts: TLShapeUtilCanBindOpts<Shape>): booleanParameters
| Name | Description | 
|---|---|
| 
 |  | 
Returns
booleancanCrop()
Whether the shape can be cropped.
canCrop(_shape: Shape): booleanParameters
| Name | Description | 
|---|---|
| 
 |  | 
Returns
booleancanDropShapes()
Get whether the shape can receive children of a given type.
canDropShapes(_shape: Shape, _shapes: TLShape[]): booleanParameters
| Name | Description | 
|---|---|
| 
 |  | 
| 
 |  | 
Returns
booleancanEdit()
canEdit(): booleancanEditInReadOnly()
Whether the shape can be edited in read-only mode.
canEditInReadOnly(_shape: Shape): booleanParameters
| Name | Description | 
|---|---|
| 
 |  | 
Returns
booleancanReceiveNewChildrenOfType()
Get whether the shape can receive children of a given type.
canReceiveNewChildrenOfType(_shape: Shape, _type: TLShape['type']): booleanParameters
| Name | Description | 
|---|---|
| 
 |  | 
| 
 |  | 
Returns
booleancanResize()
Whether the shape can be resized.
canResize(_shape: Shape): booleanParameters
| Name | Description | 
|---|---|
| 
 |  | 
Returns
booleancanScroll()
Whether the shape can be scrolled while editing.
canScroll(_shape: Shape): booleanParameters
| Name | Description | 
|---|---|
| 
 |  | 
Returns
booleancanSnap()
Whether the shape can be snapped to by another shape.
canSnap(_shape: Shape): booleanParameters
| Name | Description | 
|---|---|
| 
 |  | 
Returns
booleancomponent()
component(shape: TLNoteShape): import('react/jsx-runtime').JSX.ElementParameters
| Name | Description | 
|---|---|
| 
 | 
Returns
import('react/jsx-runtime').JSX.ElementgetBoundsSnapGeometry()
Get the geometry to use when snapping to this this shape in translate/resize operations. See BoundsSnapGeometry for details.
getBoundsSnapGeometry(_shape: Shape): BoundsSnapGeometryParameters
| Name | Description | 
|---|---|
| 
 |  | 
Returns
getCanvasSvgDefs()
Return elements to be added to the <defs> section of the canvases SVG context. This can be
used to define SVG content (e.g. patterns & masks) that can be referred to by ID from svg
elements returned by component.
Each def should have a unique key. If multiple defs from different shapes all have the same
key, only one will be used.
getCanvasSvgDefs(): TLShapeUtilCanvasSvgDef[]getDefaultProps()
getDefaultProps(): TLNoteShape['props']getGeometry()
getGeometry(shape: TLNoteShape): Group2dParameters
| Name | Description | 
|---|---|
| 
 | 
Returns
getHandles()
getHandles(shape: TLNoteShape): TLHandle[]Parameters
| Name | Description | 
|---|---|
| 
 | 
Returns
TLHandle[]getHandleSnapGeometry()
Get the geometry to use when snapping handles to this shape. See HandleSnapGeometry for details.
getHandleSnapGeometry(_shape: Shape): HandleSnapGeometryParameters
| Name | Description | 
|---|---|
| 
 |  | 
Returns
getInterpolatedProps()
getInterpolatedProps(
  startShape: TLNoteShape,
  endShape: TLNoteShape,
  t: number
): TLNoteShapePropsParameters
| Name | Description | 
|---|---|
| 
 | |
| 
 | |
| 
 |  | 
Returns
getText()
getText(shape: TLNoteShape): stringParameters
| Name | Description | 
|---|---|
| 
 | 
Returns
stringhideResizeHandles()
hideResizeHandles(): booleanhideRotateHandle()
Whether the shape should hide its rotation handles when selected.
hideRotateHandle(_shape: Shape): booleanParameters
| Name | Description | 
|---|---|
| 
 |  | 
Returns
booleanhideSelectionBoundsBg()
Whether the shape should hide its selection bounds background when selected.
hideSelectionBoundsBg(_shape: Shape): booleanParameters
| Name | Description | 
|---|---|
| 
 |  | 
Returns
booleanhideSelectionBoundsFg()
hideSelectionBoundsFg(): booleanindicator()
indicator(shape: TLNoteShape): import('react/jsx-runtime').JSX.ElementParameters
| Name | Description | 
|---|---|
| 
 | 
Returns
import('react/jsx-runtime').JSX.ElementisAspectRatioLocked()
Whether the shape's aspect ratio is locked.
isAspectRatioLocked(_shape: Shape): booleanParameters
| Name | Description | 
|---|---|
| 
 |  | 
Returns
booleanonBeforeCreate()
onBeforeCreate(next: TLNoteShape):
  | {
      id: TLShapeId
      index: IndexKey
      isLocked: boolean
      meta: import('@tldraw/editor').JsonObject
      opacity: number
      parentId: import('@tldraw/editor').TLParentId
      props: {
        align:
          | 'end-legacy'
          | 'end'
          | 'middle-legacy'
          | 'middle'
          | 'start-legacy'
          | 'start'
        color:
          | 'black'
          | 'blue'
          | 'green'
          | 'grey'
          | 'light-blue'
          | 'light-green'
          | 'light-red'
          | 'light-violet'
          | 'orange'
          | 'red'
          | 'violet'
          | 'white'
          | 'yellow'
        font: 'draw' | 'mono' | 'sans' | 'serif'
        fontSizeAdjustment: number
        growY: number
        labelColor:
          | 'black'
          | 'blue'
          | 'green'
          | 'grey'
          | 'light-blue'
          | 'light-green'
          | 'light-red'
          | 'light-violet'
          | 'orange'
          | 'red'
          | 'violet'
          | 'white'
          | 'yellow'
        richText: {
          content: unknown[]
          type: string
        }
        scale: number
        size: 'l' | 'm' | 's' | 'xl'
        url: string
        verticalAlign: 'end' | 'middle' | 'start'
      }
      rotation: number
      type: 'note'
      typeName: 'shape'
      x: number
      y: number
    }
  | undefinedParameters
| Name | Description | 
|---|---|
| 
 | 
Returns
  | {
      id: TLShapeId
      index: IndexKey
      isLocked: boolean
      meta: import('@tldraw/editor').JsonObject
      opacity: number
      parentId: import('@tldraw/editor').TLParentId
      props: {
        align:
          | 'end-legacy'
          | 'end'
          | 'middle-legacy'
          | 'middle'
          | 'start-legacy'
          | 'start'
        color:
          | 'black'
          | 'blue'
          | 'green'
          | 'grey'
          | 'light-blue'
          | 'light-green'
          | 'light-red'
          | 'light-violet'
          | 'orange'
          | 'red'
          | 'violet'
          | 'white'
          | 'yellow'
        font: 'draw' | 'mono' | 'sans' | 'serif'
        fontSizeAdjustment: number
        growY: number
        labelColor:
          | 'black'
          | 'blue'
          | 'green'
          | 'grey'
          | 'light-blue'
          | 'light-green'
          | 'light-red'
          | 'light-violet'
          | 'orange'
          | 'red'
          | 'violet'
          | 'white'
          | 'yellow'
        richText: {
          content: unknown[]
          type: string
        }
        scale: number
        size: 'l' | 'm' | 's' | 'xl'
        url: string
        verticalAlign: 'end' | 'middle' | 'start'
      }
      rotation: number
      type: 'note'
      typeName: 'shape'
      x: number
      y: number
    }
  | undefinedonBeforeUpdate()
onBeforeUpdate(
  prev: TLNoteShape,
  next: TLNoteShape
):
  | {
      id: TLShapeId
      index: IndexKey
      isLocked: boolean
      meta: import('@tldraw/editor').JsonObject
      opacity: number
      parentId: import('@tldraw/editor').TLParentId
      props: {
        align:
          | 'end-legacy'
          | 'end'
          | 'middle-legacy'
          | 'middle'
          | 'start-legacy'
          | 'start'
        color:
          | 'black'
          | 'blue'
          | 'green'
          | 'grey'
          | 'light-blue'
          | 'light-green'
          | 'light-red'
          | 'light-violet'
          | 'orange'
          | 'red'
          | 'violet'
          | 'white'
          | 'yellow'
        font: 'draw' | 'mono' | 'sans' | 'serif'
        fontSizeAdjustment: number
        growY: number
        labelColor:
          | 'black'
          | 'blue'
          | 'green'
          | 'grey'
          | 'light-blue'
          | 'light-green'
          | 'light-red'
          | 'light-violet'
          | 'orange'
          | 'red'
          | 'violet'
          | 'white'
          | 'yellow'
        richText: {
          content: unknown[]
          type: string
        }
        scale: number
        size: 'l' | 'm' | 's' | 'xl'
        url: string
        verticalAlign: 'end' | 'middle' | 'start'
      }
      rotation: number
      type: 'note'
      typeName: 'shape'
      x: number
      y: number
    }
  | undefinedParameters
| Name | Description | 
|---|---|
| 
 | |
| 
 | 
Returns
  | {
      id: TLShapeId
      index: IndexKey
      isLocked: boolean
      meta: import('@tldraw/editor').JsonObject
      opacity: number
      parentId: import('@tldraw/editor').TLParentId
      props: {
        align:
          | 'end-legacy'
          | 'end'
          | 'middle-legacy'
          | 'middle'
          | 'start-legacy'
          | 'start'
        color:
          | 'black'
          | 'blue'
          | 'green'
          | 'grey'
          | 'light-blue'
          | 'light-green'
          | 'light-red'
          | 'light-violet'
          | 'orange'
          | 'red'
          | 'violet'
          | 'white'
          | 'yellow'
        font: 'draw' | 'mono' | 'sans' | 'serif'
        fontSizeAdjustment: number
        growY: number
        labelColor:
          | 'black'
          | 'blue'
          | 'green'
          | 'grey'
          | 'light-blue'
          | 'light-green'
          | 'light-red'
          | 'light-violet'
          | 'orange'
          | 'red'
          | 'violet'
          | 'white'
          | 'yellow'
        richText: {
          content: unknown[]
          type: string
        }
        scale: number
        size: 'l' | 'm' | 's' | 'xl'
        url: string
        verticalAlign: 'end' | 'middle' | 'start'
      }
      rotation: number
      type: 'note'
      typeName: 'shape'
      x: number
      y: number
    }
  | undefinedonChildrenChange()
A callback called when a shape's children change.
onChildrenChange?(shape: Shape): TLShapePartial[] | voidParameters
| Name | Description | 
|---|---|
| 
 | The shape. | 
Returns
TLShapePartial[] | voidAn array of shape updates, or void.
onClick()
A callback called when a shape is clicked.
onClick?(shape: Shape): TLShapePartial<Shape> | voidParameters
| Name | Description | 
|---|---|
| 
 | The shape. | 
Returns
TLShapePartial<Shape> | voidA change to apply to the shape, or void.
onDoubleClick()
A callback called when a shape is double clicked.
onDoubleClick?(shape: Shape): TLShapePartial<Shape> | voidParameters
| Name | Description | 
|---|---|
| 
 | The shape. | 
Returns
TLShapePartial<Shape> | voidA change to apply to the shape, or void.
onDoubleClickEdge()
A callback called when a shape's edge is double clicked.
onDoubleClickEdge?(shape: Shape): TLShapePartial<Shape> | voidParameters
| Name | Description | 
|---|---|
| 
 | The shape. | 
Returns
TLShapePartial<Shape> | voidA change to apply to the shape, or void.
onDoubleClickHandle()
A callback called when a shape's handle is double clicked.
onDoubleClickHandle?(
  shape: Shape,
  handle: TLHandle
): TLShapePartial<Shape> | voidParameters
| Name | Description | 
|---|---|
| 
 | The shape. | 
| 
 | The handle that is double-clicked. | 
Returns
TLShapePartial<Shape> | voidA change to apply to the shape, or void.
onDragShapesOut()
A callback called when some other shapes are dragged out of this one.
onDragShapesOut?(shape: Shape, shapes: TLShape[]): voidParameters
| Name | Description | 
|---|---|
| 
 | The shape. | 
| 
 | The shapes that are being dragged out. | 
Returns
voidonDragShapesOver()
A callback called when some other shapes are dragged over this one.
onDragShapesOver?(shape: Shape, shapes: TLShape[]): voidExample
onDragShapesOver = (shape, shapes) => {
  this.editor.reparentShapes(shapes, shape.id)
}Parameters
| Name | Description | 
|---|---|
| 
 | The shape. | 
| 
 | The shapes that are being dragged over this one. | 
Returns
voidonDropShapesOver()
A callback called when some other shapes are dropped over this one.
onDropShapesOver?(shape: Shape, shapes: TLShape[]): voidParameters
| Name | Description | 
|---|---|
| 
 | The shape. | 
| 
 | The shapes that are being dropped over this one. | 
Returns
voidonEditEnd()
A callback called when a shape finishes being editing.
onEditEnd?(shape: Shape): voidParameters
| Name | Description | 
|---|---|
| 
 | The shape. | 
Returns
voidonHandleDrag()
A callback called when a shape's handle changes.
onHandleDrag?(
  shape: Shape,
  info: TLHandleDragInfo<Shape>
): TLShapePartial<Shape> | voidParameters
| Name | Description | 
|---|---|
| 
 | The current shape. | 
| 
 | An object containing the handle and whether the handle is 'precise' or not. | 
Returns
TLShapePartial<Shape> | voidA change to apply to the shape, or void.
onResize()
A callback called when a shape changes from a resize.
onResize?(
  shape: Shape,
  info: TLResizeInfo<Shape>
): Omit<TLShapePartial<Shape>, 'id' | 'type'> | undefined | voidParameters
| Name | Description | 
|---|---|
| 
 | The shape at the start of the resize. | 
| 
 | Info about the resize. | 
Returns
Omit<TLShapePartial<Shape>, 'id' | 'type'> | undefined | voidA change to apply to the shape, or void.
onResizeEnd()
A callback called when a shape finishes resizing.
onResizeEnd?(initial: Shape, current: Shape): TLShapePartial<Shape> | voidParameters
| Name | Description | 
|---|---|
| 
 | The shape at the start of the resize. | 
| 
 | The current shape. | 
Returns
TLShapePartial<Shape> | voidA change to apply to the shape, or void.
onResizeStart()
A callback called when a shape starts being resized.
onResizeStart?(shape: Shape): TLShapePartial<Shape> | voidParameters
| Name | Description | 
|---|---|
| 
 | The shape. | 
Returns
TLShapePartial<Shape> | voidA change to apply to the shape, or void.
onRotate()
A callback called when a shape changes from a rotation.
onRotate?(initial: Shape, current: Shape): TLShapePartial<Shape> | voidParameters
| Name | Description | 
|---|---|
| 
 | The shape at the start of the rotation. | 
| 
 | The current shape. | 
Returns
TLShapePartial<Shape> | voidA change to apply to the shape, or void.
onRotateEnd()
A callback called when a shape finishes rotating.
onRotateEnd?(initial: Shape, current: Shape): TLShapePartial<Shape> | voidParameters
| Name | Description | 
|---|---|
| 
 | The shape at the start of the rotation. | 
| 
 | The current shape. | 
Returns
TLShapePartial<Shape> | voidA change to apply to the shape, or void.
onRotateStart()
A callback called when a shape starts being rotated.
onRotateStart?(shape: Shape): TLShapePartial<Shape> | voidParameters
| Name | Description | 
|---|---|
| 
 | The shape. | 
Returns
TLShapePartial<Shape> | voidA change to apply to the shape, or void.
onTranslate()
A callback called when a shape changes from a translation.
onTranslate?(initial: Shape, current: Shape): TLShapePartial<Shape> | voidParameters
| Name | Description | 
|---|---|
| 
 | The shape at the start of the translation. | 
| 
 | The current shape. | 
Returns
TLShapePartial<Shape> | voidA change to apply to the shape, or void.
onTranslateEnd()
A callback called when a shape finishes translating.
onTranslateEnd?(initial: Shape, current: Shape): TLShapePartial<Shape> | voidParameters
| Name | Description | 
|---|---|
| 
 | The shape at the start of the translation. | 
| 
 | The current shape. | 
Returns
TLShapePartial<Shape> | voidA change to apply to the shape, or void.
onTranslateStart()
A callback called when a shape starts being translated.
onTranslateStart?(shape: Shape): TLShapePartial<Shape> | voidParameters
| Name | Description | 
|---|---|
| 
 | The shape. | 
Returns
TLShapePartial<Shape> | voidA change to apply to the shape, or void.
toBackgroundSvg()
Get the shape's background layer as an SVG object.
toBackgroundSvg?(
  shape: Shape,
  ctx: SvgExportContext
): null | Promise<null | ReactElement> | ReactElementParameters
| Name | Description | 
|---|---|
| 
 | The shape. | 
| 
 | ctx - The export context for the SVG - used for adding e.g. <def>s | 
Returns
null | Promise<null | ReactElement> | ReactElementAn SVG element.
toSvg()
toSvg(
  shape: TLNoteShape,
  ctx: SvgExportContext
): import('react/jsx-runtime').JSX.ElementParameters
| Name | Description | 
|---|---|
| 
 | |
| 
 | 
Returns
import('react/jsx-runtime').JSX.Element