Tldraw/packages/editor/src/lib/app/shapeutils/TLShapeUtil.ts

748 wiersze
18 KiB
TypeScript
Czysty Zwykły widok Historia

2023-04-25 11:01:25 +00:00
/* eslint-disable @typescript-eslint/no-unused-vars */
import { Box2d, linesIntersect, Matrix2d, VecLike } from '@tldraw/primitives'
import {
TLBaseShape,
TLHandle,
TLShape,
TLShapePartial,
TLUnknownShape,
Vec2dModel,
} from '@tldraw/tlschema'
import { ComputedCache } from '@tldraw/tlstore'
import { computed, EMPTY_ARRAY } from 'signia'
import { WeakMapCache } from '../../utils/WeakMapCache'
import type { App } from '../App'
import { TLResizeHandle } from '../types/selection-types'
import { TLExportColors } from './shared/TLExportColors'
const points = new WeakMapCache<TLShape, Vec2dModel>()
const transforms = new WeakMapCache<TLShape, Matrix2d>()
/** @public */
export interface TLShapeUtilConstructor<
T extends TLUnknownShape,
ShapeUtil extends TLShapeUtil<T> = TLShapeUtil<T>
> {
new (app: App, type: T['type']): ShapeUtil
[refactor] User-facing APIs (#1478) This PR updates our user-facing APIs for the Tldraw and TldrawEditor components, as well as the Editor (App). It mainly incorporates surface changes from #1450 without any changes to validators or migrators, incorporating feedback / discussion with @SomeHats and @ds300. Here we: - remove the TldrawEditorConfig - bring back a loose version of shape definitions - make a separation between "core" shapes and "default" shapes - do not allow custom shapes, migrators or validators to overwrite core shapes - but _do_ allow new shapes ## `<Tldraw>` component In this PR, the `Tldraw` component wraps both the `TldrawEditor` component and our `TldrawUi` component. It accepts a union of props for both components. Previously, this component also added local syncing via a `useLocalSyncClient` hook call, however that has been pushed down to the `TldrawEditor` component. ## `<TldrawEditor>` component The `TldrawEditor` component now more neatly wraps up the different ways that the editor can be configured. ## The store prop (`TldrawEditorProps.store`) There are three main ways for the `TldrawEditor` component to be run: 1. with an externally defined store 2. with an externally defined syncing store (local or remote) 3. with an internally defined store 4. with an internally defined locally syncing store The `store` prop allows for these configurations. If the `store` prop is defined, it may be defined either as a `TLStore` or as a `SyncedStore`. If the store is a `TLStore`, then the Editor will assume that the store is ready to go; if it is defined as a SyncedStore, then the component will display the loading / error screens as needed, or the final editor once the store's status is "synced". When the store is left undefined, then the `TldrawEditor` will create its own internal store using the optional `instanceId`, `initialData`, or `shapes` props to define the store / store schema. If the `persistenceKey` prop is left undefined, then the store will not be synced. If the `persistenceKey` is defined, then the store will be synced locally. In the future, we may also here accept the API key / roomId / etc for creating a remotely synced store. The `SyncedStore` type has been expanded to also include types used for remote syncing, e.g. with `ConnectionStatus`. ## Tools By default, the App has two "baked-in" tools: the select tool and the zoom tool. These cannot (for now) be replaced or removed. The default tools are used by default, but may be replaced by other tools if provided. ## Shapes By default, the App has a set of "core" shapes: - group - embed - bookmark - image - video - text That cannot by overwritten because they're created by the app at different moments, such as when double clicking on the canvas or via a copy and paste event. In follow up PRs, we'll split these out so that users can replace parts of the code where these shapes are created. ### Change Type - [x] `major` — Breaking Change ### Test Plan - [x] Unit Tests
2023-06-01 15:47:34 +00:00
type: T['type']
2023-04-25 11:01:25 +00:00
}
/** @public */
export type TLShapeUtilFlag<T> = (shape: T) => boolean
/** @public */
export abstract class TLShapeUtil<T extends TLUnknownShape = TLUnknownShape> {
2023-04-25 11:01:25 +00:00
constructor(public app: App, public readonly type: T['type']) {}
static type: string
/**
* Check if a shape is of this type.
*
* @param shape - The shape to check.
* @returns Whether the shape is of this type.
* @public
*/
2023-04-25 11:01:25 +00:00
is(shape: TLBaseShape<string, object>): shape is T {
return shape.type === this.type
}
/**
* Whether the shape can be scrolled while editing.
*
* @public
*/
canScroll: TLShapeUtilFlag<T> = () => false
/**
* Whether the shape can be bound to by an arrow.
*
* @public
*/
canUnmount: TLShapeUtilFlag<T> = () => true
/**
* Whether the shape can be bound to by an arrow.
*
* @param _otherShape - The other shape attempting to bind to this shape.
* @public
*/
canBind = <K>(_shape: T, _otherShape?: K) => true
/**
* Whether the shape can be double clicked to edit.
*
* @public
*/
canEdit: TLShapeUtilFlag<T> = () => false
/**
* Whether the shape can be resized.
*
* @public
*/
canResize: TLShapeUtilFlag<T> = () => true
/**
* Whether the shape can be cropped.
*
* @public
*/
canCrop: TLShapeUtilFlag<T> = () => false
/**
* Bounds of the shape to edit.
*
* Note: this could be a text area within a shape for example arrow labels.
*
* @public
*/
getEditingBounds = (shape: T) => {
return this.bounds(shape)
}
/**
* Whether the shape's outline is closed.
*
* @public
*/
isClosed: TLShapeUtilFlag<T> = () => true
/**
* Whether the shape should hide its resize handles when selected.
*
* @public
*/
hideResizeHandles: TLShapeUtilFlag<T> = () => false
/**
* Whether the shape should hide its resize handles when selected.
*
* @public
*/
hideRotateHandle: TLShapeUtilFlag<T> = () => false
/**
* Whether the shape should hide its selection bounds background when selected.
*
* @public
*/
hideSelectionBoundsBg: TLShapeUtilFlag<T> = () => false
/**
* Whether the shape should hide its selection bounds foreground when selected.
*
* @public
*/
hideSelectionBoundsFg: TLShapeUtilFlag<T> = () => false
/**
* Whether the shape's aspect ratio is locked.
*
* @public
*/
isAspectRatioLocked: TLShapeUtilFlag<T> = () => false
/**
* Get the default props for a shape.
*
* @public
*/
abstract defaultProps(): T['props']
/**
* Get a JSX element for the shape (as an HTML element).
*
* @param shape - The shape.
* @public
*/
abstract render(shape: T): any
/**
* Get JSX describing the shape's indicator (as an SVG element).
*
* @param shape - The shape.
* @public
*/
abstract indicator(shape: T): any
/**
* Get a JSX element for the shape (as an HTML element) to be rendered as part of the canvas background - behind any other shape content.
*
* @param shape - The shape.
* @internal
*/
renderBackground?(shape: T): any
2023-04-25 11:01:25 +00:00
/**
* Get an array of handle models for the shape. This is an optional method.
*
* @example
*
* ```ts
* util.getHandles?.(myShape)
* ```
*
* @param shape - The shape.
* @public
*/
protected getHandles?(shape: T): TLHandle[]
@computed
private get handlesCache(): ComputedCache<TLHandle[], TLShape> {
return this.app.store.createComputedCache('handles:' + this.type, (shape) => {
return this.getHandles!(shape as any)
})
}
/**
* Get the cached handles (this should not be overridden!)
*
* @param shape - The shape.
* @public
*/
handles(shape: T): TLHandle[] {
if (!this.getHandles) return EMPTY_ARRAY
return this.handlesCache.get(shape.id) ?? EMPTY_ARRAY
}
/**
* Get the (not cached) bounds for the shape.
*
* @param shape - The shape.
* @public
*/
protected abstract getBounds(shape: T): Box2d
@computed
private get boundsCache(): ComputedCache<Box2d, TLShape> {
return this.app.store.createComputedCache('bounds:' + this.type, (shape) => {
return this.getBounds(shape as any)
})
}
/**
* Get the cached bounds for the shape.
*
* @param shape - The shape.
* @public
*/
bounds(shape: T): Box2d {
const result = this.boundsCache.get(shape.id) ?? new Box2d()
if (result.width === 0 || result.height === 0) {
return new Box2d(result.x, result.y, Math.max(result.width, 1), Math.max(result.height, 1))
}
return result
}
/**
* Get the cached transform. Do not override this method!
*
* @param shape - The shape.
* @public
*/
transform(shape: T): Matrix2d {
return transforms.get<T>(shape, (shape) =>
Matrix2d.Compose(Matrix2d.Translate(shape.x, shape.y), Matrix2d.Rotate(shape.rotation))
)
}
/**
* Get the cached point. Do not override this method!
*
* @param shape - The shape.
* @public
*/
point(shape: T): Vec2dModel {
return points.get<T>(shape, (shape) => ({ x: shape.x, y: shape.y }))
}
/**
* Get the shape's (not cached) outline. Do not override this method!
*
* @param shape - The shape.
* @public
*/
protected abstract getOutline(shape: T): Vec2dModel[]
@computed
private get outlineCache(): ComputedCache<Vec2dModel[], TLShape> {
return this.app.store.createComputedCache('outline:' + this.type, (shape) => {
return this.getOutline(shape as any)
})
}
/**
* Get the shape's outline. Do not override this method!
*
* @param shape - The shape.
* @public
*/
outline(shape: T): Vec2dModel[] {
return this.outlineCache.get(shape.id) ?? EMPTY_ARRAY
}
/**
* Get the shape's snap points.
*
* @param shape - The shape.
* @public
*/
snapPoints(shape: T) {
return this.bounds(shape).snapPoints
}
/**
* Get the shape's cached center.
*
* @param shape - The shape.
* @public
*/
center(shape: T): Vec2dModel {
return this.getCenter(shape)
}
/**
* Get the shape's (not cached) center.
*
* @param shape - The shape.
* @public
*/
abstract getCenter(shape: T): Vec2dModel
/**
* Get whether the shape can receive children of a given type.
*
* @param type - The shape type.
* @public
*/
canReceiveNewChildrenOfType(type: TLShape['type']) {
2023-04-25 11:01:25 +00:00
return false
}
/**
* Get whether the shape can receive children of a given type.
*
* @param shape - The shape type.
* @param shapes - The shapes that are being dropped.
* @public
*/
canDropShapes(shape: T, shapes: TLShape[]) {
return false
}
/**
* Get the shape as an SVG object.
*
* @param shape - The shape.
* @param color - The shape's CSS color (actual).
* @param font - The shape's CSS font (actual).
* @returns An SVG element.
* @public
*/
toSvg?(
shape: T,
font: string | undefined,
colors: TLExportColors
): SVGElement | Promise<SVGElement>
/**
* Get the shape's background layer as an SVG object.
*
* @param shape - The shape.
* @param color - The shape's CSS color (actual).
* @param font - The shape's CSS font (actual).
* @returns An SVG element.
* @public
*/
toBackgroundSvg?(
shape: T,
font: string | undefined,
colors: TLExportColors
): SVGElement | Promise<SVGElement> | null
2023-04-25 11:01:25 +00:00
/**
* Get whether a point intersects the shape.
*
* @param shape - The shape.
* @param point - The point to test.
* @returns Whether the point intersects the shape.
* @public
*/
hitTestPoint(shape: T, point: VecLike): boolean {
return this.bounds(shape).containsPoint(point)
}
/**
* Get whether a point intersects the shape.
*
* @param shape - The shape.
* @param A - The line segment's first point.
* @param B - The line segment's second point.
* @returns Whether the line segment intersects the shape.
* @public
*/
hitTestLineSegment(shape: T, A: VecLike, B: VecLike): boolean {
const outline = this.outline(shape)
for (let i = 0; i < outline.length; i++) {
const C = outline[i]
const D = outline[(i + 1) % outline.length]
if (linesIntersect(A, B, C, D)) return true
}
return false
}
/** @internal */
expandSelectionOutlinePx(shape: T): number {
return 0
}
/**
* Does this shape provide a background for its children? If this is true,
* then any children with a `renderBackground` method will have their
* backgrounds rendered _above_ this shape. Otherwise, the children's
* backgrounds will be rendered above either the next ancestor that provides
* a background, or the canvas background.
*
* @internal
*/
providesBackgroundForChildren(shape: T): boolean {
return false
}
2023-04-25 11:01:25 +00:00
// Events
/**
* A callback called just before a shape is created. This method provides a last chance to modify
* the created shape.
*
* @example
*
* ```ts
* onBeforeCreate = (next) => {
* return { ...next, x: next.x + 1 }
2023-04-25 11:01:25 +00:00
* }
* ```
*
* @param next - The next shape.
* @returns The next shape or void.
* @public
*/
onBeforeCreate?: OnBeforeCreateHandler<T>
/**
* A callback called just before a shape is updated. This method provides a last chance to modify
* the updated shape.
*
* @example
*
* ```ts
* onBeforeUpdate = (prev, next) => {
* if (prev.x === next.x) {
* return { ...next, x: next.x + 1 }
* }
* }
* ```
*
* @param prev - The previous shape.
* @param next - The next shape.
* @returns The next shape or void.
* @public
*/
onBeforeUpdate?: OnBeforeUpdateHandler<T>
/**
* A callback called when some other shapes are dragged over this one.
*
* @example
*
* ```ts
* onDragShapesOver = (shape, shapes) => {
* return { shouldHint: true }
* }
* ```
*
* @param shape - The shape.
* @param shapes - The shapes that are being dragged over this one.
* @returns An object specifying whether the shape should hint that it can receive the dragged shapes.
* @public
*/
2023-04-25 11:01:25 +00:00
onDragShapesOver?: OnDragHandler<T, { shouldHint: boolean }>
/**
* A callback called when some other shapes are dragged out of this one.
*
* @param shape - The shape.
* @param shapes - The shapes that are being dragged out.
* @public
*/
2023-04-25 11:01:25 +00:00
onDragShapesOut?: OnDragHandler<T>
/**
* A callback called when some other shapes are dropped over this one.
*
* @param shape - The shape.
* @param shapes - The shapes that are being dropped over this one.
* @public
*/
2023-04-25 11:01:25 +00:00
onDropShapesOver?: OnDragHandler<T>
/**
* A callback called when a shape starts being resized.
*
* @param shape - The shape.
* @returns A change to apply to the shape, or void.
* @public
*/
2023-04-25 11:01:25 +00:00
onResizeStart?: OnResizeStartHandler<T>
/**
* A callback called when a shape changes from a resize.
*
* @param shape - The shape at the start of the resize.
* @param info - Info about the resize.
* @returns A change to apply to the shape, or void.
* @public
*/
2023-04-25 11:01:25 +00:00
onResize?: OnResizeHandler<T>
/**
* A callback called when a shape finishes resizing.
*
* @param initial - The shape at the start of the resize.
* @param current - The current shape.
* @returns A change to apply to the shape, or void.
* @public
*/
2023-04-25 11:01:25 +00:00
onResizeEnd?: OnResizeEndHandler<T>
/**
* A callback called when a shape starts being translated.
*
* @param shape - The shape.
* @returns A change to apply to the shape, or void.
* @public
*/
2023-04-25 11:01:25 +00:00
onTranslateStart?: OnTranslateStartHandler<T>
/**
* A callback called when a shape changes from a translation.
*
* @param initial - The shape at the start of the translation.
* @param current - The current shape.
* @returns A change to apply to the shape, or void.
* @public
*/
2023-04-25 11:01:25 +00:00
onTranslate?: OnTranslateHandler<T>
/**
* A callback called when a shape finishes translating.
*
* @param initial - The shape at the start of the translation.
* @param current - The current shape.
* @returns A change to apply to the shape, or void.
* @public
*/
2023-04-25 11:01:25 +00:00
onTranslateEnd?: OnTranslateEndHandler<T>
/**
* A callback called when a shape starts being rotated.
*
* @param shape - The shape.
* @returns A change to apply to the shape, or void.
* @public
*/
2023-04-25 11:01:25 +00:00
onRotateStart?: OnRotateStartHandler<T>
/**
* A callback called when a shape changes from a rotation.
*
* @param initial - The shape at the start of the rotation.
* @param current - The current shape.
* @returns A change to apply to the shape, or void.
* @public
*/
2023-04-25 11:01:25 +00:00
onRotate?: OnRotateHandler<T>
/**
* A callback called when a shape finishes rotating.
*
* @param initial - The shape at the start of the rotation.
* @param current - The current shape.
* @returns A change to apply to the shape, or void.
* @public
*/
onRotateEnd?: OnRotateEndHandler<T>
/**
* A callback called when a shape's handle changes.
*
* @param shape - The shape.
* @param info - An object containing the handle and whether the handle is 'precise' or not.
* @returns A change to apply to the shape, or void.
* @public
*/
2023-04-25 11:01:25 +00:00
onHandleChange?: OnHandleChangeHandler<T>
/**
* Not currently used.
*
* @internal
*/
2023-04-25 11:01:25 +00:00
onBindingChange?: OnBindingChangeHandler<T>
/**
* A callback called when a shape's children change.
*
* @param shape - The shape.
* @returns An array of shape updates, or void.
* @public
*/
2023-04-25 11:01:25 +00:00
onChildrenChange?: OnChildrenChangeHandler<T>
/**
* A callback called when a shape's handle is double clicked.
*
* @param shape - The shape.
* @param handle - The handle that is double-clicked.
* @returns A change to apply to the shape, or void.
* @public
*/
2023-04-25 11:01:25 +00:00
onDoubleClickHandle?: OnDoubleClickHandleHandler<T>
/**
* A callback called when a shape's edge is double clicked.
*
* @param shape - The shape.
* @returns A change to apply to the shape, or void.
* @public
*/
2023-04-25 11:01:25 +00:00
onDoubleClickEdge?: OnDoubleClickHandler<T>
/**
* A callback called when a shape is double clicked.
*
* @param shape - The shape.
* @returns A change to apply to the shape, or void.
* @public
*/
2023-04-25 11:01:25 +00:00
onDoubleClick?: OnDoubleClickHandler<T>
/**
* A callback called when a shape is clicked.
*
* @param shape - The shape.
* @returns A change to apply to the shape, or void.
* @public
*/
2023-04-25 11:01:25 +00:00
onClick?: OnClickHandler<T>
/**
* A callback called when a shape finishes being editing.
*
* @param shape - The shape.
* @public
*/
2023-04-25 11:01:25 +00:00
onEditEnd?: OnEditEndHandler<T>
}
/** @public */
export type OnBeforeCreateHandler<T extends TLShape> = (next: T) => T | void
/** @public */
export type OnBeforeUpdateHandler<T extends TLShape> = (prev: T, next: T) => T | void
/** @public */
export type OnTranslateStartHandler<T extends TLShape> = EventStartHandler<T>
/** @public */
export type OnTranslateHandler<T extends TLShape> = EventChangeHandler<T>
/** @public */
export type OnTranslateEndHandler<T extends TLShape> = EventChangeHandler<T>
/** @public */
export type OnRotateStartHandler<T extends TLShape> = EventStartHandler<T>
/** @public */
export type OnRotateHandler<T extends TLShape> = EventChangeHandler<T>
/** @public */
export type OnRotateEndHandler<T extends TLShape> = EventChangeHandler<T>
/**
* The type of resize.
*
* 'scale_shape' - The shape is being scaled, usually as part of a larger selection.
*
2023-04-25 11:01:25 +00:00
* 'resize_bounds' - The user is directly manipulating an individual shape's bounds using a resize
* handle. It is up to shape util implementers to decide how they want to handle the two
* situations.
*
* @public
*/
export type TLResizeMode = 'scale_shape' | 'resize_bounds'
/**
* Info about a resize.
* @param newPoint - The new local position of the shape.
* @param handle - The handle being dragged.
* @param mode - The type of resize.
* @param scaleX - The scale in the x-axis.
* @param scaleY - The scale in the y-axis.
* @param initialBounds - The bounds of the shape at the start of the resize.
* @param initialShape - The shape at the start of the resize.
* @public
*/
export type TLResizeInfo<T extends TLShape> = {
newPoint: Vec2dModel
handle: TLResizeHandle
mode: TLResizeMode
scaleX: number
scaleY: number
initialBounds: Box2d
initialShape: T
}
2023-04-25 11:01:25 +00:00
/** @public */
export type OnResizeHandler<T extends TLShape> = (
shape: T,
info: TLResizeInfo<T>
2023-04-25 11:01:25 +00:00
) => Partial<TLShapePartial<T>> | undefined | void
2023-04-25 11:01:25 +00:00
/** @public */
export type OnResizeStartHandler<T extends TLShape> = EventStartHandler<T>
2023-04-25 11:01:25 +00:00
/** @public */
export type OnResizeEndHandler<T extends TLShape> = EventChangeHandler<T>
/* -------------------- Dragging -------------------- */
/** @public */
export type OnDragHandler<T extends TLShape, R = void> = (shape: T, shapes: TLShape[]) => R
/** @internal */
2023-04-25 11:01:25 +00:00
export type OnBindingChangeHandler<T extends TLShape> = (shape: T) => TLShapePartial<T> | void
/** @public */
export type OnChildrenChangeHandler<T extends TLShape> = (shape: T) => TLShapePartial[] | void
/** @public */
export type OnHandleChangeHandler<T extends TLShape> = (
shape: T,
info: {
handle: TLHandle
isPrecise: boolean
}
) => TLShapePartial<T> | void
/** @public */
export type OnClickHandler<T extends TLShape> = (shape: T) => TLShapePartial<T> | void
/** @public */
export type OnEditEndHandler<T extends TLShape> = (shape: T) => void
/** @public */
export type OnDoubleClickHandler<T extends TLShape> = (shape: T) => TLShapePartial<T> | void
/** @public */
export type OnDoubleClickHandleHandler<T extends TLShape> = (
shape: T,
handle: TLHandle
) => TLShapePartial<T> | void
type EventStartHandler<T extends TLShape> = (shape: T) => TLShapePartial<T> | void
type EventChangeHandler<T extends TLShape> = (initial: T, current: T) => TLShapePartial<T> | void