js-draw 0.2.3 → 0.3.0
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/CHANGELOG.md +4 -0
- package/dist/bundle.js +1 -1
- package/dist/src/EditorImage.js +0 -1
- package/dist/src/components/builders/FreehandLineBuilder.js +1 -1
- package/dist/src/components/lib.d.ts +2 -0
- package/dist/src/components/lib.js +2 -0
- package/dist/src/lib.d.ts +5 -1
- package/dist/src/lib.js +5 -1
- package/dist/src/rendering/Display.js +2 -2
- package/dist/src/rendering/caching/RenderingCacheNode.js +2 -1
- package/dist/src/rendering/renderers/CanvasRenderer.js +6 -6
- package/dist/src/toolbar/HTMLToolbar.d.ts +4 -1
- package/dist/src/toolbar/HTMLToolbar.js +29 -31
- package/dist/src/toolbar/icons.d.ts +1 -1
- package/dist/src/toolbar/icons.js +4 -0
- package/dist/src/toolbar/lib.d.ts +3 -0
- package/dist/src/toolbar/lib.js +4 -0
- package/dist/src/toolbar/makeColorInput.js +2 -2
- package/dist/src/toolbar/types.d.ts +0 -4
- package/dist/src/toolbar/types.js +1 -5
- package/dist/src/toolbar/widgets/{EraserWidget.d.ts → EraserToolWidget.d.ts} +1 -1
- package/dist/src/toolbar/widgets/{EraserWidget.js → EraserToolWidget.js} +1 -1
- package/dist/src/toolbar/widgets/{PenWidget.d.ts → PenToolWidget.d.ts} +2 -3
- package/dist/src/toolbar/widgets/{PenWidget.js → PenToolWidget.js} +6 -7
- package/dist/src/toolbar/widgets/{SelectionWidget.d.ts → SelectionToolWidget.d.ts} +1 -1
- package/dist/src/toolbar/widgets/{SelectionWidget.js → SelectionToolWidget.js} +1 -1
- package/dist/src/toolbar/widgets/lib.d.ts +8 -0
- package/dist/src/toolbar/widgets/lib.js +8 -0
- package/dist/src/tools/BaseTool.d.ts +0 -2
- package/dist/src/tools/Eraser.d.ts +0 -2
- package/dist/src/tools/Eraser.js +0 -2
- package/dist/src/tools/PanZoom.d.ts +0 -2
- package/dist/src/tools/PanZoom.js +0 -2
- package/dist/src/tools/Pen.d.ts +8 -9
- package/dist/src/tools/Pen.js +7 -6
- package/dist/src/tools/PipetteTool.d.ts +0 -2
- package/dist/src/tools/PipetteTool.js +0 -2
- package/dist/src/tools/SelectionTool.d.ts +0 -2
- package/dist/src/tools/SelectionTool.js +4 -3
- package/dist/src/tools/TextTool.d.ts +0 -2
- package/dist/src/tools/TextTool.js +0 -2
- package/dist/src/tools/ToolController.d.ts +7 -11
- package/dist/src/tools/ToolController.js +28 -16
- package/dist/src/tools/ToolEnabledGroup.js +1 -1
- package/dist/src/tools/UndoRedoShortcut.d.ts +0 -2
- package/dist/src/tools/UndoRedoShortcut.js +3 -2
- package/dist/src/tools/lib.d.ts +12 -0
- package/dist/src/tools/lib.js +12 -0
- package/package.json +1 -1
- package/src/EditorImage.ts +0 -1
- package/src/components/builders/FreehandLineBuilder.ts +1 -1
- package/src/components/lib.ts +3 -0
- package/src/lib.ts +5 -1
- package/src/rendering/Display.ts +2 -2
- package/src/rendering/caching/RenderingCacheNode.ts +3 -1
- package/src/rendering/renderers/CanvasRenderer.ts +6 -6
- package/src/toolbar/HTMLToolbar.ts +34 -37
- package/src/toolbar/icons.ts +5 -1
- package/src/toolbar/lib.ts +4 -0
- package/src/toolbar/makeColorInput.ts +1 -2
- package/src/toolbar/types.ts +0 -4
- package/src/toolbar/widgets/{EraserWidget.ts → EraserToolWidget.ts} +1 -1
- package/src/toolbar/widgets/{PenWidget.ts → PenToolWidget.ts} +10 -9
- package/src/toolbar/widgets/{SelectionWidget.ts → SelectionToolWidget.ts} +1 -1
- package/src/toolbar/widgets/lib.ts +10 -0
- package/src/tools/BaseTool.ts +0 -3
- package/src/tools/Eraser.ts +0 -2
- package/src/tools/PanZoom.ts +0 -2
- package/src/tools/Pen.ts +12 -12
- package/src/tools/PipetteTool.ts +0 -3
- package/src/tools/SelectionTool.test.ts +1 -2
- package/src/tools/SelectionTool.ts +5 -3
- package/src/tools/TextTool.ts +0 -2
- package/src/tools/ToolController.ts +34 -17
- package/src/tools/ToolEnabledGroup.ts +1 -1
- package/src/tools/UndoRedoShortcut.ts +4 -4
- package/src/tools/lib.ts +17 -0
package/src/tools/BaseTool.ts
CHANGED
@@ -1,5 +1,4 @@
|
|
1
1
|
import { PointerEvtListener, WheelEvt, PointerEvt, EditorNotifier, EditorEventType, KeyPressEvent, KeyUpEvent } from '../types';
|
2
|
-
import { ToolType } from './ToolController';
|
3
2
|
import ToolEnabledGroup from './ToolEnabledGroup';
|
4
3
|
|
5
4
|
export default abstract class BaseTool implements PointerEvtListener {
|
@@ -11,8 +10,6 @@ export default abstract class BaseTool implements PointerEvtListener {
|
|
11
10
|
public onPointerUp(_event: PointerEvt) { }
|
12
11
|
public onGestureCancel() { }
|
13
12
|
|
14
|
-
public abstract readonly kind: ToolType;
|
15
|
-
|
16
13
|
protected constructor(private notifier: EditorNotifier, public readonly description: string) {
|
17
14
|
}
|
18
15
|
|
package/src/tools/Eraser.ts
CHANGED
@@ -4,14 +4,12 @@ import Editor from '../Editor';
|
|
4
4
|
import { Point2 } from '../math/Vec2';
|
5
5
|
import LineSegment2 from '../math/LineSegment2';
|
6
6
|
import Erase from '../commands/Erase';
|
7
|
-
import { ToolType } from './ToolController';
|
8
7
|
import AbstractComponent from '../components/AbstractComponent';
|
9
8
|
import { PointerDevice } from '../Pointer';
|
10
9
|
|
11
10
|
export default class Eraser extends BaseTool {
|
12
11
|
private lastPoint: Point2;
|
13
12
|
private command: Erase|null = null;
|
14
|
-
public kind: ToolType = ToolType.Eraser;
|
15
13
|
private toRemove: AbstractComponent[];
|
16
14
|
|
17
15
|
public constructor(private editor: Editor, description: string) {
|
package/src/tools/PanZoom.ts
CHANGED
@@ -7,7 +7,6 @@ import Pointer, { PointerDevice } from '../Pointer';
|
|
7
7
|
import { EditorEventType, KeyPressEvent, PointerEvt, WheelEvt } from '../types';
|
8
8
|
import { Viewport, ViewportTransform } from '../Viewport';
|
9
9
|
import BaseTool from './BaseTool';
|
10
|
-
import { ToolType } from './ToolController';
|
11
10
|
|
12
11
|
interface PinchData {
|
13
12
|
canvasCenter: Point2;
|
@@ -25,7 +24,6 @@ export enum PanZoomMode {
|
|
25
24
|
}
|
26
25
|
|
27
26
|
export default class PanZoom extends BaseTool {
|
28
|
-
public readonly kind: ToolType.PanZoom = ToolType.PanZoom;
|
29
27
|
private transform: ViewportTransform|null = null;
|
30
28
|
|
31
29
|
private lastAngle: number;
|
package/src/tools/Pen.ts
CHANGED
@@ -5,7 +5,6 @@ import Pointer, { PointerDevice } from '../Pointer';
|
|
5
5
|
import { makeFreehandLineBuilder } from '../components/builders/FreehandLineBuilder';
|
6
6
|
import { EditorEventType, PointerEvt, StrokeDataPoint } from '../types';
|
7
7
|
import BaseTool from './BaseTool';
|
8
|
-
import { ToolType } from './ToolController';
|
9
8
|
import { ComponentBuilder, ComponentBuilderFactory } from '../components/builders/types';
|
10
9
|
|
11
10
|
export interface PenStyle {
|
@@ -14,12 +13,10 @@ export interface PenStyle {
|
|
14
13
|
}
|
15
14
|
|
16
15
|
export default class Pen extends BaseTool {
|
17
|
-
|
18
|
-
|
16
|
+
protected builder: ComponentBuilder|null = null;
|
17
|
+
protected builderFactory: ComponentBuilderFactory = makeFreehandLineBuilder;
|
19
18
|
private lastPoint: StrokeDataPoint|null = null;
|
20
19
|
|
21
|
-
public readonly kind: ToolType = ToolType.Pen;
|
22
|
-
|
23
20
|
public constructor(
|
24
21
|
private editor: Editor,
|
25
22
|
description: string,
|
@@ -32,7 +29,8 @@ export default class Pen extends BaseTool {
|
|
32
29
|
return 1 / this.editor.viewport.getScaleFactor() * this.style.thickness;
|
33
30
|
}
|
34
31
|
|
35
|
-
|
32
|
+
// Converts a `pointer` to a `StrokeDataPoint`.
|
33
|
+
protected toStrokePoint(pointer: Pointer): StrokeDataPoint {
|
36
34
|
const minPressure = 0.3;
|
37
35
|
let pressure = Math.max(pointer.pressure ?? 1.0, minPressure);
|
38
36
|
|
@@ -52,12 +50,14 @@ export default class Pen extends BaseTool {
|
|
52
50
|
};
|
53
51
|
}
|
54
52
|
|
55
|
-
|
53
|
+
// Displays the stroke that is currently being built with the display's `wetInkRenderer`.
|
54
|
+
protected previewStroke() {
|
56
55
|
this.editor.clearWetInk();
|
57
56
|
this.builder?.preview(this.editor.display.getWetInkRenderer());
|
58
57
|
}
|
59
58
|
|
60
|
-
|
59
|
+
// Throws if no stroke builder exists.
|
60
|
+
protected addPointToStroke(point: StrokeDataPoint) {
|
61
61
|
if (!this.builder) {
|
62
62
|
throw new Error('No stroke is currently being generated.');
|
63
63
|
}
|
@@ -78,7 +78,7 @@ export default class Pen extends BaseTool {
|
|
78
78
|
}
|
79
79
|
|
80
80
|
if ((allPointers.length === 1 && !isEraser) || anyDeviceIsStylus) {
|
81
|
-
this.builder = this.builderFactory(this.
|
81
|
+
this.builder = this.builderFactory(this.toStrokePoint(current), this.editor.viewport);
|
82
82
|
return true;
|
83
83
|
}
|
84
84
|
|
@@ -86,7 +86,7 @@ export default class Pen extends BaseTool {
|
|
86
86
|
}
|
87
87
|
|
88
88
|
public onPointerMove({ current }: PointerEvt): void {
|
89
|
-
this.addPointToStroke(this.
|
89
|
+
this.addPointToStroke(this.toStrokePoint(current));
|
90
90
|
}
|
91
91
|
|
92
92
|
public onPointerUp({ current }: PointerEvt): void {
|
@@ -95,7 +95,7 @@ export default class Pen extends BaseTool {
|
|
95
95
|
}
|
96
96
|
|
97
97
|
// onPointerUp events can have zero pressure. Use the last pressure instead.
|
98
|
-
const currentPoint = this.
|
98
|
+
const currentPoint = this.toStrokePoint(current);
|
99
99
|
const strokePoint = {
|
100
100
|
...currentPoint,
|
101
101
|
width: this.lastPoint?.width ?? currentPoint.width,
|
@@ -118,7 +118,7 @@ export default class Pen extends BaseTool {
|
|
118
118
|
this.editor.clearWetInk();
|
119
119
|
}
|
120
120
|
|
121
|
-
public onGestureCancel()
|
121
|
+
public onGestureCancel() {
|
122
122
|
this.editor.clearWetInk();
|
123
123
|
}
|
124
124
|
|
package/src/tools/PipetteTool.ts
CHANGED
@@ -4,13 +4,10 @@ import Color4 from '../Color4';
|
|
4
4
|
import Editor from '../Editor';
|
5
5
|
import { PointerEvt } from '../types';
|
6
6
|
import BaseTool from './BaseTool';
|
7
|
-
import { ToolType } from './ToolController';
|
8
7
|
|
9
8
|
type ColorListener = (color: Color4|null)=>void;
|
10
9
|
|
11
10
|
export default class PipetteTool extends BaseTool {
|
12
|
-
public kind: ToolType = ToolType.Pipette;
|
13
|
-
|
14
11
|
private colorPreviewListener: ColorListener|null = null;
|
15
12
|
private colorSelectListener: ColorListener|null = null;
|
16
13
|
|
@@ -6,11 +6,10 @@ import Path from '../math/Path';
|
|
6
6
|
import { Vec2 } from '../math/Vec2';
|
7
7
|
import { InputEvtType } from '../types';
|
8
8
|
import SelectionTool from './SelectionTool';
|
9
|
-
import { ToolType } from './ToolController';
|
10
9
|
import createEditor from '../testing/createEditor';
|
11
10
|
|
12
11
|
const getSelectionTool = (editor: Editor): SelectionTool => {
|
13
|
-
return editor.toolController.getMatchingTools(
|
12
|
+
return editor.toolController.getMatchingTools(SelectionTool)[0];
|
14
13
|
};
|
15
14
|
|
16
15
|
const createSquareStroke = () => {
|
@@ -1,17 +1,19 @@
|
|
1
|
+
// Allows users to select/transform portions of the `EditorImage`.
|
2
|
+
// With respect to `extend`ing, `SelectionTool` is not stable.
|
3
|
+
// @packageDocumentation
|
4
|
+
|
1
5
|
import Command from '../commands/Command';
|
2
6
|
import Duplicate from '../commands/Duplicate';
|
3
7
|
import Erase from '../commands/Erase';
|
4
8
|
import AbstractComponent from '../components/AbstractComponent';
|
5
9
|
import Editor from '../Editor';
|
6
10
|
import Mat33 from '../math/Mat33';
|
7
|
-
// import Mat33 from "../geometry/Mat33";
|
8
11
|
import Rect2 from '../math/Rect2';
|
9
12
|
import { Point2, Vec2 } from '../math/Vec2';
|
10
13
|
import { EditorLocalization } from '../localization';
|
11
14
|
import { EditorEventType, KeyPressEvent, KeyUpEvent, PointerEvt } from '../types';
|
12
15
|
import Viewport from '../Viewport';
|
13
16
|
import BaseTool from './BaseTool';
|
14
|
-
import { ToolType } from './ToolController';
|
15
17
|
import SerializableCommand from '../commands/SerializableCommand';
|
16
18
|
|
17
19
|
const handleScreenSize = 30;
|
@@ -502,11 +504,11 @@ class Selection {
|
|
502
504
|
}
|
503
505
|
}
|
504
506
|
|
507
|
+
// {@inheritDoc SelectionTool!}
|
505
508
|
export default class SelectionTool extends BaseTool {
|
506
509
|
private handleOverlay: HTMLElement;
|
507
510
|
private prevSelectionBox: Selection|null;
|
508
511
|
private selectionBox: Selection|null;
|
509
|
-
public readonly kind: ToolType = ToolType.Selection;
|
510
512
|
|
511
513
|
public constructor(private editor: Editor, description: string) {
|
512
514
|
super(editor.notifier, description);
|
package/src/tools/TextTool.ts
CHANGED
@@ -8,11 +8,9 @@ import { PointerDevice } from '../Pointer';
|
|
8
8
|
import { EditorEventType, PointerEvt } from '../types';
|
9
9
|
import BaseTool from './BaseTool';
|
10
10
|
import { ToolLocalization } from './localization';
|
11
|
-
import { ToolType } from './ToolController';
|
12
11
|
|
13
12
|
const overlayCssClass = 'textEditorOverlay';
|
14
13
|
export default class TextTool extends BaseTool {
|
15
|
-
public kind: ToolType = ToolType.Text;
|
16
14
|
private textStyle: TextStyle;
|
17
15
|
|
18
16
|
private textEditOverlay: HTMLElement;
|
@@ -12,23 +12,16 @@ import UndoRedoShortcut from './UndoRedoShortcut';
|
|
12
12
|
import TextTool from './TextTool';
|
13
13
|
import PipetteTool from './PipetteTool';
|
14
14
|
|
15
|
-
export enum ToolType {
|
16
|
-
Pen,
|
17
|
-
Selection,
|
18
|
-
Eraser,
|
19
|
-
PanZoom,
|
20
|
-
Text,
|
21
|
-
UndoRedoShortcut,
|
22
|
-
Pipette,
|
23
|
-
Other,
|
24
|
-
}
|
25
|
-
|
26
15
|
export default class ToolController {
|
27
16
|
private tools: BaseTool[];
|
28
|
-
private activeTool: BaseTool|null;
|
17
|
+
private activeTool: BaseTool|null = null;
|
18
|
+
private primaryToolGroup: ToolEnabledGroup;
|
29
19
|
|
20
|
+
/** @internal */
|
30
21
|
public constructor(editor: Editor, localization: ToolLocalization) {
|
31
|
-
const
|
22
|
+
const primaryToolGroup = new ToolEnabledGroup();
|
23
|
+
this.primaryToolGroup = primaryToolGroup;
|
24
|
+
|
32
25
|
const panZoomTool = new PanZoom(editor, PanZoomMode.TwoFingerTouchGestures | PanZoomMode.RightClickDrags, localization.touchPanTool);
|
33
26
|
const keyboardPanZoomTool = new PanZoom(editor, PanZoomMode.Keyboard, localization.keyboardPanZoom);
|
34
27
|
const primaryPenTool = new Pen(editor, localization.penTool(1), { color: Color4.purple, thickness: 16 });
|
@@ -38,7 +31,7 @@ export default class ToolController {
|
|
38
31
|
|
39
32
|
// Three pens
|
40
33
|
primaryPenTool,
|
41
|
-
new Pen(editor, localization.penTool(2), { color: Color4.clay, thickness:
|
34
|
+
new Pen(editor, localization.penTool(2), { color: Color4.clay, thickness: 4 }),
|
42
35
|
|
43
36
|
// Highlighter-like pen with width=64
|
44
37
|
new Pen(editor, localization.penTool(3), { color: Color4.ofRGBA(1, 1, 0, 0.5), thickness: 64 }),
|
@@ -52,7 +45,7 @@ export default class ToolController {
|
|
52
45
|
keyboardPanZoomTool,
|
53
46
|
new UndoRedoShortcut(editor),
|
54
47
|
];
|
55
|
-
primaryTools.forEach(tool => tool.setToolGroup(
|
48
|
+
primaryTools.forEach(tool => tool.setToolGroup(primaryToolGroup));
|
56
49
|
panZoomTool.setEnabled(true);
|
57
50
|
primaryPenTool.setEnabled(true);
|
58
51
|
|
@@ -70,6 +63,30 @@ export default class ToolController {
|
|
70
63
|
this.activeTool = null;
|
71
64
|
}
|
72
65
|
|
66
|
+
// Replaces the current set of tools with `tools`. This should only be done before
|
67
|
+
// the creation of the app's toolbar (if using `HTMLToolbar`).
|
68
|
+
public setTools(tools: BaseTool[], primaryToolGroup?: ToolEnabledGroup) {
|
69
|
+
this.tools = tools;
|
70
|
+
this.primaryToolGroup = primaryToolGroup ?? new ToolEnabledGroup();
|
71
|
+
}
|
72
|
+
|
73
|
+
// Add a tool that acts like one of the primary tools (only one primary tool can be enabled at a time).
|
74
|
+
// This should be called before creating the app's toolbar.
|
75
|
+
public addPrimaryTool(tool: BaseTool) {
|
76
|
+
tool.setToolGroup(this.primaryToolGroup);
|
77
|
+
if (tool.isEnabled()) {
|
78
|
+
this.primaryToolGroup.notifyEnabled(tool);
|
79
|
+
}
|
80
|
+
|
81
|
+
this.addTool(tool);
|
82
|
+
}
|
83
|
+
|
84
|
+
// Add a tool to the end of this' tool list (the added tool receives events after tools already added to this).
|
85
|
+
// This should be called before creating the app's toolbar.
|
86
|
+
public addTool(tool: BaseTool) {
|
87
|
+
this.tools.push(tool);
|
88
|
+
}
|
89
|
+
|
73
90
|
// Returns true if the event was handled
|
74
91
|
public dispatchInputEvent(event: InputEvt): boolean {
|
75
92
|
let handled = false;
|
@@ -132,8 +149,8 @@ export default class ToolController {
|
|
132
149
|
return handled;
|
133
150
|
}
|
134
151
|
|
135
|
-
public getMatchingTools(
|
136
|
-
return this.tools.filter(tool => tool
|
152
|
+
public getMatchingTools<Type extends BaseTool>(type: new (...args: any[])=>Type): Type[] {
|
153
|
+
return this.tools.filter(tool => tool instanceof type) as Type[];
|
137
154
|
}
|
138
155
|
}
|
139
156
|
|
@@ -1,6 +1,6 @@
|
|
1
1
|
import BaseTool from './BaseTool';
|
2
2
|
|
3
|
-
// Connects a group of tools -- at most one tool in the group
|
3
|
+
// Connects a group of tools -- at most one tool in the group can be enabled.
|
4
4
|
export default class ToolEnabledGroup {
|
5
5
|
private activeTool: BaseTool|null;
|
6
6
|
public constructor() { }
|
@@ -1,12 +1,12 @@
|
|
1
|
+
// Handles ctrl+Z, ctrl+Shift+Z keyboard shortcuts.
|
2
|
+
// @packageDocumentation
|
3
|
+
|
1
4
|
import Editor from '../Editor';
|
2
5
|
import { KeyPressEvent } from '../types';
|
3
6
|
import BaseTool from './BaseTool';
|
4
|
-
import { ToolType } from './ToolController';
|
5
|
-
|
6
7
|
|
8
|
+
// {@inheritDoc UndoRedoShortcut!}
|
7
9
|
export default class UndoRedoShortcut extends BaseTool {
|
8
|
-
public kind: ToolType.UndoRedoShortcut = ToolType.UndoRedoShortcut;
|
9
|
-
|
10
10
|
public constructor(private editor: Editor) {
|
11
11
|
super(editor.notifier, editor.localization.undoRedoTool);
|
12
12
|
}
|
package/src/tools/lib.ts
ADDED
@@ -0,0 +1,17 @@
|
|
1
|
+
|
2
|
+
/**
|
3
|
+
* @packageDocumentation
|
4
|
+
*/
|
5
|
+
|
6
|
+
export { default as BaseTool } from './BaseTool';
|
7
|
+
export { default as ToolController } from './ToolController';
|
8
|
+
export { default as ToolEnabledGroup } from './ToolEnabledGroup';
|
9
|
+
|
10
|
+
export { default as UndoRedoShortcut } from './UndoRedoShortcut';
|
11
|
+
export { default as PanZoomTool, PanZoomMode } from './PanZoom';
|
12
|
+
|
13
|
+
export { default as PenTool, PenStyle } from './Pen';
|
14
|
+
export { default as TextTool } from './TextTool';
|
15
|
+
export { default as SelectionTool } from './SelectionTool';
|
16
|
+
export { default as EraserTool } from './Eraser';
|
17
|
+
|