-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcanvas.js
88 lines (71 loc) · 2.21 KB
/
canvas.js
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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
import { getPercentageCoords, getCanvasCoords } from "../utils/converters";
export default {
mounted() {
const canvas = document.getElementById("c");
const ctx = canvas.getContext("2d");
const initializeContext = () => {
ctx.lineWidth = 2;
ctx.lineCap = "round";
ctx.lineJoin = "round";
ctx.shadowBlur = 1;
ctx.shadowColor = "rgba(0, 0, 0, 0.5)";
};
initializeContext();
let isDrawing = false;
const userId = this.el.dataset.userName;
let relStart = null;
const color = this.el.dataset.userColor;
const editLog = [];
const drawSegment = ({ relStart, relStop, color }) => {
const absStart = getCanvasCoords(canvas, relStart);
const absStop = getCanvasCoords(canvas, relStop);
ctx.beginPath();
ctx.strokeStyle = color;
ctx.moveTo(absStart.x, absStart.y);
ctx.lineTo(absStop.x, absStop.y);
ctx.stroke();
};
const resizeCanvas = () => {
canvas.width = window.innerWidth;
canvas.height = window.innerHeight;
initializeContext();
editLog.forEach(drawSegment);
};
resizeCanvas();
const handleNewDrawSegment = (segment) => {
drawSegment(segment);
editLog.push(segment);
};
const handlePointerDown = (e) => {
isDrawing = true;
relStart = getPercentageCoords(canvas, { x: e.clientX, y: e.clientY });
};
const handlePointerMove = (e) => {
const relStop = getPercentageCoords(canvas, {
x: e.clientX,
y: e.clientY,
});
if (isDrawing) {
const segment = { relStart, relStop, color };
drawSegment(segment);
editLog.push(segment);
this.pushEvent("draw-segment", {
relStart,
relStop,
color,
userId,
});
relStart = relStop;
}
this.pushEvent("mouse-move", relStop);
};
const handlePointerUp = () => {
isDrawing = false;
this.pushEvent("mouse-up");
};
this.handleEvent("new-draw-segment", handleNewDrawSegment);
canvas.addEventListener("pointerdown", handlePointerDown);
canvas.addEventListener("pointermove", handlePointerMove);
canvas.addEventListener("pointerup", handlePointerUp);
},
};