@tldraw/editor 3.16.0-canary.fa3749606e52 → 3.16.0-canary.fe4babe9c1ad

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 (213) hide show
  1. package/dist-cjs/index.d.ts +193 -113
  2. package/dist-cjs/index.js +8 -6
  3. package/dist-cjs/index.js.map +2 -2
  4. package/dist-cjs/lib/TldrawEditor.js +7 -7
  5. package/dist-cjs/lib/TldrawEditor.js.map +2 -2
  6. package/dist-cjs/lib/components/Shape.js +7 -10
  7. package/dist-cjs/lib/components/Shape.js.map +2 -2
  8. package/dist-cjs/lib/components/default-components/DefaultCanvas.js +14 -23
  9. package/dist-cjs/lib/components/default-components/DefaultCanvas.js.map +2 -2
  10. package/dist-cjs/lib/components/default-components/DefaultCollaboratorHint.js +1 -1
  11. package/dist-cjs/lib/components/default-components/DefaultCollaboratorHint.js.map +1 -1
  12. package/dist-cjs/lib/components/default-components/DefaultErrorFallback.js +1 -1
  13. package/dist-cjs/lib/components/default-components/DefaultErrorFallback.js.map +2 -2
  14. package/dist-cjs/lib/components/default-components/DefaultScribble.js +1 -1
  15. package/dist-cjs/lib/components/default-components/DefaultScribble.js.map +2 -2
  16. package/dist-cjs/lib/components/default-components/DefaultShapeIndicator.js +9 -1
  17. package/dist-cjs/lib/components/default-components/DefaultShapeIndicator.js.map +2 -2
  18. package/dist-cjs/lib/config/TLUserPreferences.js +9 -3
  19. package/dist-cjs/lib/config/TLUserPreferences.js.map +2 -2
  20. package/dist-cjs/lib/editor/Editor.js +86 -137
  21. package/dist-cjs/lib/editor/Editor.js.map +2 -2
  22. package/dist-cjs/lib/editor/derivations/notVisibleShapes.js +4 -0
  23. package/dist-cjs/lib/editor/derivations/notVisibleShapes.js.map +2 -2
  24. package/dist-cjs/lib/editor/managers/FocusManager/FocusManager.js +4 -2
  25. package/dist-cjs/lib/editor/managers/FocusManager/FocusManager.js.map +2 -2
  26. package/dist-cjs/lib/editor/managers/UserPreferencesManager/UserPreferencesManager.js +9 -4
  27. package/dist-cjs/lib/editor/managers/UserPreferencesManager/UserPreferencesManager.js.map +2 -2
  28. package/dist-cjs/lib/editor/shapes/ShapeUtil.js +23 -0
  29. package/dist-cjs/lib/editor/shapes/ShapeUtil.js.map +2 -2
  30. package/dist-cjs/lib/editor/types/misc-types.js.map +1 -1
  31. package/dist-cjs/lib/exports/getSvgJsx.js +35 -16
  32. package/dist-cjs/lib/exports/getSvgJsx.js.map +2 -2
  33. package/dist-cjs/lib/hooks/useCanvasEvents.js +22 -17
  34. package/dist-cjs/lib/hooks/useCanvasEvents.js.map +2 -2
  35. package/dist-cjs/lib/hooks/useDocumentEvents.js +5 -5
  36. package/dist-cjs/lib/hooks/useDocumentEvents.js.map +2 -2
  37. package/dist-cjs/lib/hooks/useFixSafariDoubleTapZoomPencilEvents.js +1 -2
  38. package/dist-cjs/lib/hooks/useFixSafariDoubleTapZoomPencilEvents.js.map +2 -2
  39. package/dist-cjs/lib/hooks/useGestureEvents.js +1 -1
  40. package/dist-cjs/lib/hooks/useGestureEvents.js.map +2 -2
  41. package/dist-cjs/lib/hooks/useHandleEvents.js +3 -3
  42. package/dist-cjs/lib/hooks/useHandleEvents.js.map +2 -2
  43. package/dist-cjs/lib/hooks/usePassThroughMouseOverEvents.js +4 -1
  44. package/dist-cjs/lib/hooks/usePassThroughMouseOverEvents.js.map +2 -2
  45. package/dist-cjs/lib/hooks/usePassThroughWheelEvents.js +4 -1
  46. package/dist-cjs/lib/hooks/usePassThroughWheelEvents.js.map +2 -2
  47. package/dist-cjs/lib/hooks/useSelectionEvents.js +4 -4
  48. package/dist-cjs/lib/hooks/useSelectionEvents.js.map +2 -2
  49. package/dist-cjs/lib/license/LicenseManager.js +143 -53
  50. package/dist-cjs/lib/license/LicenseManager.js.map +2 -2
  51. package/dist-cjs/lib/license/LicenseProvider.js +39 -1
  52. package/dist-cjs/lib/license/LicenseProvider.js.map +2 -2
  53. package/dist-cjs/lib/license/Watermark.js +73 -11
  54. package/dist-cjs/lib/license/Watermark.js.map +3 -3
  55. package/dist-cjs/lib/license/useLicenseManagerState.js.map +2 -2
  56. package/dist-cjs/lib/options.js +7 -0
  57. package/dist-cjs/lib/options.js.map +2 -2
  58. package/dist-cjs/lib/primitives/Box.js +3 -0
  59. package/dist-cjs/lib/primitives/Box.js.map +2 -2
  60. package/dist-cjs/lib/primitives/Vec.js +0 -4
  61. package/dist-cjs/lib/primitives/Vec.js.map +2 -2
  62. package/dist-cjs/lib/primitives/geometry/Geometry2d.js +50 -20
  63. package/dist-cjs/lib/primitives/geometry/Geometry2d.js.map +2 -2
  64. package/dist-cjs/lib/primitives/geometry/Group2d.js +8 -1
  65. package/dist-cjs/lib/primitives/geometry/Group2d.js.map +2 -2
  66. package/dist-cjs/lib/utils/{nearestMultiple.js → EditorAtom.js} +25 -14
  67. package/dist-cjs/lib/utils/EditorAtom.js.map +7 -0
  68. package/dist-cjs/lib/utils/dom.js +12 -1
  69. package/dist-cjs/lib/utils/dom.js.map +2 -2
  70. package/dist-cjs/lib/utils/getPointerInfo.js +2 -2
  71. package/dist-cjs/lib/utils/getPointerInfo.js.map +2 -2
  72. package/dist-cjs/lib/utils/reparenting.js +2 -35
  73. package/dist-cjs/lib/utils/reparenting.js.map +3 -3
  74. package/dist-cjs/version.js +3 -3
  75. package/dist-cjs/version.js.map +1 -1
  76. package/dist-esm/index.d.mts +193 -113
  77. package/dist-esm/index.mjs +11 -7
  78. package/dist-esm/index.mjs.map +2 -2
  79. package/dist-esm/lib/TldrawEditor.mjs +8 -8
  80. package/dist-esm/lib/TldrawEditor.mjs.map +2 -2
  81. package/dist-esm/lib/components/Shape.mjs +7 -10
  82. package/dist-esm/lib/components/Shape.mjs.map +2 -2
  83. package/dist-esm/lib/components/default-components/DefaultCanvas.mjs +15 -24
  84. package/dist-esm/lib/components/default-components/DefaultCanvas.mjs.map +2 -2
  85. package/dist-esm/lib/components/default-components/DefaultCollaboratorHint.mjs +1 -1
  86. package/dist-esm/lib/components/default-components/DefaultCollaboratorHint.mjs.map +1 -1
  87. package/dist-esm/lib/components/default-components/DefaultErrorFallback.mjs +1 -1
  88. package/dist-esm/lib/components/default-components/DefaultErrorFallback.mjs.map +2 -2
  89. package/dist-esm/lib/components/default-components/DefaultScribble.mjs +1 -1
  90. package/dist-esm/lib/components/default-components/DefaultScribble.mjs.map +2 -2
  91. package/dist-esm/lib/components/default-components/DefaultShapeIndicator.mjs +9 -1
  92. package/dist-esm/lib/components/default-components/DefaultShapeIndicator.mjs.map +2 -2
  93. package/dist-esm/lib/config/TLUserPreferences.mjs +9 -3
  94. package/dist-esm/lib/config/TLUserPreferences.mjs.map +2 -2
  95. package/dist-esm/lib/editor/Editor.mjs +86 -137
  96. package/dist-esm/lib/editor/Editor.mjs.map +2 -2
  97. package/dist-esm/lib/editor/derivations/notVisibleShapes.mjs +4 -0
  98. package/dist-esm/lib/editor/derivations/notVisibleShapes.mjs.map +2 -2
  99. package/dist-esm/lib/editor/managers/FocusManager/FocusManager.mjs +4 -2
  100. package/dist-esm/lib/editor/managers/FocusManager/FocusManager.mjs.map +2 -2
  101. package/dist-esm/lib/editor/managers/UserPreferencesManager/UserPreferencesManager.mjs +9 -4
  102. package/dist-esm/lib/editor/managers/UserPreferencesManager/UserPreferencesManager.mjs.map +2 -2
  103. package/dist-esm/lib/editor/shapes/ShapeUtil.mjs +23 -0
  104. package/dist-esm/lib/editor/shapes/ShapeUtil.mjs.map +2 -2
  105. package/dist-esm/lib/exports/getSvgJsx.mjs +36 -16
  106. package/dist-esm/lib/exports/getSvgJsx.mjs.map +2 -2
  107. package/dist-esm/lib/hooks/useCanvasEvents.mjs +24 -18
  108. package/dist-esm/lib/hooks/useCanvasEvents.mjs.map +2 -2
  109. package/dist-esm/lib/hooks/useDocumentEvents.mjs +11 -6
  110. package/dist-esm/lib/hooks/useDocumentEvents.mjs.map +2 -2
  111. package/dist-esm/lib/hooks/useFixSafariDoubleTapZoomPencilEvents.mjs +2 -3
  112. package/dist-esm/lib/hooks/useFixSafariDoubleTapZoomPencilEvents.mjs.map +2 -2
  113. package/dist-esm/lib/hooks/useGestureEvents.mjs +2 -2
  114. package/dist-esm/lib/hooks/useGestureEvents.mjs.map +2 -2
  115. package/dist-esm/lib/hooks/useHandleEvents.mjs +9 -4
  116. package/dist-esm/lib/hooks/useHandleEvents.mjs.map +2 -2
  117. package/dist-esm/lib/hooks/usePassThroughMouseOverEvents.mjs +4 -1
  118. package/dist-esm/lib/hooks/usePassThroughMouseOverEvents.mjs.map +2 -2
  119. package/dist-esm/lib/hooks/usePassThroughWheelEvents.mjs +4 -1
  120. package/dist-esm/lib/hooks/usePassThroughWheelEvents.mjs.map +2 -2
  121. package/dist-esm/lib/hooks/useSelectionEvents.mjs +6 -5
  122. package/dist-esm/lib/hooks/useSelectionEvents.mjs.map +2 -2
  123. package/dist-esm/lib/license/LicenseManager.mjs +144 -54
  124. package/dist-esm/lib/license/LicenseManager.mjs.map +2 -2
  125. package/dist-esm/lib/license/LicenseProvider.mjs +39 -2
  126. package/dist-esm/lib/license/LicenseProvider.mjs.map +2 -2
  127. package/dist-esm/lib/license/Watermark.mjs +74 -12
  128. package/dist-esm/lib/license/Watermark.mjs.map +3 -3
  129. package/dist-esm/lib/license/useLicenseManagerState.mjs.map +2 -2
  130. package/dist-esm/lib/options.mjs +7 -0
  131. package/dist-esm/lib/options.mjs.map +2 -2
  132. package/dist-esm/lib/primitives/Box.mjs +4 -1
  133. package/dist-esm/lib/primitives/Box.mjs.map +2 -2
  134. package/dist-esm/lib/primitives/Vec.mjs +0 -4
  135. package/dist-esm/lib/primitives/Vec.mjs.map +2 -2
  136. package/dist-esm/lib/primitives/geometry/Geometry2d.mjs +53 -21
  137. package/dist-esm/lib/primitives/geometry/Geometry2d.mjs.map +2 -2
  138. package/dist-esm/lib/primitives/geometry/Group2d.mjs +8 -1
  139. package/dist-esm/lib/primitives/geometry/Group2d.mjs.map +2 -2
  140. package/dist-esm/lib/utils/EditorAtom.mjs +25 -0
  141. package/dist-esm/lib/utils/EditorAtom.mjs.map +7 -0
  142. package/dist-esm/lib/utils/dom.mjs +12 -1
  143. package/dist-esm/lib/utils/dom.mjs.map +2 -2
  144. package/dist-esm/lib/utils/getPointerInfo.mjs +2 -2
  145. package/dist-esm/lib/utils/getPointerInfo.mjs.map +2 -2
  146. package/dist-esm/lib/utils/reparenting.mjs +3 -40
  147. package/dist-esm/lib/utils/reparenting.mjs.map +2 -2
  148. package/dist-esm/version.mjs +3 -3
  149. package/dist-esm/version.mjs.map +1 -1
  150. package/editor.css +308 -290
  151. package/package.json +14 -37
  152. package/src/index.ts +6 -9
  153. package/src/lib/TldrawEditor.tsx +9 -16
  154. package/src/lib/components/Shape.tsx +6 -12
  155. package/src/lib/components/default-components/DefaultCanvas.tsx +12 -23
  156. package/src/lib/components/default-components/DefaultCollaboratorHint.tsx +1 -1
  157. package/src/lib/components/default-components/DefaultErrorFallback.tsx +1 -1
  158. package/src/lib/components/default-components/DefaultScribble.tsx +1 -1
  159. package/src/lib/components/default-components/DefaultShapeIndicator.tsx +5 -1
  160. package/src/lib/config/TLUserPreferences.ts +8 -1
  161. package/src/lib/editor/Editor.test.ts +102 -11
  162. package/src/lib/editor/Editor.ts +124 -197
  163. package/src/lib/editor/derivations/notVisibleShapes.ts +6 -0
  164. package/src/lib/editor/managers/ClickManager/ClickManager.test.ts +15 -14
  165. package/src/lib/editor/managers/EdgeScrollManager/EdgeScrollManager.test.ts +16 -15
  166. package/src/lib/editor/managers/FocusManager/FocusManager.test.ts +49 -48
  167. package/src/lib/editor/managers/FocusManager/FocusManager.ts +6 -2
  168. package/src/lib/editor/managers/FontManager/FontManager.test.ts +24 -23
  169. package/src/lib/editor/managers/HistoryManager/HistoryManager.test.ts +7 -6
  170. package/src/lib/editor/managers/ScribbleManager/ScribbleManager.test.ts +12 -11
  171. package/src/lib/editor/managers/SnapManager/SnapManager.test.ts +57 -50
  172. package/src/lib/editor/managers/TextManager/TextManager.test.ts +51 -26
  173. package/src/lib/editor/managers/TickManager/TickManager.test.ts +14 -13
  174. package/src/lib/editor/managers/UserPreferencesManager/UserPreferencesManager.test.ts +34 -26
  175. package/src/lib/editor/managers/UserPreferencesManager/UserPreferencesManager.ts +6 -1
  176. package/src/lib/editor/shapes/ShapeUtil.ts +46 -0
  177. package/src/lib/editor/types/misc-types.ts +54 -7
  178. package/src/lib/exports/getSvgJsx.test.ts +868 -0
  179. package/src/lib/exports/getSvgJsx.tsx +78 -21
  180. package/src/lib/hooks/useCanvasEvents.ts +23 -17
  181. package/src/lib/hooks/useDocumentEvents.ts +11 -6
  182. package/src/lib/hooks/useFixSafariDoubleTapZoomPencilEvents.ts +2 -2
  183. package/src/lib/hooks/useGestureEvents.ts +2 -2
  184. package/src/lib/hooks/useHandleEvents.ts +9 -4
  185. package/src/lib/hooks/usePassThroughMouseOverEvents.ts +4 -1
  186. package/src/lib/hooks/usePassThroughWheelEvents.ts +6 -1
  187. package/src/lib/hooks/useSelectionEvents.ts +6 -5
  188. package/src/lib/license/LicenseManager.test.ts +724 -383
  189. package/src/lib/license/LicenseManager.ts +204 -58
  190. package/src/lib/license/LicenseProvider.tsx +74 -2
  191. package/src/lib/license/Watermark.test.tsx +2 -1
  192. package/src/lib/license/Watermark.tsx +79 -12
  193. package/src/lib/license/useLicenseManagerState.ts +2 -2
  194. package/src/lib/options.ts +8 -0
  195. package/src/lib/primitives/Box.test.ts +126 -0
  196. package/src/lib/primitives/Box.ts +10 -1
  197. package/src/lib/primitives/Vec.ts +0 -5
  198. package/src/lib/primitives/geometry/Geometry2d.test.ts +420 -0
  199. package/src/lib/primitives/geometry/Geometry2d.ts +78 -21
  200. package/src/lib/primitives/geometry/Group2d.ts +10 -1
  201. package/src/lib/test/InFrontOfTheCanvas.test.tsx +187 -0
  202. package/src/lib/utils/EditorAtom.ts +37 -0
  203. package/src/lib/utils/dom.test.ts +94 -0
  204. package/src/lib/utils/dom.ts +38 -1
  205. package/src/lib/utils/getPointerInfo.ts +2 -1
  206. package/src/lib/utils/reparenting.ts +3 -69
  207. package/src/lib/utils/sync/LocalIndexedDb.test.ts +2 -1
  208. package/src/lib/utils/sync/TLLocalSyncClient.test.ts +15 -15
  209. package/src/version.ts +3 -3
  210. package/dist-cjs/lib/utils/nearestMultiple.js.map +0 -7
  211. package/dist-esm/lib/utils/nearestMultiple.mjs +0 -14
  212. package/dist-esm/lib/utils/nearestMultiple.mjs.map +0 -7
  213. package/src/lib/utils/nearestMultiple.ts +0 -13
