@tldraw/editor 3.16.0-canary.ca347c5375a5 → 3.16.0-canary.da3348c13973

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (62) hide show
  1. package/dist-cjs/index.d.ts +80 -9
  2. package/dist-cjs/index.js +3 -1
  3. package/dist-cjs/index.js.map +2 -2
  4. package/dist-cjs/lib/TldrawEditor.js +3 -1
  5. package/dist-cjs/lib/TldrawEditor.js.map +2 -2
  6. package/dist-cjs/lib/components/MenuClickCapture.js +0 -5
  7. package/dist-cjs/lib/components/MenuClickCapture.js.map +2 -2
  8. package/dist-cjs/lib/config/TLUserPreferences.js +8 -2
  9. package/dist-cjs/lib/config/TLUserPreferences.js.map +2 -2
  10. package/dist-cjs/lib/editor/Editor.js +36 -23
  11. package/dist-cjs/lib/editor/Editor.js.map +2 -2
  12. package/dist-cjs/lib/editor/managers/UserPreferencesManager/UserPreferencesManager.js +8 -3
  13. package/dist-cjs/lib/editor/managers/UserPreferencesManager/UserPreferencesManager.js.map +2 -2
  14. package/dist-cjs/lib/editor/types/misc-types.js.map +1 -1
  15. package/dist-cjs/lib/hooks/useCanvasEvents.js +24 -20
  16. package/dist-cjs/lib/hooks/useCanvasEvents.js.map +2 -2
  17. package/dist-cjs/lib/hooks/useStateAttribute.js +35 -0
  18. package/dist-cjs/lib/hooks/useStateAttribute.js.map +7 -0
  19. package/dist-cjs/lib/options.js +1 -0
  20. package/dist-cjs/lib/options.js.map +2 -2
  21. package/dist-cjs/lib/utils/EditorAtom.js +45 -0
  22. package/dist-cjs/lib/utils/EditorAtom.js.map +7 -0
  23. package/dist-cjs/version.js +3 -3
  24. package/dist-cjs/version.js.map +1 -1
  25. package/dist-esm/index.d.mts +80 -9
  26. package/dist-esm/index.mjs +3 -1
  27. package/dist-esm/index.mjs.map +2 -2
  28. package/dist-esm/lib/TldrawEditor.mjs +3 -1
  29. package/dist-esm/lib/TldrawEditor.mjs.map +2 -2
  30. package/dist-esm/lib/components/MenuClickCapture.mjs +0 -5
  31. package/dist-esm/lib/components/MenuClickCapture.mjs.map +2 -2
  32. package/dist-esm/lib/config/TLUserPreferences.mjs +8 -2
  33. package/dist-esm/lib/config/TLUserPreferences.mjs.map +2 -2
  34. package/dist-esm/lib/editor/Editor.mjs +36 -23
  35. package/dist-esm/lib/editor/Editor.mjs.map +2 -2
  36. package/dist-esm/lib/editor/managers/UserPreferencesManager/UserPreferencesManager.mjs +8 -3
  37. package/dist-esm/lib/editor/managers/UserPreferencesManager/UserPreferencesManager.mjs.map +2 -2
  38. package/dist-esm/lib/hooks/useCanvasEvents.mjs +25 -21
  39. package/dist-esm/lib/hooks/useCanvasEvents.mjs.map +2 -2
  40. package/dist-esm/lib/hooks/useStateAttribute.mjs +15 -0
  41. package/dist-esm/lib/hooks/useStateAttribute.mjs.map +7 -0
  42. package/dist-esm/lib/options.mjs +1 -0
  43. package/dist-esm/lib/options.mjs.map +2 -2
  44. package/dist-esm/lib/utils/EditorAtom.mjs +25 -0
  45. package/dist-esm/lib/utils/EditorAtom.mjs.map +7 -0
  46. package/dist-esm/version.mjs +3 -3
  47. package/dist-esm/version.mjs.map +1 -1
  48. package/editor.css +2 -0
  49. package/package.json +7 -7
  50. package/src/index.ts +2 -0
  51. package/src/lib/TldrawEditor.tsx +7 -5
  52. package/src/lib/components/MenuClickCapture.tsx +0 -8
  53. package/src/lib/config/TLUserPreferences.ts +7 -0
  54. package/src/lib/editor/Editor.ts +59 -46
  55. package/src/lib/editor/managers/UserPreferencesManager/UserPreferencesManager.test.ts +13 -0
  56. package/src/lib/editor/managers/UserPreferencesManager/UserPreferencesManager.ts +5 -0
  57. package/src/lib/editor/types/misc-types.ts +54 -1
  58. package/src/lib/hooks/useCanvasEvents.ts +39 -32
  59. package/src/lib/hooks/useStateAttribute.ts +15 -0
  60. package/src/lib/options.ts +2 -0
  61. package/src/lib/utils/EditorAtom.ts +37 -0
  62. package/src/version.ts +3 -3
