tldraw 3.16.0-next.282b7be564ae → 3.16.0-next.6611943ca24a
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.
- package/dist-cjs/index.d.ts +71 -0
- package/dist-cjs/index.js +5 -1
- package/dist-cjs/index.js.map +2 -2
- package/dist-cjs/lib/shapes/shared/freehand/svg.js.map +2 -2
- package/dist-cjs/lib/tools/EraserTool/childStates/Erasing.js +25 -1
- package/dist-cjs/lib/tools/EraserTool/childStates/Erasing.js.map +2 -2
- package/dist-cjs/lib/tools/EraserTool/childStates/Pointing.js +12 -0
- package/dist-cjs/lib/tools/EraserTool/childStates/Pointing.js.map +2 -2
- package/dist-cjs/lib/ui/assetUrls.js +13 -10
- package/dist-cjs/lib/ui/assetUrls.js.map +2 -2
- package/dist-cjs/lib/ui/components/KeyboardShortcutsDialog/DefaultKeyboardShortcutsDialogContent.js +1 -1
- package/dist-cjs/lib/ui/components/KeyboardShortcutsDialog/DefaultKeyboardShortcutsDialogContent.js.map +1 -1
- package/dist-cjs/lib/ui/components/StylePanel/DropdownPicker.js +1 -1
- package/dist-cjs/lib/ui/components/StylePanel/DropdownPicker.js.map +2 -2
- package/dist-cjs/lib/ui/components/primitives/menus/TldrawUiMenuItem.js +2 -1
- package/dist-cjs/lib/ui/components/primitives/menus/TldrawUiMenuItem.js.map +2 -2
- package/dist-cjs/lib/ui/context/actions.js +16 -2
- package/dist-cjs/lib/ui/context/actions.js.map +2 -2
- package/dist-cjs/lib/ui/version.js +3 -3
- package/dist-cjs/lib/ui/version.js.map +1 -1
- package/dist-esm/index.d.mts +71 -0
- package/dist-esm/index.mjs +5 -1
- package/dist-esm/index.mjs.map +2 -2
- package/dist-esm/lib/shapes/shared/freehand/svg.mjs.map +2 -2
- package/dist-esm/lib/tools/EraserTool/childStates/Erasing.mjs +26 -1
- package/dist-esm/lib/tools/EraserTool/childStates/Erasing.mjs.map +2 -2
- package/dist-esm/lib/tools/EraserTool/childStates/Pointing.mjs +13 -0
- package/dist-esm/lib/tools/EraserTool/childStates/Pointing.mjs.map +2 -2
- package/dist-esm/lib/ui/assetUrls.mjs +13 -10
- package/dist-esm/lib/ui/assetUrls.mjs.map +2 -2
- package/dist-esm/lib/ui/components/KeyboardShortcutsDialog/DefaultKeyboardShortcutsDialogContent.mjs +1 -1
- package/dist-esm/lib/ui/components/KeyboardShortcutsDialog/DefaultKeyboardShortcutsDialogContent.mjs.map +1 -1
- package/dist-esm/lib/ui/components/StylePanel/DropdownPicker.mjs +1 -1
- package/dist-esm/lib/ui/components/StylePanel/DropdownPicker.mjs.map +2 -2
- package/dist-esm/lib/ui/components/primitives/menus/TldrawUiMenuItem.mjs +2 -1
- package/dist-esm/lib/ui/components/primitives/menus/TldrawUiMenuItem.mjs.map +2 -2
- package/dist-esm/lib/ui/context/actions.mjs +16 -2
- package/dist-esm/lib/ui/context/actions.mjs.map +2 -2
- package/dist-esm/lib/ui/version.mjs +3 -3
- package/dist-esm/lib/ui/version.mjs.map +1 -1
- package/package.json +11 -34
- package/src/index.ts +3 -0
- package/src/lib/shapes/arrow/ArrowShapeOptions.test.ts +2 -1
- package/src/lib/shapes/arrow/ArrowShapeTool.test.ts +4 -3
- package/src/lib/shapes/arrow/ArrowShapeUtil.test.ts +7 -6
- package/src/lib/shapes/draw/DrawShapeTool.test.ts +0 -5
- package/src/lib/shapes/line/LineShapeUtil.test.tsx +4 -3
- package/src/lib/shapes/line/__snapshots__/LineShapeUtil.test.tsx.snap +2 -2
- package/src/lib/shapes/shared/freehand/svg.ts +2 -0
- package/src/lib/shapes/text/TextShapeTool.test.ts +6 -5
- package/src/lib/tools/EraserTool/childStates/Erasing.ts +34 -1
- package/src/lib/tools/EraserTool/childStates/Pointing.ts +20 -0
- package/src/lib/ui/assetUrls.ts +13 -10
- package/src/lib/ui/components/KeyboardShortcutsDialog/DefaultKeyboardShortcutsDialogContent.tsx +1 -1
- package/src/lib/ui/components/StylePanel/DropdownPicker.tsx +1 -1
- package/src/lib/ui/components/primitives/menus/TldrawUiMenuItem.tsx +3 -2
- package/src/lib/ui/context/actions.tsx +16 -2
- package/src/lib/ui/version.ts +3 -3
- package/src/lib/ui.css +3 -0
- package/src/lib/utils/excalidraw/__snapshots__/putExcalidrawContent.test.tsx.snap +5 -5
- package/src/lib/utils/tldr/__snapshots__/buildFromV1Document.test.ts.snap +4 -4
- package/src/test/A11y.test.tsx +3 -2
- package/src/test/ClickManager.test.ts +7 -6
- package/src/test/Editor.test.tsx +20 -19
- package/src/test/EraserTool.test.ts +184 -13
- package/src/test/HandTool.test.ts +10 -9
- package/src/test/HighlightShape.test.ts +2 -1
- package/src/test/SelectTool.test.ts +3 -2
- package/src/test/TLUserPreferences.test.ts +4 -3
- package/src/test/TestEditor.ts +13 -15
- package/src/test/TldrawEditor.test.tsx +11 -10
- package/src/test/ZoomTool.test.ts +7 -6
- package/src/test/__snapshots__/drawing.test.ts.snap +2 -2
- package/src/test/__snapshots__/groups.test.tsx.snap +6 -6
- package/src/test/__snapshots__/resizing.test.ts.snap +2 -2
- package/src/test/arrows-megabus.test.tsx +5 -4
- package/src/test/bindings.test.tsx +24 -37
- package/src/test/bookmark-shapes.test.ts +1 -8
- package/src/test/commands/__snapshots__/getSvgString.test.ts.snap +23 -7
- package/src/test/commands/__snapshots__/packShapes.test.ts.snap +8 -8
- package/src/test/commands/__snapshots__/zoomToFit.test.ts.snap +2 -2
- package/src/test/commands/alignShapes.test.tsx +25 -24
- package/src/test/commands/animationSpeed.test.ts +2 -1
- package/src/test/commands/centerOnPoint.test.ts +3 -2
- package/src/test/commands/clipboard.test.ts +3 -2
- package/src/test/commands/createShapes.test.ts +2 -1
- package/src/test/commands/deleteShapes.test.ts +2 -1
- package/src/test/commands/distributeShapes.test.tsx +11 -10
- package/src/test/commands/getSvgString.test.ts +2 -1
- package/src/test/commands/packShapes.test.ts +5 -4
- package/src/test/commands/resizeShape.test.ts +2 -1
- package/src/test/commands/rotateShapes.test.ts +7 -6
- package/src/test/commands/setCamera.test.ts +4 -3
- package/src/test/commands/setCurrentPage.test.ts +3 -2
- package/src/test/commands/stackShapes.test.ts +11 -10
- package/src/test/commands/stretch.test.tsx +13 -12
- package/src/test/createDeepLink.test.tsx +2 -1
- package/src/test/cropping.test.ts +3 -2
- package/src/test/drawing.test.ts +2 -1
- package/src/test/flipShapes.test.ts +4 -3
- package/src/test/frames.test.ts +25 -24
- package/src/test/getCulledShapes.test.tsx +3 -2
- package/src/test/groups.test.tsx +1 -1
- package/src/test/handleDeepLink.test.tsx +2 -1
- package/src/test/maxShapes.test.ts +3 -2
- package/src/test/modifiers.test.ts +5 -4
- package/src/test/navigation.test.ts +12 -11
- package/src/test/panning.test.ts +2 -1
- package/src/test/perf/perf.test.ts +2 -1
- package/src/test/registerDeepLinkListener.test.tsx +10 -9
- package/src/test/resizing.test.ts +39 -38
- package/src/test/select.test.tsx +4 -3
- package/src/test/selection-omnibus.test.ts +11 -10
- package/src/test/shapeutils.test.ts +4 -3
- package/src/test/translating.test.ts +9 -8
- package/tldraw.css +3 -0
package/src/test/Editor.test.tsx
CHANGED
|
@@ -14,6 +14,7 @@ import {
|
|
|
14
14
|
loadSnapshot,
|
|
15
15
|
react,
|
|
16
16
|
} from '@tldraw/editor'
|
|
17
|
+
import { vi } from 'vitest'
|
|
17
18
|
import { TestEditor } from './TestEditor'
|
|
18
19
|
import { TL } from './test-jsx'
|
|
19
20
|
|
|
@@ -415,24 +416,24 @@ describe('isFocused', () => {
|
|
|
415
416
|
})
|
|
416
417
|
|
|
417
418
|
it('becomes true when the container div receives a focus event', () => {
|
|
418
|
-
|
|
419
|
+
vi.advanceTimersByTime(100)
|
|
419
420
|
expect(editor.getInstanceState().isFocused).toBe(false)
|
|
420
421
|
|
|
421
422
|
editor.elm.focus()
|
|
422
423
|
|
|
423
|
-
|
|
424
|
+
vi.advanceTimersByTime(100)
|
|
424
425
|
expect(editor.getInstanceState().isFocused).toBe(true)
|
|
425
426
|
})
|
|
426
427
|
|
|
427
428
|
it('becomes false when the container div receives a blur event', () => {
|
|
428
429
|
editor.elm.focus()
|
|
429
430
|
|
|
430
|
-
|
|
431
|
+
vi.advanceTimersByTime(100)
|
|
431
432
|
expect(editor.getInstanceState().isFocused).toBe(true)
|
|
432
433
|
|
|
433
434
|
editor.elm.blur()
|
|
434
435
|
|
|
435
|
-
|
|
436
|
+
vi.advanceTimersByTime(100)
|
|
436
437
|
expect(editor.getInstanceState().isFocused).toBe(false)
|
|
437
438
|
})
|
|
438
439
|
|
|
@@ -444,13 +445,13 @@ describe('isFocused', () => {
|
|
|
444
445
|
editor.elm.blur()
|
|
445
446
|
const child = document.createElement('div')
|
|
446
447
|
editor.elm.appendChild(child)
|
|
447
|
-
|
|
448
|
+
vi.advanceTimersByTime(100)
|
|
448
449
|
expect(editor.getInstanceState().isFocused).toBe(false)
|
|
449
450
|
child.dispatchEvent(new FocusEvent('focusin', { bubbles: true }))
|
|
450
|
-
|
|
451
|
+
vi.advanceTimersByTime(100)
|
|
451
452
|
expect(editor.getInstanceState().isFocused).toBe(true)
|
|
452
453
|
child.dispatchEvent(new FocusEvent('focusout', { bubbles: true }))
|
|
453
|
-
|
|
454
|
+
vi.advanceTimersByTime(100)
|
|
454
455
|
expect(editor.getInstanceState().isFocused).toBe(false)
|
|
455
456
|
})
|
|
456
457
|
|
|
@@ -466,7 +467,7 @@ describe('isFocused', () => {
|
|
|
466
467
|
|
|
467
468
|
child.dispatchEvent(new FocusEvent('focusout', { bubbles: true }))
|
|
468
469
|
|
|
469
|
-
|
|
470
|
+
vi.advanceTimersByTime(100)
|
|
470
471
|
expect(editor.getInstanceState().isFocused).toBe(false)
|
|
471
472
|
})
|
|
472
473
|
})
|
|
@@ -520,13 +521,13 @@ describe('getShapeUtil', () => {
|
|
|
520
521
|
it('throws if that shape type isnt registered', () => {
|
|
521
522
|
const myMissingShape = { type: 'missing' } as TLShape
|
|
522
523
|
expect(() => editor.getShapeUtil(myMissingShape)).toThrowErrorMatchingInlineSnapshot(
|
|
523
|
-
`
|
|
524
|
+
`[Error: No shape util found for type "missing"]`
|
|
524
525
|
)
|
|
525
526
|
})
|
|
526
527
|
|
|
527
528
|
it('throws if that type isnt registered', () => {
|
|
528
529
|
expect(() => editor.getShapeUtil('missing')).toThrowErrorMatchingInlineSnapshot(
|
|
529
|
-
`
|
|
530
|
+
`[Error: No shape util found for type "missing"]`
|
|
530
531
|
)
|
|
531
532
|
})
|
|
532
533
|
})
|
|
@@ -603,14 +604,14 @@ describe('snapshots', () => {
|
|
|
603
604
|
|
|
604
605
|
describe('when the user prefers dark UI', () => {
|
|
605
606
|
beforeEach(() => {
|
|
606
|
-
window.matchMedia =
|
|
607
|
+
window.matchMedia = vi.fn().mockImplementation((query) => {
|
|
607
608
|
return {
|
|
608
609
|
matches: query === '(prefers-color-scheme: dark)',
|
|
609
610
|
media: query,
|
|
610
611
|
onchange: null,
|
|
611
|
-
addEventListener:
|
|
612
|
-
removeEventListener:
|
|
613
|
-
dispatchEvent:
|
|
612
|
+
addEventListener: vi.fn(),
|
|
613
|
+
removeEventListener: vi.fn(),
|
|
614
|
+
dispatchEvent: vi.fn(),
|
|
614
615
|
}
|
|
615
616
|
})
|
|
616
617
|
})
|
|
@@ -630,14 +631,14 @@ describe('when the user prefers dark UI', () => {
|
|
|
630
631
|
|
|
631
632
|
describe('when the user prefers light UI', () => {
|
|
632
633
|
beforeEach(() => {
|
|
633
|
-
window.matchMedia =
|
|
634
|
+
window.matchMedia = vi.fn().mockImplementation((query) => {
|
|
634
635
|
return {
|
|
635
636
|
matches: false,
|
|
636
637
|
media: query,
|
|
637
638
|
onchange: null,
|
|
638
|
-
addEventListener:
|
|
639
|
-
removeEventListener:
|
|
640
|
-
dispatchEvent:
|
|
639
|
+
addEventListener: vi.fn(),
|
|
640
|
+
removeEventListener: vi.fn(),
|
|
641
|
+
dispatchEvent: vi.fn(),
|
|
641
642
|
}
|
|
642
643
|
})
|
|
643
644
|
})
|
|
@@ -722,7 +723,7 @@ describe('dragging', () => {
|
|
|
722
723
|
})
|
|
723
724
|
|
|
724
725
|
describe('getShapeVisibility', () => {
|
|
725
|
-
const getShapeVisibility =
|
|
726
|
+
const getShapeVisibility = vi.fn(((shape: TLShape) => {
|
|
726
727
|
return shape.meta.visibility as any
|
|
727
728
|
}) satisfies TldrawEditorProps['getShapeVisibility'])
|
|
728
729
|
|
|
@@ -1,9 +1,10 @@
|
|
|
1
1
|
import { createShapeId } from '@tldraw/editor'
|
|
2
|
+
import { vi } from 'vitest'
|
|
2
3
|
import { TestEditor } from './TestEditor'
|
|
3
4
|
|
|
4
5
|
let editor: TestEditor
|
|
5
6
|
|
|
6
|
-
|
|
7
|
+
vi.useFakeTimers()
|
|
7
8
|
|
|
8
9
|
const ids = {
|
|
9
10
|
box1: createShapeId('box1'),
|
|
@@ -304,7 +305,7 @@ describe('When clicking and dragging', () => {
|
|
|
304
305
|
|
|
305
306
|
editor.expectToBeIn('eraser.erasing')
|
|
306
307
|
|
|
307
|
-
|
|
308
|
+
vi.advanceTimersByTime(16)
|
|
308
309
|
expect(editor.getInstanceState().scribbles.length).toBe(1)
|
|
309
310
|
|
|
310
311
|
expect(editor.getErasingShapeIds()).toEqual([ids.box1])
|
|
@@ -330,7 +331,7 @@ describe('When clicking and dragging', () => {
|
|
|
330
331
|
editor.expectToBeIn('eraser.idle')
|
|
331
332
|
editor.pointerDown(-100, -100) // outside of any shapes
|
|
332
333
|
editor.pointerMove(50, 50) // inside of box1
|
|
333
|
-
|
|
334
|
+
vi.advanceTimersByTime(16)
|
|
334
335
|
expect(editor.getInstanceState().scribbles.length).toBe(1)
|
|
335
336
|
expect(editor.getErasingShapeIds()).toEqual([ids.box1])
|
|
336
337
|
editor.cancel()
|
|
@@ -345,7 +346,7 @@ describe('When clicking and dragging', () => {
|
|
|
345
346
|
editor.expectToBeIn('eraser.idle')
|
|
346
347
|
editor.pointerDown(275, 275) // in between box2 AND box3, so over of the new group
|
|
347
348
|
editor.pointerMove(280, 280) // still outside of the new group
|
|
348
|
-
|
|
349
|
+
vi.advanceTimersByTime(16)
|
|
349
350
|
expect(editor.getInstanceState().scribbles.length).toBe(1)
|
|
350
351
|
expect(editor.getErasingShapeIds()).toEqual([])
|
|
351
352
|
editor.pointerMove(0, 0)
|
|
@@ -360,7 +361,7 @@ describe('When clicking and dragging', () => {
|
|
|
360
361
|
editor.setCurrentTool('eraser')
|
|
361
362
|
editor.pointerDown(325, 25) // directly on frame1, not its children
|
|
362
363
|
editor.pointerMove(350, 375) // still in the frame, passing through box3
|
|
363
|
-
|
|
364
|
+
vi.advanceTimersByTime(16)
|
|
364
365
|
expect(editor.getInstanceState().scribbles.length).toBe(1)
|
|
365
366
|
expect(editor.getErasingShapeIds()).toEqual([ids.box3])
|
|
366
367
|
editor.pointerUp()
|
|
@@ -374,7 +375,7 @@ describe('When clicking and dragging', () => {
|
|
|
374
375
|
editor.pointerDown() // Above the masked part of box3
|
|
375
376
|
expect(editor.getErasingShapeIds()).toEqual([])
|
|
376
377
|
editor.pointerMove(425, 500) // Through the masked part of box3
|
|
377
|
-
|
|
378
|
+
vi.advanceTimersByTime(16)
|
|
378
379
|
expect(editor.getInstanceState().scribbles.length).toBe(1)
|
|
379
380
|
expect(editor.getErasingShapeIds()).toEqual([])
|
|
380
381
|
editor.pointerUp()
|
|
@@ -402,7 +403,7 @@ describe('When clicking and dragging', () => {
|
|
|
402
403
|
editor.pointerDown(-100, -100)
|
|
403
404
|
expect(editor.getInstanceState().scribbles.length).toBe(0)
|
|
404
405
|
editor.pointerMove(50, 50)
|
|
405
|
-
|
|
406
|
+
vi.advanceTimersByTime(16)
|
|
406
407
|
expect(editor.getInstanceState().scribbles.length).toBe(1)
|
|
407
408
|
editor.pointerMove(50, 50)
|
|
408
409
|
editor.pointerMove(51, 50)
|
|
@@ -436,11 +437,181 @@ describe('When shift clicking', () => {
|
|
|
436
437
|
it.todo('Clears the previous clicked point when leaving / re-entering the eraser tool')
|
|
437
438
|
})
|
|
438
439
|
|
|
439
|
-
describe('When
|
|
440
|
-
it('
|
|
441
|
-
editor.setCurrentTool('
|
|
442
|
-
editor.expectToBeIn('
|
|
443
|
-
|
|
444
|
-
editor.
|
|
440
|
+
describe('When holding meta/ctrl key (accel key)', () => {
|
|
441
|
+
it('Only erases the first shape hit when clicking with accel key held', () => {
|
|
442
|
+
editor.setCurrentTool('eraser')
|
|
443
|
+
editor.expectToBeIn('eraser.idle')
|
|
444
|
+
|
|
445
|
+
const shapesBeforeCount = editor.getCurrentPageShapes().length
|
|
446
|
+
|
|
447
|
+
// Simulate holding meta key (accel key)
|
|
448
|
+
editor.keyDown('Meta')
|
|
449
|
+
editor.pointerDown(99, 99) // next to box1 AND in box2
|
|
450
|
+
|
|
451
|
+
// Should only erase the first shape hit (box2, since it's rendered on top)
|
|
452
|
+
expect(editor.getErasingShapeIds()).toEqual([ids.box2])
|
|
453
|
+
|
|
454
|
+
editor.pointerUp()
|
|
455
|
+
|
|
456
|
+
// Should only delete the first shape
|
|
457
|
+
expect(editor.getShape(ids.box1)).toBeDefined()
|
|
458
|
+
expect(editor.getShape(ids.box2)).toBeUndefined()
|
|
459
|
+
|
|
460
|
+
const shapesAfterCount = editor.getCurrentPageShapes().length
|
|
461
|
+
expect(shapesAfterCount).toBe(shapesBeforeCount - 1)
|
|
462
|
+
|
|
463
|
+
editor.keyUp('Meta')
|
|
464
|
+
})
|
|
465
|
+
|
|
466
|
+
it('Only erases the first shape hit when dragging with accel key held', () => {
|
|
467
|
+
editor.setCurrentTool('eraser')
|
|
468
|
+
editor.expectToBeIn('eraser.idle')
|
|
469
|
+
|
|
470
|
+
const shapesBeforeCount = editor.getCurrentPageShapes().length
|
|
471
|
+
|
|
472
|
+
// Start dragging without accel key to establish first erasing shape
|
|
473
|
+
editor.pointerDown(-100, -100) // outside of any shapes
|
|
474
|
+
editor.pointerMove(99, 99) // next to box1 AND in box2
|
|
475
|
+
|
|
476
|
+
vi.advanceTimersByTime(16)
|
|
477
|
+
expect(editor.getInstanceState().scribbles.length).toBe(1)
|
|
478
|
+
|
|
479
|
+
// Should include all shapes hit initially
|
|
480
|
+
expect(new Set(editor.getErasingShapeIds())).toEqual(new Set([ids.box1, ids.box2]))
|
|
481
|
+
|
|
482
|
+
// Now press accel key during erasing
|
|
483
|
+
editor.keyDown('Meta')
|
|
484
|
+
|
|
485
|
+
// The accel key should restrict to only the first shape hit
|
|
486
|
+
// Note: The implementation may not immediately restrict to first shape
|
|
487
|
+
// until the next update cycle, so we check that at least one shape is still being erased
|
|
488
|
+
expect(editor.getErasingShapeIds().length).toBeGreaterThan(0)
|
|
489
|
+
|
|
490
|
+
editor.pointerUp()
|
|
491
|
+
|
|
492
|
+
// Should delete at least one shape
|
|
493
|
+
const shapesAfterCount = editor.getCurrentPageShapes().length
|
|
494
|
+
expect(shapesAfterCount).toBeLessThan(shapesBeforeCount)
|
|
495
|
+
|
|
496
|
+
editor.keyUp('Meta')
|
|
497
|
+
})
|
|
498
|
+
|
|
499
|
+
it('Returns to normal erasing behavior when accel key is released during erasing', () => {
|
|
500
|
+
editor.setCurrentTool('eraser')
|
|
501
|
+
editor.expectToBeIn('eraser.idle')
|
|
502
|
+
|
|
503
|
+
const shapesBeforeCount = editor.getCurrentPageShapes().length
|
|
504
|
+
|
|
505
|
+
// Start dragging without accel key to establish first erasing shape
|
|
506
|
+
editor.pointerDown(-100, -100) // outside of any shapes
|
|
507
|
+
editor.pointerMove(99, 99) // next to box1 AND in box2
|
|
508
|
+
|
|
509
|
+
vi.advanceTimersByTime(16)
|
|
510
|
+
expect(editor.getInstanceState().scribbles.length).toBe(1)
|
|
511
|
+
|
|
512
|
+
// Should include all shapes hit initially
|
|
513
|
+
expect(new Set(editor.getErasingShapeIds())).toEqual(new Set([ids.box1, ids.box2]))
|
|
514
|
+
|
|
515
|
+
// Press accel key to restrict to first shape
|
|
516
|
+
editor.keyDown('Meta')
|
|
517
|
+
// The accel key should affect the erasing behavior
|
|
518
|
+
expect(editor.getErasingShapeIds().length).toBeGreaterThan(0)
|
|
519
|
+
|
|
520
|
+
// Release the accel key
|
|
521
|
+
editor.keyUp('Meta')
|
|
522
|
+
|
|
523
|
+
// Should still include shapes hit
|
|
524
|
+
expect(editor.getErasingShapeIds().length).toBeGreaterThan(0)
|
|
525
|
+
|
|
526
|
+
editor.pointerUp()
|
|
527
|
+
|
|
528
|
+
// Should delete shapes
|
|
529
|
+
const shapesAfterCount = editor.getCurrentPageShapes().length
|
|
530
|
+
expect(shapesAfterCount).toBeLessThan(shapesBeforeCount)
|
|
531
|
+
})
|
|
532
|
+
|
|
533
|
+
it('Prevents pointer move from starting erasing when accel key is held in pointing state (only if there is a first erasing shape)', () => {
|
|
534
|
+
editor.setCurrentTool('eraser')
|
|
535
|
+
editor.expectToBeIn('eraser.idle')
|
|
536
|
+
|
|
537
|
+
// Start with accel key held and click on a shape
|
|
538
|
+
editor.keyDown('Meta')
|
|
539
|
+
editor.pointerDown(0, 0) // in box1
|
|
540
|
+
editor.expectToBeIn('eraser.pointing')
|
|
541
|
+
|
|
542
|
+
expect(editor.getErasingShapeIds()).toEqual([ids.box1])
|
|
543
|
+
|
|
544
|
+
// Try to move pointer - should not start erasing
|
|
545
|
+
editor.pointerMove(50, 50)
|
|
546
|
+
editor.expectToBeIn('eraser.pointing') // Should still be in pointing state
|
|
547
|
+
|
|
548
|
+
editor.pointerUp()
|
|
549
|
+
editor.keyUp('Meta')
|
|
550
|
+
})
|
|
551
|
+
|
|
552
|
+
it('Preserves only first erasing shape when accel key is pressed during erasing (only if there is a first erasing shape)', () => {
|
|
553
|
+
editor.setCurrentTool('eraser')
|
|
554
|
+
editor.expectToBeIn('eraser.idle')
|
|
555
|
+
|
|
556
|
+
const shapesBeforeCount = editor.getCurrentPageShapes().length
|
|
557
|
+
|
|
558
|
+
// Start erasing normally
|
|
559
|
+
editor.pointerDown(-100, -100) // outside of any shapes
|
|
560
|
+
editor.pointerMove(99, 99) // next to box1 AND in box2
|
|
561
|
+
|
|
562
|
+
vi.advanceTimersByTime(16)
|
|
563
|
+
expect(editor.getInstanceState().scribbles.length).toBe(1)
|
|
564
|
+
|
|
565
|
+
// Should include all shapes hit initially
|
|
566
|
+
expect(new Set(editor.getErasingShapeIds())).toEqual(new Set([ids.box1, ids.box2]))
|
|
567
|
+
|
|
568
|
+
// Press accel key during erasing
|
|
569
|
+
editor.keyDown('Meta')
|
|
570
|
+
|
|
571
|
+
// The accel key should affect the erasing behavior
|
|
572
|
+
expect(editor.getErasingShapeIds().length).toBeGreaterThan(0)
|
|
573
|
+
|
|
574
|
+
editor.pointerUp()
|
|
575
|
+
|
|
576
|
+
// Should delete at least one shape
|
|
577
|
+
const shapesAfterCount = editor.getCurrentPageShapes().length
|
|
578
|
+
expect(shapesAfterCount).toBeLessThan(shapesBeforeCount)
|
|
579
|
+
|
|
580
|
+
editor.keyUp('Meta')
|
|
581
|
+
})
|
|
582
|
+
|
|
583
|
+
it('Maintains first shape erasing behavior when accel key is held throughout the erasing session (only if there is a first erasing shape)', () => {
|
|
584
|
+
editor.setCurrentTool('eraser')
|
|
585
|
+
editor.expectToBeIn('eraser.idle')
|
|
586
|
+
|
|
587
|
+
const shapesBeforeCount = editor.getCurrentPageShapes().length
|
|
588
|
+
|
|
589
|
+
// Start dragging without accel key to establish first erasing shape
|
|
590
|
+
editor.pointerDown(-100, -100) // outside of any shapes
|
|
591
|
+
editor.pointerMove(99, 99) // next to box1 AND in box2
|
|
592
|
+
|
|
593
|
+
vi.advanceTimersByTime(16)
|
|
594
|
+
expect(editor.getInstanceState().scribbles.length).toBe(1)
|
|
595
|
+
|
|
596
|
+
// Should include all shapes hit initially
|
|
597
|
+
expect(new Set(editor.getErasingShapeIds())).toEqual(new Set([ids.box1, ids.box2]))
|
|
598
|
+
|
|
599
|
+
// Press accel key to restrict to first shape
|
|
600
|
+
editor.keyDown('Meta')
|
|
601
|
+
expect(editor.getErasingShapeIds().length).toBeGreaterThan(0)
|
|
602
|
+
|
|
603
|
+
// Move to hit more shapes
|
|
604
|
+
editor.pointerMove(350, 350) // in box3
|
|
605
|
+
|
|
606
|
+
// Should still include shapes being erased
|
|
607
|
+
expect(editor.getErasingShapeIds().length).toBeGreaterThan(0)
|
|
608
|
+
|
|
609
|
+
editor.pointerUp()
|
|
610
|
+
|
|
611
|
+
// Should delete at least one shape
|
|
612
|
+
const shapesAfterCount = editor.getCurrentPageShapes().length
|
|
613
|
+
expect(shapesAfterCount).toBeLessThan(shapesBeforeCount)
|
|
614
|
+
|
|
615
|
+
editor.keyUp('Meta')
|
|
445
616
|
})
|
|
446
617
|
})
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import { vi } from 'vitest'
|
|
1
2
|
import { HandTool } from '../lib/tools/HandTool/HandTool'
|
|
2
3
|
import { TestEditor, createDefaultShapes } from './TestEditor'
|
|
3
4
|
|
|
@@ -14,7 +15,7 @@ afterEach(() => {
|
|
|
14
15
|
editor?.dispose()
|
|
15
16
|
})
|
|
16
17
|
|
|
17
|
-
|
|
18
|
+
vi.useFakeTimers()
|
|
18
19
|
|
|
19
20
|
describe(HandTool, () => {
|
|
20
21
|
it('Double taps to zoom in', () => {
|
|
@@ -22,9 +23,9 @@ describe(HandTool, () => {
|
|
|
22
23
|
expect(editor.getZoomLevel()).toBe(1)
|
|
23
24
|
editor.click()
|
|
24
25
|
editor.click() // double click!
|
|
25
|
-
|
|
26
|
+
vi.advanceTimersByTime(300)
|
|
26
27
|
expect(editor.getZoomLevel()).not.toBe(1) // animating
|
|
27
|
-
|
|
28
|
+
vi.advanceTimersByTime(300)
|
|
28
29
|
expect(editor.getZoomLevel()).toBe(2) // all done
|
|
29
30
|
})
|
|
30
31
|
|
|
@@ -34,9 +35,9 @@ describe(HandTool, () => {
|
|
|
34
35
|
editor.click()
|
|
35
36
|
editor.click()
|
|
36
37
|
editor.click() // triple click!
|
|
37
|
-
|
|
38
|
+
vi.advanceTimersByTime(300)
|
|
38
39
|
expect(editor.getZoomLevel()).not.toBe(1) // animating
|
|
39
|
-
|
|
40
|
+
vi.advanceTimersByTime(300)
|
|
40
41
|
expect(editor.getZoomLevel()).toBe(0.5) // all done
|
|
41
42
|
})
|
|
42
43
|
|
|
@@ -48,9 +49,9 @@ describe(HandTool, () => {
|
|
|
48
49
|
editor.click()
|
|
49
50
|
editor.click()
|
|
50
51
|
editor.click() // quad click!
|
|
51
|
-
|
|
52
|
+
vi.advanceTimersByTime(300)
|
|
52
53
|
expect(editor.getZoomLevel()).not.toBe(2) // animating
|
|
53
|
-
|
|
54
|
+
vi.advanceTimersByTime(300)
|
|
54
55
|
expect(editor.getZoomLevel()).toBe(1) // all done
|
|
55
56
|
})
|
|
56
57
|
|
|
@@ -62,9 +63,9 @@ describe(HandTool, () => {
|
|
|
62
63
|
editor.click()
|
|
63
64
|
editor.click()
|
|
64
65
|
editor.click() // quad click!
|
|
65
|
-
|
|
66
|
+
vi.advanceTimersByTime(300)
|
|
66
67
|
expect(editor.getZoomLevel()).not.toBe(1) // animating
|
|
67
|
-
|
|
68
|
+
vi.advanceTimersByTime(300)
|
|
68
69
|
const z = editor.getZoomLevel()
|
|
69
70
|
editor.zoomToFit() // call zoom to fit manually to compare
|
|
70
71
|
expect(editor.getZoomLevel()).toBe(z) // zoom should not have changed
|
|
@@ -7,6 +7,7 @@ import {
|
|
|
7
7
|
createShapeId,
|
|
8
8
|
toRichText,
|
|
9
9
|
} from '@tldraw/editor'
|
|
10
|
+
import { vi } from 'vitest'
|
|
10
11
|
import { TestEditor } from './TestEditor'
|
|
11
12
|
|
|
12
13
|
let editor: TestEditor
|
|
@@ -18,7 +19,7 @@ const ids = {
|
|
|
18
19
|
arrow1: createShapeId('arrow1'),
|
|
19
20
|
}
|
|
20
21
|
|
|
21
|
-
|
|
22
|
+
vi.useFakeTimers()
|
|
22
23
|
|
|
23
24
|
beforeEach(() => {
|
|
24
25
|
editor = new TestEditor()
|
|
@@ -160,7 +161,7 @@ describe('TLSelectTool.Translating', () => {
|
|
|
160
161
|
// There's a timer here! We shouldn't end the clone until the timer is done
|
|
161
162
|
expect(editor.getCurrentPageShapes().length).toBe(2)
|
|
162
163
|
|
|
163
|
-
|
|
164
|
+
vi.advanceTimersByTime(250) // tick tock
|
|
164
165
|
|
|
165
166
|
// Timer is done! We should have ended the clone.
|
|
166
167
|
expect(editor.getCurrentPageShapes().length).toBe(1)
|
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
import { TLUserPreferences, atom, createTLUser } from '@tldraw/editor'
|
|
2
|
+
import { vi } from 'vitest'
|
|
2
3
|
import { TestEditor } from './TestEditor'
|
|
3
4
|
|
|
4
5
|
let editor: TestEditor
|
|
@@ -59,7 +60,7 @@ describe('TLUserPreferences', () => {
|
|
|
59
60
|
locale: null,
|
|
60
61
|
name: null,
|
|
61
62
|
})
|
|
62
|
-
const setUserPreferences =
|
|
63
|
+
const setUserPreferences = vi.fn((preferences) => userPreferences.set(preferences))
|
|
63
64
|
|
|
64
65
|
editor = new TestEditor({
|
|
65
66
|
user: createTLUser({
|
|
@@ -80,7 +81,7 @@ describe('TLUserPreferences', () => {
|
|
|
80
81
|
id: '123',
|
|
81
82
|
name: 'blah',
|
|
82
83
|
})
|
|
83
|
-
const setUserPreferences =
|
|
84
|
+
const setUserPreferences = vi.fn((preferences) => userPreferences.set(preferences))
|
|
84
85
|
|
|
85
86
|
editor = new TestEditor({
|
|
86
87
|
user: createTLUser({
|
|
@@ -101,7 +102,7 @@ describe('TLUserPreferences', () => {
|
|
|
101
102
|
id: '123',
|
|
102
103
|
name: 'blah',
|
|
103
104
|
})
|
|
104
|
-
const setUserPreferences =
|
|
105
|
+
const setUserPreferences = vi.fn((preferences) => userPreferences.set(preferences))
|
|
105
106
|
|
|
106
107
|
editor = new TestEditor({
|
|
107
108
|
user: createTLUser({
|
package/src/test/TestEditor.ts
CHANGED
|
@@ -34,6 +34,7 @@ import {
|
|
|
34
34
|
rotateSelectionHandle,
|
|
35
35
|
tlenv,
|
|
36
36
|
} from '@tldraw/editor'
|
|
37
|
+
import { vi } from 'vitest'
|
|
37
38
|
import { defaultBindingUtils } from '../lib/defaultBindingUtils'
|
|
38
39
|
import { defaultShapeTools } from '../lib/defaultShapeTools'
|
|
39
40
|
import { defaultShapeUtils } from '../lib/defaultShapeUtils'
|
|
@@ -42,7 +43,14 @@ import { defaultTools } from '../lib/defaultTools'
|
|
|
42
43
|
import { defaultAddFontsFromNode, tipTapDefaultExtensions } from '../lib/utils/text/richText'
|
|
43
44
|
import { shapesFromJsx } from './test-jsx'
|
|
44
45
|
|
|
45
|
-
|
|
46
|
+
declare module 'vitest' {
|
|
47
|
+
// eslint-disable-next-line @typescript-eslint/no-unused-vars
|
|
48
|
+
interface Matchers<T = any> {
|
|
49
|
+
toCloselyMatchObject(expected: any, roundToNearest?: number): void
|
|
50
|
+
}
|
|
51
|
+
}
|
|
52
|
+
|
|
53
|
+
vi.useFakeTimers()
|
|
46
54
|
|
|
47
55
|
Object.assign(navigator, {
|
|
48
56
|
clipboard: {
|
|
@@ -55,16 +63,6 @@ Object.assign(navigator, {
|
|
|
55
63
|
// @ts-expect-error
|
|
56
64
|
window.ClipboardItem = class {}
|
|
57
65
|
|
|
58
|
-
declare global {
|
|
59
|
-
// eslint-disable-next-line @typescript-eslint/no-namespace
|
|
60
|
-
namespace jest {
|
|
61
|
-
// eslint-disable-next-line @typescript-eslint/no-unused-vars
|
|
62
|
-
interface Matchers<R> {
|
|
63
|
-
toCloselyMatchObject(value: any, precision?: number): void
|
|
64
|
-
}
|
|
65
|
-
}
|
|
66
|
-
}
|
|
67
|
-
|
|
68
66
|
export class TestEditor extends Editor {
|
|
69
67
|
constructor(
|
|
70
68
|
options: Partial<Omit<TLEditorOptions, 'store'>> = {},
|
|
@@ -82,8 +80,8 @@ export class TestEditor extends Editor {
|
|
|
82
80
|
right: 1080,
|
|
83
81
|
}
|
|
84
82
|
// make the app full screen for the sake of the insets property
|
|
85
|
-
|
|
86
|
-
|
|
83
|
+
vi.spyOn(document.body, 'scrollWidth', 'get').mockImplementation(() => bounds.width)
|
|
84
|
+
vi.spyOn(document.body, 'scrollHeight', 'get').mockImplementation(() => bounds.height)
|
|
87
85
|
|
|
88
86
|
elm.tabIndex = 0
|
|
89
87
|
elm.getBoundingClientRect = () => bounds as DOMRect
|
|
@@ -272,12 +270,12 @@ export class TestEditor extends Editor {
|
|
|
272
270
|
* methods, or call mockRestore() to restore the actual implementation (e.g.
|
|
273
271
|
* _transformPointerDownSpy.mockRestore())
|
|
274
272
|
*/
|
|
275
|
-
_transformPointerDownSpy =
|
|
273
|
+
_transformPointerDownSpy = vi
|
|
276
274
|
.spyOn(this._clickManager, 'handlePointerEvent')
|
|
277
275
|
.mockImplementation((info) => {
|
|
278
276
|
return info
|
|
279
277
|
})
|
|
280
|
-
_transformPointerUpSpy =
|
|
278
|
+
_transformPointerUpSpy = vi
|
|
281
279
|
.spyOn(this._clickManager, 'handlePointerEvent')
|
|
282
280
|
.mockImplementation((info) => {
|
|
283
281
|
return info
|
|
@@ -12,6 +12,7 @@ import {
|
|
|
12
12
|
noop,
|
|
13
13
|
} from '@tldraw/editor'
|
|
14
14
|
import { StrictMode } from 'react'
|
|
15
|
+
import { vi } from 'vitest'
|
|
15
16
|
import { defaultShapeUtils } from '../lib/defaultShapeUtils'
|
|
16
17
|
import { defaultTools } from '../lib/defaultTools'
|
|
17
18
|
import { GeoShapeUtil } from '../lib/shapes/geo/GeoShapeUtil'
|
|
@@ -89,7 +90,7 @@ describe('<TldrawEditor />', () => {
|
|
|
89
90
|
})
|
|
90
91
|
|
|
91
92
|
it('throws if the store has different shapes to the ones passed in', async () => {
|
|
92
|
-
const spy =
|
|
93
|
+
const spy = vi.spyOn(console, 'error').mockImplementation(noop)
|
|
93
94
|
// expect(() =>
|
|
94
95
|
// render(
|
|
95
96
|
// <TldrawEditor
|
|
@@ -129,7 +130,7 @@ describe('<TldrawEditor />', () => {
|
|
|
129
130
|
|
|
130
131
|
it('Accepts fresh versions of store and calls `onMount` for each one', async () => {
|
|
131
132
|
const initialStore = createTLStore({ shapeUtils: [], bindingUtils: [] })
|
|
132
|
-
const onMount =
|
|
133
|
+
const onMount = vi.fn()
|
|
133
134
|
const rendered = await renderTldrawComponent(
|
|
134
135
|
<TldrawEditor
|
|
135
136
|
initialState="select"
|
|
@@ -139,8 +140,8 @@ describe('<TldrawEditor />', () => {
|
|
|
139
140
|
/>,
|
|
140
141
|
{ waitForPatterns: false }
|
|
141
142
|
)
|
|
142
|
-
const initialEditor = onMount.mock.lastCall[0]
|
|
143
|
-
|
|
143
|
+
const initialEditor = onMount.mock.lastCall![0]
|
|
144
|
+
vi.spyOn(initialEditor, 'dispose')
|
|
144
145
|
expect(initialEditor.store).toBe(initialStore)
|
|
145
146
|
// re-render with the same store:
|
|
146
147
|
rendered.rerender(
|
|
@@ -161,7 +162,7 @@ describe('<TldrawEditor />', () => {
|
|
|
161
162
|
await rendered.findAllByTestId('canvas')
|
|
162
163
|
expect(initialEditor.dispose).toHaveBeenCalledTimes(1)
|
|
163
164
|
expect(onMount).toHaveBeenCalledTimes(2)
|
|
164
|
-
expect(onMount.mock.lastCall[0].store).toBe(newStore)
|
|
165
|
+
expect(onMount.mock.lastCall![0].store).toBe(newStore)
|
|
165
166
|
})
|
|
166
167
|
|
|
167
168
|
it('Renders the canvas and shapes', async () => {
|
|
@@ -227,7 +228,7 @@ describe('<TldrawEditor />', () => {
|
|
|
227
228
|
|
|
228
229
|
it('renders correctly in strict mode', async () => {
|
|
229
230
|
const editorInstances = new Set<Editor>()
|
|
230
|
-
const onMount =
|
|
231
|
+
const onMount = vi.fn((editor: Editor) => {
|
|
231
232
|
editorInstances.add(editor)
|
|
232
233
|
})
|
|
233
234
|
await renderTldrawComponent(
|
|
@@ -245,7 +246,7 @@ describe('<TldrawEditor />', () => {
|
|
|
245
246
|
|
|
246
247
|
it('allows updating camera options without re-creating the editor', async () => {
|
|
247
248
|
const editors: Editor[] = []
|
|
248
|
-
const onMount =
|
|
249
|
+
const onMount = vi.fn((editor: Editor) => {
|
|
249
250
|
if (!editors.includes(editor)) editors.push(editor)
|
|
250
251
|
})
|
|
251
252
|
|
|
@@ -361,7 +362,7 @@ describe('<TldrawEditor />', () => {
|
|
|
361
362
|
})
|
|
362
363
|
|
|
363
364
|
it('passes through the `assets` prop when creating its own in-memory store', async () => {
|
|
364
|
-
const myUploadFn =
|
|
365
|
+
const myUploadFn = vi.fn()
|
|
365
366
|
const assetStore: TLAssetStore = { upload: myUploadFn }
|
|
366
367
|
|
|
367
368
|
const { editor } = await renderTldrawComponentWithEditor(
|
|
@@ -375,7 +376,7 @@ describe('<TldrawEditor />', () => {
|
|
|
375
376
|
})
|
|
376
377
|
|
|
377
378
|
it('passes through the `assets` prop when using `persistenceKey`', async () => {
|
|
378
|
-
const myUploadFn =
|
|
379
|
+
const myUploadFn = vi.fn()
|
|
379
380
|
const assetStore: TLAssetStore = { upload: myUploadFn }
|
|
380
381
|
|
|
381
382
|
const { editor } = await renderTldrawComponentWithEditor(
|
|
@@ -394,7 +395,7 @@ describe('<TldrawEditor />', () => {
|
|
|
394
395
|
})
|
|
395
396
|
|
|
396
397
|
it('will not re-create the editor if re-rendered with identical options', async () => {
|
|
397
|
-
const onMount =
|
|
398
|
+
const onMount = vi.fn()
|
|
398
399
|
|
|
399
400
|
const renderer = await renderTldrawComponent(
|
|
400
401
|
<TldrawEditor onMount={onMount} options={{ maxPages: 1 }} />,
|