blob: b8d428d319dd5fe9e3ce5e11443f55f74dfd25c1 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
|
import { observer } from "mobx-react";
import { observable, trace } from "mobx";
import { InkingControl } from "./InkingControl";
import React = require("react");
import { InkTool } from "../../new_fields/InkField";
import "./InkingStroke.scss";
interface StrokeProps {
offsetX: number;
offsetY: number;
id: string;
count: number;
line: Array<{ x: number, y: number }>;
color: string;
width: string;
tool: InkTool;
deleteCallback: (index: string) => void;
}
@observer
export class InkingStroke extends React.Component<StrokeProps> {
@observable private _strokeTool: InkTool = this.props.tool;
@observable private _strokeColor: string = this.props.color;
@observable private _strokeWidth: string = this.props.width;
deleteStroke = (e: React.PointerEvent): void => {
if (InkingControl.Instance.selectedTool === InkTool.Eraser && e.buttons === 1) {
this.props.deleteCallback(this.props.id);
e.stopPropagation();
e.preventDefault();
}
}
parseData = (line: Array<{ x: number, y: number }>): string => {
return !line.length ? "" : "M " + line.map(p => (p.x + this.props.offsetX) + " " + (p.y + this.props.offsetY)).join(" L ");
}
createStyle() {
switch (this._strokeTool) {
// add more tool styles here
default:
return {
fill: "none",
stroke: this._strokeColor,
strokeWidth: this._strokeWidth + "px",
};
}
}
render() {
let pathStyle = this.createStyle();
let pathData = this.parseData(this.props.line);
let pathlength = this.props.count; // bcz: this is needed to force reactions to the line's data changes
let marker = this.props.tool === InkTool.Highlighter ? "-marker" : "";
let pointerEvents: any = InkingControl.Instance.selectedTool === InkTool.Eraser ? "all" : "none";
return (
<path className={`inkingStroke${marker}`} d={pathData} style={{ ...pathStyle, pointerEvents: pointerEvents }} strokeLinejoin="round" strokeLinecap="round"
onPointerOver={this.deleteStroke} onPointerDown={this.deleteStroke} />
);
}
}
|