@@ -176,6 +176,7 @@ import {
176
176
  RequiredKeys,
177
177
  TLCameraMoveOptions,
178
178
  TLCameraOptions,
179
+ TLGetShapeAtPointOptions,
179
180
  TLImageExportOptions,
180
181
  TLSvgExportOptions,
181
182
  TLUpdatePointerOptions,
@@ -5154,20 +5155,7 @@ export class Editor extends EventEmitter<TLEventMap> {
5154
5155
  *
5155
5156
  * @returns The shape at the given point, or undefined if there is no shape at the point.
5156
5157
  */
5157
- getShapeAtPoint(
5158
- point: VecLike,
5159
- opts = {} as {
5160
- renderingOnly?: boolean
5161
- margin?: number
5162
- hitInside?: boolean
5163
- hitLocked?: boolean
5164
- // TODO: we probably need to rename this, we don't quite _always_
5165
- // respect this esp. in the part below that does "Check labels first"
5166
- hitLabels?: boolean
5167
- hitFrameInside?: boolean
5168
- filter?(shape: TLShape): boolean
5169
- }
5170
- ): TLShape | undefined {
5158
+ getShapeAtPoint(point: VecLike, opts: TLGetShapeAtPointOptions = {}): TLShape | undefined {
5171
5159
  const zoomLevel = this.getZoomLevel()
5172
5160
  const viewportPageBounds = this.getViewportPageBounds()
5173
5161
  const {
@@ -5179,6 +5167,8 @@ export class Editor extends EventEmitter<TLEventMap> {
5179
5167
  hitFrameInside = false,
5180
5168
  } = opts
5181
5169
 
5170
+ const [innerMargin, outerMargin] = Array.isArray(margin) ? margin : [margin, margin]
5171
+
5182
5172
  let inHollowSmallestArea = Infinity
5183
5173
  let inHollowSmallestAreaHit: TLShape | null = null
5184
5174
 
@@ -5198,7 +5188,7 @@ export class Editor extends EventEmitter<TLEventMap> {
5198
5188
  return false
5199
5189
  const pageMask = this.getShapeMask(shape)
5200
5190
  if (pageMask && !pointInPolygon(point, pageMask)) return false
5201
- if (filter) return filter(shape)
5191
+ if (filter && !filter(shape)) return false
5202
5192
  return true
5203
5193
  })
5204
5194
 
@@ -5224,13 +5214,18 @@ export class Editor extends EventEmitter<TLEventMap> {
5224
5214
  }
5225
5215
  }
5226
5216
 
5227
- if (this.isShapeOfType(shape, 'frame')) {
5217
+ if (this.isShapeOfType<TLFrameShape>(shape, 'frame')) {
5228
5218
  // On the rare case that we've hit a frame (not its label), test again hitInside to be forced true;
5229
5219
  // this prevents clicks from passing through the body of a frame to shapes behind it.
5230
5220
 
5231
5221
  // If the hit is within the frame's outer margin, then select the frame
5232
- const distance = geometry.distanceToPoint(pointInShapeSpace, hitInside)
5233
- if (Math.abs(distance) <= margin) {
5222
+ const distance = geometry.distanceToPoint(pointInShapeSpace, hitFrameInside)
5223
+ if (
5224
+ hitFrameInside
5225
+ ? (distance > 0 && distance <= outerMargin) ||
5226
+ (distance <= 0 && distance > -innerMargin)
5227
+ : distance > 0 && distance <= outerMargin
5228
+ ) {
5234
5229
  return inMarginClosestToEdgeHit || shape
5235
5230
  }
5236
5231
 
@@ -5269,11 +5264,11 @@ export class Editor extends EventEmitter<TLEventMap> {
5269
5264
  // If the margin is zero and the geometry has a very small width or height,
5270
5265
  // then check the actual distance. This is to prevent a bug where straight
5271
5266
  // lines would never pass the broad phase (point-in-bounds) check.
5272
- if (margin === 0 && (geometry.bounds.w < 1 || geometry.bounds.h < 1)) {
5267
+ if (outerMargin === 0 && (geometry.bounds.w < 1 || geometry.bounds.h < 1)) {
5273
5268
  distance = geometry.distanceToPoint(pointInShapeSpace, hitInside)
5274
5269
  } else {
5275
5270
  // Broad phase
5276
- if (geometry.bounds.containsPoint(pointInShapeSpace, margin)) {
5271
+ if (geometry.bounds.containsPoint(pointInShapeSpace, outerMargin)) {
5277
5272
  // Narrow phase (actual distance)
5278
5273
  distance = geometry.distanceToPoint(pointInShapeSpace, hitInside)
5279
5274
  } else {
@@ -5288,7 +5283,8 @@ export class Editor extends EventEmitter<TLEventMap> {
5288
5283
  // the shape or negative if inside of the shape. If the distance
5289
5284
  // is greater than the margin, then it's a miss. Otherwise...
5290
5285
 
5291
- if (distance <= margin) {
5286
+ // Are we close to the shape's edge?
5287
+ if (distance <= outerMargin || (hitInside && distance <= 0 && distance > -innerMargin)) {
5292
5288
  if (geometry.isFilled || (isGroup && geometry.children[0].isFilled)) {
5293
5289
  // If the shape is filled, then it's a hit. Remember, we're
5294
5290
  // starting from the TOP-MOST shape in z-index order, so any
@@ -5298,11 +5294,21 @@ export class Editor extends EventEmitter<TLEventMap> {
5298
5294
  // If the shape is bigger than the viewport, then skip it.
5299
5295
  if (this.getShapePageBounds(shape)!.contains(viewportPageBounds)) continue
5300
5296
 
5301
- // For hollow shapes...
5302
- if (Math.abs(distance) < margin) {
5303
- // We want to preference shapes where we're inside of the
5304
- // shape margin; and we would want to hit the shape with the
5305
- // edge closest to the point.
5297
+ // If we're close to the edge of the shape, and if it's the closest edge among
5298
+ // all the edges that we've gotten close to so far, then we will want to hit the
5299
+ // shape unless we hit something else or closer in later iterations.
5300
+ if (
5301
+ hitInside
5302
+ ? // On hitInside, the distance will be negative for hits inside
5303
+ // If the distance is positive, check against the outer margin
5304
+ (distance > 0 && distance <= outerMargin) ||
5305
+ // If the distance is negative, check against the inner margin
5306
+ (distance <= 0 && distance > -innerMargin)
5307
+ : // If hitInside is false, then sadly _we do not know_ whether the
5308
+ // point is inside or outside of the shape, so we check against
5309
+ // the max of the two margins
5310
+ Math.abs(distance) <= Math.max(innerMargin, outerMargin)
5311
+ ) {
5306
5312
  if (Math.abs(distance) < inMarginClosestToEdgeDistance) {
5307
5313
  inMarginClosestToEdgeDistance = Math.abs(distance)
5308
5314
  inMarginClosestToEdgeHit = shape
@@ -5324,6 +5330,7 @@ export class Editor extends EventEmitter<TLEventMap> {
5324
5330
  } else {
5325
5331
  // For open shapes (e.g. lines or draw shapes) always use the margin.
5326
5332
  // If the distance is less than the margin, return the shape as the hit.
5333
+ // Use the editor's configurable hit test margin.
5327
5334
  if (distance < this.options.hitTestMargin / zoomLevel) {
5328
5335
  return shape
5329
5336
  }
@@ -7380,7 +7387,6 @@ export class Editor extends EventEmitter<TLEventMap> {
7380
7387
  if (
7381
7388
  !this.getShapeUtil(shape).canBeLaidOut?.(shape, {
7382
7389
  type: 'stretch',
7383
- shapes: shapesToStretchFirstPass,
7384
7390
  })
7385
7391
  ) {
7386
7392
  continue
@@ -7851,25 +7857,32 @@ export class Editor extends EventEmitter<TLEventMap> {
7851
7857
  ) {
7852
7858
  let parentId: TLParentId = this.getFocusedGroupId()
7853
7859
 
7854
- for (let i = currentPageShapesSorted.length - 1; i >= 0; i--) {
7855
- const parent = currentPageShapesSorted[i]
7856
- const util = this.getShapeUtil(parent)
7857
- if (
7858
- util.canReceiveNewChildrenOfType(parent, partial.type) &&
7859
- !this.isShapeHidden(parent) &&
7860
- this.isPointInShape(
7861
- parent,
7862
- // If no parent is provided, then we can treat the
7863
- // shape's provided x/y as being in the page's space.
7864
- { x: partial.x ?? 0, y: partial.y ?? 0 },
7865
- {
7866
- margin: 0,
7867
- hitInside: true,
7868
- }
7869
- )
7870
- ) {
7871
- parentId = parent.id
7872
- break
7860
+ const isPositioned = partial.x !== undefined && partial.y !== undefined
7861
+
7862
+ // If the shape has been explicitly positioned, we'll try to find a parent at
7863
+ // that position. If not, we'll assume the user isn't deliberately placing the
7864
+ // shape and the positioning will be handled later by another system.
7865
+ if (isPositioned) {
7866
+ for (let i = currentPageShapesSorted.length - 1; i >= 0; i--) {
7867
+ const parent = currentPageShapesSorted[i]
7868
+ const util = this.getShapeUtil(parent)
7869
+ if (
7870
+ util.canReceiveNewChildrenOfType(parent, partial.type) &&
7871
+ !this.isShapeHidden(parent) &&
7872
+ this.isPointInShape(
7873
+ parent,
7874
+ // If no parent is provided, then we can treat the
7875
+ // shape's provided x/y as being in the page's space.
7876
+ { x: partial.x ?? 0, y: partial.y ?? 0 },
7877
+ {
7878
+ margin: 0,
7879
+ hitInside: true,
7880
+ }
7881
+ )
7882
+ ) {
7883
+ parentId = parent.id
7884
+ break
7885
+ }
7873
7886
  }
7874
7887
  }
7875
7888
 
@@ -25,6 +25,7 @@ describe('UserPreferencesManager', () => {
25
25
  locale: 'en',
26
26
  animationSpeed: 1,
27
27
  areKeyboardShortcutsEnabled: true,
28
+ showUiLabels: false,
28
29
  edgeScrollSpeed: 1,
29
30
  colorScheme: 'light',
30
31
  isSnapMode: false,
@@ -231,6 +232,7 @@ describe('UserPreferencesManager', () => {
231
232
  color: mockUserPreferences.color,
232
233
  animationSpeed: mockUserPreferences.animationSpeed,
233
234
  areKeyboardShortcutsEnabled: mockUserPreferences.areKeyboardShortcutsEnabled,
235
+ showUiLabels: mockUserPreferences.showUiLabels,
234
236
  isSnapMode: mockUserPreferences.isSnapMode,
235
237
  colorScheme: mockUserPreferences.colorScheme,
236
238
  isDarkMode: false, // light mode
@@ -379,6 +381,17 @@ describe('UserPreferencesManager', () => {
379
381
  })
380
382
  })
381
383
 
384
+ describe('getShowUiLabels', () => {
385
+ it('should return user show ui labels setting', () => {
386
+ expect(userPreferencesManager.getShowUiLabels()).toBe(mockUserPreferences.showUiLabels)
387
+ })
388
+
389
+ it('should return default show ui labels when null', () => {
390
+ userPreferencesAtom.set({ ...mockUserPreferences, showUiLabels: null })
391
+ expect(userPreferencesManager.getShowUiLabels()).toBe(defaultUserPreferences.showUiLabels)
392
+ })
393
+ })
394
+
382
395
  describe('getEdgeScrollSpeed', () => {
383
396
  it('should return user edge scroll speed', () => {
384
397
  expect(userPreferencesManager.getEdgeScrollSpeed()).toBe(
@@ -49,6 +49,7 @@ export class UserPreferencesManager {
49
49
  isDarkMode: this.getIsDarkMode(),
50
50
  isWrapMode: this.getIsWrapMode(),
51
51
  isDynamicResizeMode: this.getIsDynamicResizeMode(),
52
+ showUiLabels: this.getShowUiLabels(),
52
53
  }
53
54
  }
54
55
 
@@ -119,4 +120,8 @@ export class UserPreferencesManager {
119
120
  defaultUserPreferences.isPasteAtCursorMode
120
121
  )
121
122
  }
123
+
124
+ @computed getShowUiLabels() {
125
+ return this.user.userPreferences.get().showUiLabels ?? defaultUserPreferences.showUiLabels
126
+ }
122
127
  }
@@ -1,4 +1,4 @@
1
- import { BoxModel } from '@tldraw/tlschema'
1
+ import { BoxModel, TLShape } from '@tldraw/tlschema'
2
2
  import { Box } from '../../primitives/Box'
3
3
  import { VecLike } from '../../primitives/Vec'
4
4
 
@@ -206,3 +206,56 @@ export interface TLUpdatePointerOptions {
206
206
  isPen?: boolean
207
207
  button?: number
208
208
  }
209
+
210
+ /**
211
+ * Options to {@link Editor.getShapeAtPoint}.
212
+ *
213
+ * @public
214
+ */
215
+ export interface TLGetShapeAtPointOptions {
216
+ /**
217
+ * The margin to apply to the shape.
218
+ * If a number, it will be applied to both the inside and outside of the shape.
219
+ * If an array, the first element will be applied to the inside of the shape, and the second element will be applied to the outside.
220
+ *
221
+ * @example
222
+ * ```ts
223
+ * // Get the shape at the center of the screen
224
+ * const shape = editor.getShapeAtProps({
225
+ * margin: 10,
226
+ * })
227
+ *
228
+ * // Get the shape at the center of the screen with a 10px inner margin and a 5px outer margin
229
+ * const shape = editor.getShapeAtProps({
230
+ * margin: [10, 5],
231
+ * })
232
+ * ```
233
+ */
234
+ margin?: number | [number, number]
235
+ /**
236
+ * Whether to register hits inside of shapes (beyond the margin), such as the inside of a solid shape.
237
+ */
238
+ hitInside?: boolean
239
+ /**
240
+ * Whether to register hits on locked shapes.
241
+ */
242
+ hitLocked?: boolean
243
+ /**
244
+ * Whether to register hits on labels.
245
+ */
246
+ hitLabels?: boolean
247
+ /**
248
+ * Whether to only return hits on shapes that are currently being rendered.
249
+ * todo: rename this to hitCulled or hitNotRendering
250
+ */
251
+ renderingOnly?: boolean
252
+ /**
253
+ * Whether to register hits on the inside of frame shapes.
254
+ * todo: rename this to hitInsideFrames
255
+ */
256
+ hitFrameInside?: boolean
257
+ /**
258
+ * A filter function to apply to the shapes.
259
+ */
260
+ filter?(shape: TLShape): boolean
261
+ }
@@ -1,5 +1,5 @@
1
1
  import { useValue } from '@tldraw/state-react'
2
- import React, { useMemo } from 'react'
2
+ import React, { useEffect, useMemo } from 'react'
3
3
  import { RIGHT_MOUSE_BUTTON } from '../constants'
4
4
  import {
5
5
  preventDefault,
@@ -16,9 +16,6 @@ export function useCanvasEvents() {
16
16
 
17
17
  const events = useMemo(
18
18
  function canvasEvents() {
19
- // Track the last screen point
20
- let lastX: number, lastY: number
21
-
22
19
  function onPointerDown(e: React.PointerEvent) {
23
20
  if ((e as any).isKilled) return
24
21
 
@@ -44,35 +41,9 @@ export function useCanvasEvents() {
44
41
  })
45
42
  }
46
43
 
47
- function onPointerMove(e: React.PointerEvent) {
48
- if ((e as any).isKilled) return
49
-
50
- if (e.clientX === lastX && e.clientY === lastY) return
51
- lastX = e.clientX
52
- lastY = e.clientY
53
-
54
- // For tools that benefit from a higher fidelity of events,
55
- // we dispatch the coalesced events.
56
- // N.B. Sometimes getCoalescedEvents isn't present on iOS, ugh.
57
- const events =
58
- currentTool.useCoalescedEvents && e.nativeEvent.getCoalescedEvents
59
- ? e.nativeEvent.getCoalescedEvents()
60
- : [e]
61
- for (const singleEvent of events) {
62
- editor.dispatch({
63
- type: 'pointer',
64
- target: 'canvas',
65
- name: 'pointer_move',
66
- ...getPointerInfo(singleEvent),
67
- })
68
- }
69
- }
70
-
71
44
  function onPointerUp(e: React.PointerEvent) {
72
45
  if ((e as any).isKilled) return
73
46
  if (e.button !== 0 && e.button !== 1 && e.button !== 2 && e.button !== 5) return
74
- lastX = e.clientX
75
- lastY = e.clientY
76
47
 
77
48
  releasePointerCapture(e.currentTarget, e)
78
49
 
@@ -158,7 +129,6 @@ export function useCanvasEvents() {
158
129
 
159
130
  return {
160
131
  onPointerDown,
161
- onPointerMove,
162
132
  onPointerUp,
163
133
  onPointerEnter,
164
134
  onPointerLeave,
@@ -169,8 +139,45 @@ export function useCanvasEvents() {
169
139
  onClick,
170
140
  }
171
141
  },
172
- [editor, currentTool]
142
+ [editor]
173
143
  )
174
144
 
145
+ // onPointerMove is special: where we're only interested in the other events when they're
146
+ // happening _on_ the canvas (as opposed to outside of it, or on UI floating over it), we want
147
+ // the pointer position to be up to date regardless of whether it's over the tldraw canvas or
148
+ // not. So instead of returning a listener to be attached to the canvas, we directly attach a
149
+ // listener to the whole document instead.
150
+ useEffect(() => {
151
+ let lastX: number, lastY: number
152
+
153
+ function onPointerMove(e: PointerEvent) {
154
+ if ((e as any).isKilled) return
155
+ ;(e as any).isKilled = true
156
+
157
+ if (e.clientX === lastX && e.clientY === lastY) return
158
+ lastX = e.clientX
159
+ lastY = e.clientY
160
+
161
+ // For tools that benefit from a higher fidelity of events,
162
+ // we dispatch the coalesced events.
163
+ // N.B. Sometimes getCoalescedEvents isn't present on iOS, ugh.
164
+ const events =
165
+ currentTool.useCoalescedEvents && e.getCoalescedEvents ? e.getCoalescedEvents() : [e]
166
+ for (const singleEvent of events) {
167
+ editor.dispatch({
168
+ type: 'pointer',
169
+ target: 'canvas',
170
+ name: 'pointer_move',
171
+ ...getPointerInfo(singleEvent),
172
+ })
173
+ }
174
+ }
175
+
176
+ document.body.addEventListener('pointermove', onPointerMove)
177
+ return () => {
178
+ document.body.removeEventListener('pointermove', onPointerMove)
179
+ }
180
+ }, [editor, currentTool])
181
+
175
182
  return events
176
183
  }
@@ -0,0 +1,15 @@
1
+ import { react } from '@tldraw/state'
2
+ import { useLayoutEffect } from 'react'
3
+ import { useEditor } from './useEditor'
4
+
5
+ export function useStateAttribute() {
6
+ const editor = useEditor()
7
+
8
+ // we use a layout effect because we don't want there to be any perceptible delay between the
9
+ // editor mounting and this attribute being applied, because styles may depend on it:
10
+ useLayoutEffect(() => {
11
+ return react('stateAttribute', () => {
12
+ editor.getContainer().setAttribute('data-state', editor.getPath())
13
+ })
14
+ }, [editor])
15
+ }
@@ -53,6 +53,7 @@ export interface TldrawOptions {
53
53
  readonly flattenImageBoundsPadding: number
54
54
  readonly laserDelayMs: number
55
55
  readonly maxExportDelayMs: number
56
+ readonly tooltipDelayMs: number
56
57
  /**
57
58
  * How long should previews created by {@link Editor.createTemporaryAssetPreview} last before
58
59
  * they expire? Defaults to 3 minutes.
@@ -124,6 +125,7 @@ export const defaultTldrawOptions = {
124
125
  flattenImageBoundsPadding: 16,
125
126
  laserDelayMs: 1200,
126
127
  maxExportDelayMs: 5000,
128
+ tooltipDelayMs: 700,
127
129
  temporaryAssetPreviewLifetimeMs: 180000,
128
130
  actionShortcutsLocation: 'swap',
129
131
  createTextOnCanvasDoubleClick: true,
@@ -0,0 +1,37 @@
1
+ import { atom, Atom } from '@tldraw/state'
2
+ import { WeakCache } from '@tldraw/utils'
3
+ import { Editor } from '../editor/Editor'
4
+
5
+ /**
6
+ * An Atom that is scoped to the lifetime of an Editor.
7
+ *
8
+ * This is useful for storing UI state for tldraw applications. Keeping state scoped to an editor
9
+ * instead of stored in a global atom can prevent issues with state being shared between editors
10
+ * when navigating between pages, or when multiple editor instances are used on the same page.
11
+ *
12
+ * @public
13
+ */
14
+ export class EditorAtom<T> {
15
+ private states = new WeakCache<Editor, Atom<T>>()
16
+
17
+ constructor(
18
+ private name: string,
19
+ private getInitialState: (editor: Editor) => T
20
+ ) {}
21
+
22
+ getAtom(editor: Editor): Atom<T> {
23
+ return this.states.get(editor, () => atom(this.name, this.getInitialState(editor)))
24
+ }
25
+
26
+ get(editor: Editor): T {
27
+ return this.getAtom(editor).get()
28
+ }
29
+
30
+ update(editor: Editor, update: (state: T) => T): T {
31
+ return this.getAtom(editor).update(update)
32
+ }
33
+
34
+ set(editor: Editor, state: T): T {
35
+ return this.getAtom(editor).set(state)
36
+ }
37
+ }
package/src/version.ts CHANGED
@@ -1,9 +1,9 @@
1
1
  // This file is automatically generated by internal/scripts/refresh-assets.ts.
2
2
  // Do not edit manually. Or do, I'm a comment, not a cop.
3
3
 
4
- export const version = '3.16.0-canary.ca347c5375a5'
4
+ export const version = '3.16.0-canary.da3348c13973'
5
5
  export const publishDates = {
6
6
  major: '2024-09-13T14:36:29.063Z',
7
- minor: '2025-07-30T14:49:37.329Z',
8
- patch: '2025-07-30T14:49:37.329Z',
7
+ minor: '2025-08-08T16:06:35.607Z',
8
+ patch: '2025-08-08T16:06:35.607Z',
9
9
  }