@@ -116,7 +116,6 @@ import {
116
116
  } from '../constants'
117
117
  import { exportToSvg } from '../exports/exportToSvg'
118
118
  import { getSvgAsImage } from '../exports/getSvgAsImage'
119
- import { tlenv } from '../globals/environment'
120
119
  import { tlmenus } from '../globals/menus'
121
120
  import { tltime } from '../globals/time'
122
121
  import { TldrawOptions, defaultTldrawOptions } from '../options'
@@ -176,6 +175,7 @@ import {
176
175
  RequiredKeys,
177
176
  TLCameraMoveOptions,
178
177
  TLCameraOptions,
178
+ TLGetShapeAtPointOptions,
179
179
  TLImageExportOptions,
180
180
  TLSvgExportOptions,
181
181
  TLUpdatePointerOptions,
@@ -243,16 +243,6 @@ export interface TLEditorOptions {
243
243
  options?: Partial<TldrawOptions>
244
244
  licenseKey?: string
245
245
  fontAssetUrls?: { [key: string]: string | undefined }
246
- /**
247
- * A predicate that should return true if the given shape should be hidden.
248
- *
249
- * @deprecated Use {@link Editor#getShapeVisibility} instead.
250
- *
251
- * @param shape - The shape to check.
252
- * @param editor - The editor instance.
253
- */
254
- isShapeHidden?(shape: TLShape, editor: Editor): boolean
255
-
256
246
  /**
257
247
  * Provides a way to hide shapes.
258
248
  *
@@ -308,21 +298,12 @@ export class Editor extends EventEmitter<TLEventMap> {
308
298
  autoFocus,
309
299
  inferDarkMode,
310
300
  options,
311
- // eslint-disable-next-line @typescript-eslint/no-deprecated
312
- isShapeHidden,
313
301
  getShapeVisibility,
314
302
  fontAssetUrls,
315
303
  }: TLEditorOptions) {
316
304
  super()
317
- assert(
318
- !(isShapeHidden && getShapeVisibility),
319
- 'Cannot use both isShapeHidden and getShapeVisibility'
320
- )
321
305
 
322
- this._getShapeVisibility = isShapeHidden
323
- ? // eslint-disable-next-line @typescript-eslint/no-deprecated
324
- (shape: TLShape, editor: Editor) => (isShapeHidden(shape, editor) ? 'hidden' : 'inherit')
325
- : getShapeVisibility
306
+ this._getShapeVisibility = getShapeVisibility
326
307
 
327
308
  this.options = { ...defaultTldrawOptions, ...options }
328
309
 
@@ -906,14 +887,6 @@ export class Editor extends EventEmitter<TLEventMap> {
906
887
  */
907
888
  readonly fonts: FontManager
908
889
 
909
- /**
910
- * A manager for the editor's environment.
911
- *
912
- * @deprecated This is deprecated and will be removed in a future version. Use the `tlenv` global export instead.
913
- * @public
914
- */
915
- readonly environment = tlenv
916
-
917
890
  /**
918
891
  * A manager for the editor's scribbles.
919
892
  *
@@ -1118,35 +1091,6 @@ export class Editor extends EventEmitter<TLEventMap> {
1118
1091
  return this.history.getNumRedos() > 0
1119
1092
  }
1120
1093
 
1121
- /**
1122
- * Create a new "mark", or stopping point, in the undo redo history. Creating a mark will clear
1123
- * any redos.
1124
- *
1125
- * @example
1126
- * ```ts
1127
- * editor.mark()
1128
- * editor.mark('flip shapes')
1129
- * ```
1130
- *
1131
- * @param markId - The mark's id, usually the reason for adding the mark.
1132
- *
1133
- * @public
1134
- * @deprecated use {@link Editor.markHistoryStoppingPoint} instead
1135
- */
1136
- mark(markId?: string): this {
1137
- if (typeof markId === 'string') {
1138
- console.warn(
1139
- `[tldraw] \`editor.history.mark("${markId}")\` is deprecated. Please use \`const myMarkId = editor.markHistoryStoppingPoint()\` instead.`
1140
- )
1141
- } else {
1142
- console.warn(
1143
- '[tldraw] `editor.mark()` is deprecated. Use `editor.markHistoryStoppingPoint()` instead.'
1144
- )
1145
- }
1146
- this.history._mark(markId ?? uniqueId())
1147
- return this
1148
- }
1149
-
1150
1094
  /**
1151
1095
  * Create a new "mark", or stopping point, in the undo redo history. Creating a mark will clear
1152
1096
  * any redos. You typically want to do this just before a user interaction begins or is handled.
@@ -1271,13 +1215,6 @@ export class Editor extends EventEmitter<TLEventMap> {
1271
1215
  return this
1272
1216
  }
1273
1217
 
1274
- /**
1275
- * @deprecated Use `Editor.run` instead.
1276
- */
1277
- batch(fn: () => void, opts?: TLEditorRunOptions): this {
1278
- return this.run(fn, opts)
1279
- }
1280
-
1281
1218
  /* --------------------- Errors --------------------- */
1282
1219
 
1283
1220
  /** @internal */
@@ -1579,54 +1516,6 @@ export class Editor extends EventEmitter<TLEventMap> {
1579
1516
 
1580
1517
  menus = tlmenus.forContext(this.contextId)
1581
1518
 
1582
- /**
1583
- * @deprecated Use `editor.menus.getOpenMenus` instead.
1584
- *
1585
- * @public
1586
- */
1587
- @computed getOpenMenus(): string[] {
1588
- return this.menus.getOpenMenus()
1589
- }
1590
-
1591
- /**
1592
- * @deprecated Use `editor.menus.addOpenMenu` instead.
1593
- *
1594
- * @public
1595
- */
1596
- addOpenMenu(id: string): this {
1597
- this.menus.addOpenMenu(id)
1598
- return this
1599
- }
1600
-
1601
- /**
1602
- * @deprecated Use `editor.menus.deleteOpenMenu` instead.
1603
- *
1604
- * @public
1605
- */
1606
- deleteOpenMenu(id: string): this {
1607
- this.menus.deleteOpenMenu(id)
1608
- return this
1609
- }
1610
-
1611
- /**
1612
- * @deprecated Use `editor.menus.clearOpenMenus` instead.
1613
- *
1614
- * @public
1615
- */
1616
- clearOpenMenus(): this {
1617
- this.menus.clearOpenMenus()
1618
- return this
1619
- }
1620
-
1621
- /**
1622
- * @deprecated Use `editor.menus.hasAnyOpenMenus` instead.
1623
- *
1624
- * @public
1625
- */
1626
- @computed getIsMenuOpen(): boolean {
1627
- return this.menus.hasAnyOpenMenus()
1628
- }
1629
-
1630
1519
  /* --------------------- Cursor --------------------- */
1631
1520
 
1632
1521
  /**
@@ -4791,8 +4680,10 @@ export class Editor extends EventEmitter<TLEventMap> {
4791
4680
  return this.store.createComputedCache<Box, TLShape>('pageBoundsCache', (shape) => {
4792
4681
  const pageTransform = this.getShapePageTransform(shape)
4793
4682
  if (!pageTransform) return undefined
4794
- const geometry = this.getShapeGeometry(shape)
4795
- return Box.FromPoints(pageTransform.applyToPoints(geometry.vertices))
4683
+
4684
+ return Box.FromPoints(
4685
+ pageTransform.applyToPoints(this.getShapeGeometry(shape).boundsVertices)
4686
+ )
4796
4687
  })
4797
4688
  }
4798
4689
 
@@ -4859,27 +4750,25 @@ export class Editor extends EventEmitter<TLEventMap> {
4859
4750
  return this.store.createComputedCache('pageMaskCache', (shape) => {
4860
4751
  if (isPageId(shape.parentId)) return undefined
4861
4752
 
4862
- const frameAncestors = this.getShapeAncestors(shape.id).filter((shape) =>
4863
- this.isShapeOfType<TLFrameShape>(shape, 'frame')
4864
- )
4865
-
4866
- if (frameAncestors.length === 0) return undefined
4867
-
4868
- const pageMask = frameAncestors
4869
- .map<Vec[] | undefined>((s) => {
4870
- // Apply the frame transform to the frame outline to get the frame outline in the current page space
4871
- const geometry = this.getShapeGeometry(s.id)
4872
- const pageTransform = this.getShapePageTransform(s.id)
4873
- return pageTransform.applyToPoints(geometry.vertices)
4874
- })
4875
- .reduce((acc, b) => {
4876
- if (!(b && acc)) return undefined
4877
- const intersection = intersectPolygonPolygon(acc, b)
4878
- if (intersection) {
4879
- return intersection.map(Vec.Cast)
4880
- }
4881
- return []
4882
- })
4753
+ const clipPaths: Vec[][] = []
4754
+ // Get all ancestors that can potentially clip this shape
4755
+ for (const ancestor of this.getShapeAncestors(shape.id)) {
4756
+ const util = this.getShapeUtil(ancestor)
4757
+ const clipPath = util.getClipPath?.(ancestor)
4758
+ if (!clipPath) continue
4759
+ if (util.shouldClipChild?.(shape) === false) continue
4760
+ const pageTransform = this.getShapePageTransform(ancestor.id)
4761
+ clipPaths.push(pageTransform.applyToPoints(clipPath))
4762
+ }
4763
+ if (clipPaths.length === 0) return undefined
4764
+
4765
+ const pageMask = clipPaths.reduce((acc, b) => {
4766
+ const intersection = intersectPolygonPolygon(acc, b)
4767
+ if (intersection) {
4768
+ return intersection.map(Vec.Cast)
4769
+ }
4770
+ return []
4771
+ })
4883
4772
 
4884
4773
  return pageMask
4885
4774
  })
@@ -5154,20 +5043,7 @@ export class Editor extends EventEmitter<TLEventMap> {
5154
5043
  *
5155
5044
  * @returns The shape at the given point, or undefined if there is no shape at the point.
5156
5045
  */
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 {
5046
+ getShapeAtPoint(point: VecLike, opts: TLGetShapeAtPointOptions = {}): TLShape | undefined {
5171
5047
  const zoomLevel = this.getZoomLevel()
5172
5048
  const viewportPageBounds = this.getViewportPageBounds()
5173
5049
  const {
@@ -5179,6 +5055,8 @@ export class Editor extends EventEmitter<TLEventMap> {
5179
5055
  hitFrameInside = false,
5180
5056
  } = opts
5181
5057
 
5058
+ const [innerMargin, outerMargin] = Array.isArray(margin) ? margin : [margin, margin]
5059
+
5182
5060
  let inHollowSmallestArea = Infinity
5183
5061
  let inHollowSmallestAreaHit: TLShape | null = null
5184
5062
 
@@ -5198,7 +5076,7 @@ export class Editor extends EventEmitter<TLEventMap> {
5198
5076
  return false
5199
5077
  const pageMask = this.getShapeMask(shape)
5200
5078
  if (pageMask && !pointInPolygon(point, pageMask)) return false
5201
- if (filter) return filter(shape)
5079
+ if (filter && !filter(shape)) return false
5202
5080
  return true
5203
5081
  })
5204
5082
 
@@ -5224,13 +5102,18 @@ export class Editor extends EventEmitter<TLEventMap> {
5224
5102
  }
5225
5103
  }
5226
5104
 
5227
- if (this.isShapeOfType(shape, 'frame')) {
5105
+ if (this.isShapeOfType<TLFrameShape>(shape, 'frame')) {
5228
5106
  // On the rare case that we've hit a frame (not its label), test again hitInside to be forced true;
5229
5107
  // this prevents clicks from passing through the body of a frame to shapes behind it.
5230
5108
 
5231
5109
  // 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) {
5110
+ const distance = geometry.distanceToPoint(pointInShapeSpace, hitFrameInside)
5111
+ if (
5112
+ hitFrameInside
5113
+ ? (distance > 0 && distance <= outerMargin) ||
5114
+ (distance <= 0 && distance > -innerMargin)
5115
+ : distance > 0 && distance <= outerMargin
5116
+ ) {
5234
5117
  return inMarginClosestToEdgeHit || shape
5235
5118
  }
5236
5119
 
@@ -5269,11 +5152,11 @@ export class Editor extends EventEmitter<TLEventMap> {
5269
5152
  // If the margin is zero and the geometry has a very small width or height,
5270
5153
  // then check the actual distance. This is to prevent a bug where straight
5271
5154
  // lines would never pass the broad phase (point-in-bounds) check.
5272
- if (margin === 0 && (geometry.bounds.w < 1 || geometry.bounds.h < 1)) {
5155
+ if (outerMargin === 0 && (geometry.bounds.w < 1 || geometry.bounds.h < 1)) {
5273
5156
  distance = geometry.distanceToPoint(pointInShapeSpace, hitInside)
5274
5157
  } else {
5275
5158
  // Broad phase
5276
- if (geometry.bounds.containsPoint(pointInShapeSpace, margin)) {
5159
+ if (geometry.bounds.containsPoint(pointInShapeSpace, outerMargin)) {
5277
5160
  // Narrow phase (actual distance)
5278
5161
  distance = geometry.distanceToPoint(pointInShapeSpace, hitInside)
5279
5162
  } else {
@@ -5288,7 +5171,8 @@ export class Editor extends EventEmitter<TLEventMap> {
5288
5171
  // the shape or negative if inside of the shape. If the distance
5289
5172
  // is greater than the margin, then it's a miss. Otherwise...
5290
5173
 
5291
- if (distance <= margin) {
5174
+ // Are we close to the shape's edge?
5175
+ if (distance <= outerMargin || (hitInside && distance <= 0 && distance > -innerMargin)) {
5292
5176
  if (geometry.isFilled || (isGroup && geometry.children[0].isFilled)) {
5293
5177
  // If the shape is filled, then it's a hit. Remember, we're
5294
5178
  // starting from the TOP-MOST shape in z-index order, so any
@@ -5298,11 +5182,21 @@ export class Editor extends EventEmitter<TLEventMap> {
5298
5182
  // If the shape is bigger than the viewport, then skip it.
5299
5183
  if (this.getShapePageBounds(shape)!.contains(viewportPageBounds)) continue
5300
5184
 
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.
5185
+ // If we're close to the edge of the shape, and if it's the closest edge among
5186
+ // all the edges that we've gotten close to so far, then we will want to hit the
5187
+ // shape unless we hit something else or closer in later iterations.
5188
+ if (
5189
+ hitInside
5190
+ ? // On hitInside, the distance will be negative for hits inside
5191
+ // If the distance is positive, check against the outer margin
5192
+ (distance > 0 && distance <= outerMargin) ||
5193
+ // If the distance is negative, check against the inner margin
5194
+ (distance <= 0 && distance > -innerMargin)
5195
+ : // If hitInside is false, then sadly _we do not know_ whether the
5196
+ // point is inside or outside of the shape, so we check against
5197
+ // the max of the two margins
5198
+ Math.abs(distance) <= Math.max(innerMargin, outerMargin)
5199
+ ) {
5306
5200
  if (Math.abs(distance) < inMarginClosestToEdgeDistance) {
5307
5201
  inMarginClosestToEdgeDistance = Math.abs(distance)
5308
5202
  inMarginClosestToEdgeHit = shape
@@ -5324,6 +5218,7 @@ export class Editor extends EventEmitter<TLEventMap> {
5324
5218
  } else {
5325
5219
  // For open shapes (e.g. lines or draw shapes) always use the margin.
5326
5220
  // If the distance is less than the margin, return the shape as the hit.
5221
+ // Use the editor's configurable hit test margin.
5327
5222
  if (distance < this.options.hitTestMargin / zoomLevel) {
5328
5223
  return shape
5329
5224
  }
@@ -5834,11 +5729,6 @@ export class Editor extends EventEmitter<TLEventMap> {
5834
5729
  return shapeIds
5835
5730
  }
5836
5731
 
5837
- /** @deprecated Use {@link Editor.getDraggingOverShape} instead */
5838
- getDroppingOverShape(point: Vec, droppingShapes: TLShape[]): TLShape | undefined {
5839
- return this.getDraggingOverShape(point, droppingShapes)
5840
- }
5841
-
5842
5732
  /**
5843
5733
  * Get the shape that some shapes should be dropped on at a given point.
5844
5734
  *
@@ -6326,7 +6216,17 @@ export class Editor extends EventEmitter<TLEventMap> {
6326
6216
 
6327
6217
  this.createShapes(shapesToCreate)
6328
6218
  this.createBindings(bindingsToCreate)
6329
- this.setSelectedShapes(compact(ids.map((id) => shapeIds.get(id))))
6219
+
6220
+ this.setSelectedShapes(
6221
+ compact(
6222
+ ids.map((oldId) => {
6223
+ const newId = shapeIds.get(oldId)
6224
+ if (!newId) return null
6225
+ if (!this.getShape(newId)) return null
6226
+ return newId
6227
+ })
6228
+ )
6229
+ )
6330
6230
 
6331
6231
  if (offset !== undefined) {
6332
6232
  // If we've offset the duplicated shapes, check to see whether their new bounds is entirely
@@ -7380,7 +7280,6 @@ export class Editor extends EventEmitter<TLEventMap> {
7380
7280
  if (
7381
7281
  !this.getShapeUtil(shape).canBeLaidOut?.(shape, {
7382
7282
  type: 'stretch',
7383
- shapes: shapesToStretchFirstPass,
7384
7283
  })
7385
7284
  ) {
7386
7285
  continue
@@ -7851,25 +7750,32 @@ export class Editor extends EventEmitter<TLEventMap> {
7851
7750
  ) {
7852
7751
  let parentId: TLParentId = this.getFocusedGroupId()
7853
7752
 
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
7753
+ const isPositioned = partial.x !== undefined && partial.y !== undefined
7754
+
7755
+ // If the shape has been explicitly positioned, we'll try to find a parent at
7756
+ // that position. If not, we'll assume the user isn't deliberately placing the
7757
+ // shape and the positioning will be handled later by another system.
7758
+ if (isPositioned) {
7759
+ for (let i = currentPageShapesSorted.length - 1; i >= 0; i--) {
7760
+ const parent = currentPageShapesSorted[i]
7761
+ const util = this.getShapeUtil(parent)
7762
+ if (
7763
+ util.canReceiveNewChildrenOfType(parent, partial.type) &&
7764
+ !this.isShapeHidden(parent) &&
7765
+ this.isPointInShape(
7766
+ parent,
7767
+ // If no parent is provided, then we can treat the
7768
+ // shape's provided x/y as being in the page's space.
7769
+ { x: partial.x ?? 0, y: partial.y ?? 0 },
7770
+ {
7771
+ margin: 0,
7772
+ hitInside: true,
7773
+ }
7774
+ )
7775
+ ) {
7776
+ parentId = parent.id
7777
+ break
7778
+ }
7873
7779
  }
7874
7780
  }
7875
7781
 
@@ -8927,8 +8833,13 @@ export class Editor extends EventEmitter<TLEventMap> {
8927
8833
  * Handle external content, such as files, urls, embeds, or plain text which has been put into the app, for example by pasting external text or dropping external images onto canvas.
8928
8834
  *
8929
8835
  * @param info - Info about the external content.
8836
+ * @param opts - Options for handling external content, including force flag to bypass readonly checks.
8930
8837
  */
8931
- async putExternalContent<E>(info: TLExternalContent<E>): Promise<void> {
8838
+ async putExternalContent<E>(
8839
+ info: TLExternalContent<E>,
8840
+ opts = {} as { force?: boolean }
8841
+ ): Promise<void> {
8842
+ if (!opts.force && this.getIsReadonly()) return
8932
8843
  return this.externalContentHandlers[info.type]?.(info as any)
8933
8844
  }
8934
8845
 
@@ -8936,8 +8847,13 @@ export class Editor extends EventEmitter<TLEventMap> {
8936
8847
  * Handle replacing external content.
8937
8848
  *
8938
8849
  * @param info - Info about the external content.
8850
+ * @param opts - Options for handling external content, including force flag to bypass readonly checks.
8939
8851
  */
8940
- async replaceExternalContent<E>(info: TLExternalContent<E>): Promise<void> {
8852
+ async replaceExternalContent<E>(
8853
+ info: TLExternalContent<E>,
8854
+ opts = {} as { force?: boolean }
8855
+ ): Promise<void> {
8856
+ if (!opts.force && this.getIsReadonly()) return
8941
8857
  return this.externalContentHandlers[info.type]?.(info as any)
8942
8858
  }
8943
8859
 
@@ -9438,13 +9354,6 @@ export class Editor extends EventEmitter<TLEventMap> {
9438
9354
  }
9439
9355
  }
9440
9356
 
9441
- /** @deprecated Use {@link Editor.getSvgString} or {@link Editor.getSvgElement} instead. */
9442
- async getSvg(shapes: TLShapeId[] | TLShape[], opts: TLSvgExportOptions = {}) {
9443
- const result = await this.getSvgElement(shapes, opts)
9444
- if (!result) return undefined
9445
- return result.svg
9446
- }
9447
-
9448
9357
  /**
9449
9358
  * Get an exported image of the given shapes.
9450
9359
  *
@@ -9496,6 +9405,24 @@ export class Editor extends EventEmitter<TLEventMap> {
9496
9405
  }
9497
9406
  }
9498
9407
 
9408
+ /**
9409
+ * Get an exported image of the given shapes as a data URL.
9410
+ *
9411
+ * @param shapes - The shapes (or shape ids) to export.
9412
+ * @param opts - Options for the export.
9413
+ *
9414
+ * @returns A data URL of the image.
9415
+ * @public
9416
+ */
9417
+ async toImageDataUrl(shapes: TLShapeId[] | TLShape[], opts: TLImageExportOptions = {}) {
9418
+ const { blob, width, height } = await this.toImage(shapes, opts)
9419
+ return {
9420
+ url: await FileHelpers.blobToDataUrl(blob),
9421
+ width,
9422
+ height,
9423
+ }
9424
+ }
9425
+
9499
9426
  /* --------------------- Events --------------------- */
9500
9427
 
9501
9428
  /**
@@ -7,6 +7,12 @@ function fromScratch(editor: Editor): Set<TLShapeId> {
7
7
  const viewportPageBounds = editor.getViewportPageBounds()
8
8
  const notVisibleShapes = new Set<TLShapeId>()
9
9
  shapesIds.forEach((id) => {
10
+ const shape = editor.getShape(id)
11
+ if (!shape) return
12
+
13
+ const canCull = editor.getShapeUtil(shape.type).canCull(shape)
14
+ if (!canCull) return
15
+
10
16
  // If the shape is fully outside of the viewport page bounds, add it to the set.
11
17
  // We'll ignore masks here, since they're more expensive to compute and the overhead is not worth it.
12
18
  const pageBounds = editor.getShapePageBounds(id)
@@ -1,12 +1,13 @@
1
+ import { Mocked, vi } from 'vitest'
1
2
  import { Editor } from '../../Editor'
2
3
  import { TLClickEventInfo, TLPointerEventInfo } from '../../types/event-types'
3
4
  import { ClickManager } from './ClickManager'
4
5
 
5
6
  // Mock the Editor class
6
- jest.mock('../../Editor')
7
+ vi.mock('../../Editor')
7
8
 
8
9
  describe('ClickManager', () => {
9
- let editor: jest.Mocked<Editor>
10
+ let editor: Mocked<Editor>
10
11
  let clickManager: ClickManager
11
12
  let mockTimers: any
12
13
 
@@ -29,14 +30,14 @@ describe('ClickManager', () => {
29
30
  })
30
31
 
31
32
  beforeEach(() => {
32
- jest.useFakeTimers()
33
+ vi.useFakeTimers()
33
34
  mockTimers = {
34
- setTimeout: jest.fn((fn, delay) => setTimeout(fn, delay)),
35
+ setTimeout: vi.fn((fn, delay) => setTimeout(fn, delay)),
35
36
  }
36
37
 
37
38
  editor = {
38
39
  timers: mockTimers,
39
- dispatch: jest.fn(),
40
+ dispatch: vi.fn(),
40
41
  options: {
41
42
  doubleClickDurationMs: 300,
42
43
  multiClickDurationMs: 300,
@@ -46,7 +47,7 @@ describe('ClickManager', () => {
46
47
  inputs: {
47
48
  currentScreenPoint: { x: 0, y: 0 },
48
49
  },
49
- getInstanceState: jest.fn(() => ({
50
+ getInstanceState: vi.fn(() => ({
50
51
  isCoarsePointer: false,
51
52
  })),
52
53
  } as any
@@ -55,8 +56,8 @@ describe('ClickManager', () => {
55
56
  })
56
57
 
57
58
  afterEach(() => {
58
- jest.useRealTimers()
59
- jest.clearAllMocks()
59
+ vi.useRealTimers()
60
+ vi.clearAllMocks()
60
61
  })
61
62
 
62
63
  describe('constructor and initial state', () => {
@@ -100,7 +101,7 @@ describe('ClickManager', () => {
100
101
  clickManager.handlePointerEvent(pointerEvent)
101
102
  expect(clickManager.clickState).toBe('pendingDouble')
102
103
 
103
- jest.advanceTimersByTime(350)
104
+ vi.advanceTimersByTime(350)
104
105
 
105
106
  expect(clickManager.clickState).toBe('idle')
106
107
  })
@@ -141,7 +142,7 @@ describe('ClickManager', () => {
141
142
  clickManager.handlePointerEvent(firstDown)
142
143
  clickManager.handlePointerEvent(secondDown)
143
144
 
144
- jest.advanceTimersByTime(350)
145
+ vi.advanceTimersByTime(350)
145
146
 
146
147
  expect(editor.dispatch).toHaveBeenCalledWith(
147
148
  expect.objectContaining({
@@ -235,7 +236,7 @@ describe('ClickManager', () => {
235
236
  clickManager.handlePointerEvent(pointerDown) // second
236
237
  clickManager.handlePointerEvent(pointerDown) // third
237
238
 
238
- jest.advanceTimersByTime(350)
239
+ vi.advanceTimersByTime(350)
239
240
 
240
241
  expect(editor.dispatch).toHaveBeenCalledWith(
241
242
  expect.objectContaining({
@@ -255,7 +256,7 @@ describe('ClickManager', () => {
255
256
  clickManager.handlePointerEvent(pointerDown) // third
256
257
  clickManager.handlePointerEvent(pointerDown) // fourth
257
258
 
258
- jest.advanceTimersByTime(350)
259
+ vi.advanceTimersByTime(350)
259
260
 
260
261
  expect(editor.dispatch).toHaveBeenCalledWith(
261
262
  expect.objectContaining({
@@ -277,7 +278,7 @@ describe('ClickManager', () => {
277
278
  editor.options.doubleClickDurationMs
278
279
  )
279
280
 
280
- jest.clearAllMocks()
281
+ vi.clearAllMocks()
281
282
 
282
283
  // Second click - should use multiClickDurationMs
283
284
  clickManager.handlePointerEvent(pointerDown)
@@ -392,7 +393,7 @@ describe('ClickManager', () => {
392
393
  clickManager.cancelDoubleClickTimeout()
393
394
 
394
395
  // Advance time - should not dispatch settle event
395
- jest.advanceTimersByTime(350)
396
+ vi.advanceTimersByTime(350)
396
397
 
397
398
  expect(editor.dispatch).not.toHaveBeenCalled()
398
399
  expect(clickManager.clickState).toBe('idle')