2020-01-03 00:03:48 +05:00
|
|
|
|
import React from "react";
|
|
|
|
|
import ReactDOM from "react-dom";
|
|
|
|
|
import rough from "roughjs/bin/wrappers/rough";
|
|
|
|
|
import { RoughCanvas } from "roughjs/bin/canvas";
|
2020-01-04 00:58:20 -03:00
|
|
|
|
import { FontAwesomeIcon } from "@fortawesome/react-fontawesome";
|
|
|
|
|
import {
|
|
|
|
|
faMousePointer,
|
|
|
|
|
faSquare,
|
|
|
|
|
faCircle,
|
|
|
|
|
faLongArrowAltRight,
|
|
|
|
|
faFont
|
|
|
|
|
} from "@fortawesome/free-solid-svg-icons";
|
2020-01-03 00:03:48 +05:00
|
|
|
|
|
2020-01-03 21:46:49 -08:00
|
|
|
|
import { moveOneLeft, moveAllLeft, moveOneRight, moveAllRight } from "./zindex";
|
2020-01-03 21:03:25 -08:00
|
|
|
|
|
2020-01-04 19:14:12 +01:00
|
|
|
|
import "./styles.scss";
|
2020-01-03 00:03:48 +05:00
|
|
|
|
|
2020-01-03 20:17:05 +01:00
|
|
|
|
type ExcalidrawElement = ReturnType<typeof newElement>;
|
|
|
|
|
type ExcalidrawTextElement = ExcalidrawElement & {
|
2020-01-03 00:03:48 +05:00
|
|
|
|
type: "text";
|
|
|
|
|
font: string;
|
|
|
|
|
text: string;
|
2020-01-02 12:49:06 -08:00
|
|
|
|
actualBoundingBoxAscent: number;
|
2020-01-03 00:03:48 +05:00
|
|
|
|
};
|
|
|
|
|
|
2020-01-03 20:17:05 +01:00
|
|
|
|
const LOCAL_STORAGE_KEY = "excalidraw";
|
|
|
|
|
const LOCAL_STORAGE_KEY_STATE = "excalidraw-state";
|
2020-01-03 14:12:37 -03:00
|
|
|
|
|
2020-01-04 10:48:23 -08:00
|
|
|
|
const elements = Array.of<ExcalidrawElement>();
|
2020-01-03 00:03:48 +05:00
|
|
|
|
|
2020-01-03 12:33:52 -08:00
|
|
|
|
// https://stackoverflow.com/questions/521295/seeding-the-random-number-generator-in-javascript/47593316#47593316
|
|
|
|
|
const LCG = (seed: number) => () =>
|
|
|
|
|
((2 ** 31 - 1) & (seed = Math.imul(48271, seed))) / 2 ** 31;
|
|
|
|
|
|
2020-01-03 18:29:46 -08:00
|
|
|
|
function randomSeed() {
|
|
|
|
|
return Math.floor(Math.random() * 2 ** 31);
|
|
|
|
|
}
|
|
|
|
|
|
2020-01-03 12:33:52 -08:00
|
|
|
|
// Unfortunately, roughjs doesn't support a seed attribute (https://github.com/pshihn/rough/issues/27).
|
|
|
|
|
// We can achieve the same result by overriding the Math.random function with a
|
|
|
|
|
// pseudo random generator that supports a random seed and swapping it back after.
|
|
|
|
|
function withCustomMathRandom<T>(seed: number, cb: () => T): T {
|
|
|
|
|
const random = Math.random;
|
|
|
|
|
Math.random = LCG(seed);
|
|
|
|
|
const result = cb();
|
|
|
|
|
Math.random = random;
|
|
|
|
|
return result;
|
|
|
|
|
}
|
|
|
|
|
|
2020-01-02 13:47:50 -08:00
|
|
|
|
// https://stackoverflow.com/a/6853926/232122
|
|
|
|
|
function distanceBetweenPointAndSegment(
|
|
|
|
|
x: number,
|
|
|
|
|
y: number,
|
|
|
|
|
x1: number,
|
|
|
|
|
y1: number,
|
|
|
|
|
x2: number,
|
|
|
|
|
y2: number
|
|
|
|
|
) {
|
|
|
|
|
const A = x - x1;
|
|
|
|
|
const B = y - y1;
|
|
|
|
|
const C = x2 - x1;
|
|
|
|
|
const D = y2 - y1;
|
|
|
|
|
|
|
|
|
|
const dot = A * C + B * D;
|
|
|
|
|
const lenSquare = C * C + D * D;
|
|
|
|
|
let param = -1;
|
|
|
|
|
if (lenSquare !== 0) {
|
|
|
|
|
// in case of 0 length line
|
|
|
|
|
param = dot / lenSquare;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
let xx, yy;
|
|
|
|
|
if (param < 0) {
|
|
|
|
|
xx = x1;
|
|
|
|
|
yy = y1;
|
|
|
|
|
} else if (param > 1) {
|
|
|
|
|
xx = x2;
|
|
|
|
|
yy = y2;
|
|
|
|
|
} else {
|
|
|
|
|
xx = x1 + param * C;
|
|
|
|
|
yy = y1 + param * D;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
const dx = x - xx;
|
|
|
|
|
const dy = y - yy;
|
2020-01-04 00:20:26 +01:00
|
|
|
|
return Math.hypot(dx, dy);
|
2020-01-02 13:47:50 -08:00
|
|
|
|
}
|
|
|
|
|
|
2020-01-03 20:17:05 +01:00
|
|
|
|
function hitTest(element: ExcalidrawElement, x: number, y: number): boolean {
|
2020-01-02 13:47:50 -08:00
|
|
|
|
// For shapes that are composed of lines, we only enable point-selection when the distance
|
|
|
|
|
// of the click is less than x pixels of any of the lines that the shape is composed of
|
|
|
|
|
const lineThreshold = 10;
|
|
|
|
|
|
2020-01-03 18:16:16 -08:00
|
|
|
|
if (element.type === "ellipse") {
|
|
|
|
|
// https://stackoverflow.com/a/46007540/232122
|
|
|
|
|
const px = Math.abs(x - element.x - element.width / 2);
|
|
|
|
|
const py = Math.abs(y - element.y - element.height / 2);
|
|
|
|
|
|
|
|
|
|
let tx = 0.707;
|
|
|
|
|
let ty = 0.707;
|
|
|
|
|
|
|
|
|
|
const a = element.width / 2;
|
|
|
|
|
const b = element.height / 2;
|
|
|
|
|
|
|
|
|
|
[0, 1, 2, 3].forEach(x => {
|
|
|
|
|
const xx = a * tx;
|
|
|
|
|
const yy = b * ty;
|
|
|
|
|
|
|
|
|
|
const ex = ((a * a - b * b) * tx ** 3) / a;
|
|
|
|
|
const ey = ((b * b - a * a) * ty ** 3) / b;
|
|
|
|
|
|
|
|
|
|
const rx = xx - ex;
|
|
|
|
|
const ry = yy - ey;
|
|
|
|
|
|
|
|
|
|
const qx = px - ex;
|
|
|
|
|
const qy = py - ey;
|
|
|
|
|
|
|
|
|
|
const r = Math.hypot(ry, rx);
|
|
|
|
|
const q = Math.hypot(qy, qx);
|
|
|
|
|
|
|
|
|
|
tx = Math.min(1, Math.max(0, ((qx * r) / q + ex) / a));
|
|
|
|
|
ty = Math.min(1, Math.max(0, ((qy * r) / q + ey) / b));
|
|
|
|
|
const t = Math.hypot(ty, tx);
|
|
|
|
|
tx /= t;
|
|
|
|
|
ty /= t;
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
return Math.hypot(a * tx - px, b * ty - py) < lineThreshold;
|
|
|
|
|
} else if (element.type === "rectangle") {
|
2020-01-02 13:47:50 -08:00
|
|
|
|
const x1 = getElementAbsoluteX1(element);
|
|
|
|
|
const x2 = getElementAbsoluteX2(element);
|
|
|
|
|
const y1 = getElementAbsoluteY1(element);
|
|
|
|
|
const y2 = getElementAbsoluteY2(element);
|
|
|
|
|
|
|
|
|
|
// (x1, y1) --A-- (x2, y1)
|
|
|
|
|
// |D |B
|
|
|
|
|
// (x1, y2) --C-- (x2, y2)
|
|
|
|
|
return (
|
|
|
|
|
distanceBetweenPointAndSegment(x, y, x1, y1, x2, y1) < lineThreshold || // A
|
|
|
|
|
distanceBetweenPointAndSegment(x, y, x2, y1, x2, y2) < lineThreshold || // B
|
|
|
|
|
distanceBetweenPointAndSegment(x, y, x2, y2, x1, y2) < lineThreshold || // C
|
|
|
|
|
distanceBetweenPointAndSegment(x, y, x1, y2, x1, y1) < lineThreshold // D
|
|
|
|
|
);
|
|
|
|
|
} else if (element.type === "arrow") {
|
|
|
|
|
let [x1, y1, x2, y2, x3, y3, x4, y4] = getArrowPoints(element);
|
|
|
|
|
// The computation is done at the origin, we need to add a translation
|
|
|
|
|
x -= element.x;
|
|
|
|
|
y -= element.y;
|
|
|
|
|
|
|
|
|
|
return (
|
|
|
|
|
// \
|
|
|
|
|
distanceBetweenPointAndSegment(x, y, x3, y3, x2, y2) < lineThreshold ||
|
|
|
|
|
// -----
|
|
|
|
|
distanceBetweenPointAndSegment(x, y, x1, y1, x2, y2) < lineThreshold ||
|
|
|
|
|
// /
|
|
|
|
|
distanceBetweenPointAndSegment(x, y, x4, y4, x2, y2) < lineThreshold
|
|
|
|
|
);
|
|
|
|
|
} else if (element.type === "text") {
|
2020-01-03 00:03:48 +05:00
|
|
|
|
const x1 = getElementAbsoluteX1(element);
|
|
|
|
|
const x2 = getElementAbsoluteX2(element);
|
|
|
|
|
const y1 = getElementAbsoluteY1(element);
|
|
|
|
|
const y2 = getElementAbsoluteY2(element);
|
|
|
|
|
|
|
|
|
|
return x >= x1 && x <= x2 && y >= y1 && y <= y2;
|
2020-01-04 01:08:34 +02:00
|
|
|
|
} else if (element.type === "selection") {
|
|
|
|
|
console.warn("This should not happen, we need to investigate why it does.");
|
|
|
|
|
return false;
|
2020-01-02 13:47:50 -08:00
|
|
|
|
} else {
|
|
|
|
|
throw new Error("Unimplemented type " + element.type);
|
|
|
|
|
}
|
2020-01-03 00:03:48 +05:00
|
|
|
|
}
|
|
|
|
|
|
2020-01-04 15:56:11 -03:00
|
|
|
|
function resizeTest(
|
|
|
|
|
element: ExcalidrawElement,
|
|
|
|
|
x: number,
|
|
|
|
|
y: number,
|
|
|
|
|
sceneState: SceneState
|
|
|
|
|
): string | false {
|
|
|
|
|
if (element.type === "text" || element.type === "arrow") return false;
|
|
|
|
|
|
|
|
|
|
const x1 = getElementAbsoluteX1(element);
|
|
|
|
|
const x2 = getElementAbsoluteX2(element);
|
|
|
|
|
const y1 = getElementAbsoluteY1(element);
|
|
|
|
|
const y2 = getElementAbsoluteY2(element);
|
|
|
|
|
|
|
|
|
|
const handlers = handlerRectangles(x1, x2, y1, y2, sceneState);
|
|
|
|
|
|
|
|
|
|
const filter = Object.keys(handlers).filter(key => {
|
|
|
|
|
const handler = handlers[key];
|
|
|
|
|
|
|
|
|
|
return (
|
|
|
|
|
x + sceneState.scrollX >= handler[0] &&
|
|
|
|
|
x + sceneState.scrollX <= handler[0] + handler[2] &&
|
|
|
|
|
y + sceneState.scrollY >= handler[1] &&
|
|
|
|
|
y + sceneState.scrollY <= handler[1] + handler[3]
|
|
|
|
|
);
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
if (filter.length > 0) {
|
|
|
|
|
return filter[0];
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
|
2020-01-03 15:25:52 +01:00
|
|
|
|
function newElement(
|
|
|
|
|
type: string,
|
|
|
|
|
x: number,
|
|
|
|
|
y: number,
|
|
|
|
|
strokeColor: string,
|
|
|
|
|
backgroundColor: string,
|
|
|
|
|
width = 0,
|
|
|
|
|
height = 0
|
|
|
|
|
) {
|
2020-01-03 00:03:48 +05:00
|
|
|
|
const element = {
|
|
|
|
|
type: type,
|
|
|
|
|
x: x,
|
|
|
|
|
y: y,
|
|
|
|
|
width: width,
|
|
|
|
|
height: height,
|
|
|
|
|
isSelected: false,
|
2020-01-03 15:25:52 +01:00
|
|
|
|
strokeColor: strokeColor,
|
|
|
|
|
backgroundColor: backgroundColor,
|
2020-01-03 18:29:46 -08:00
|
|
|
|
seed: randomSeed(),
|
2020-01-04 01:27:25 +05:00
|
|
|
|
draw(
|
|
|
|
|
rc: RoughCanvas,
|
|
|
|
|
context: CanvasRenderingContext2D,
|
|
|
|
|
sceneState: SceneState
|
|
|
|
|
) {}
|
2020-01-03 00:03:48 +05:00
|
|
|
|
};
|
|
|
|
|
return element;
|
|
|
|
|
}
|
|
|
|
|
|
2020-01-04 01:27:25 +05:00
|
|
|
|
type SceneState = {
|
|
|
|
|
scrollX: number;
|
|
|
|
|
scrollY: number;
|
|
|
|
|
// null indicates transparent bg
|
|
|
|
|
viewBackgroundColor: string | null;
|
|
|
|
|
};
|
|
|
|
|
|
2020-01-04 02:37:15 +05:00
|
|
|
|
const SCROLLBAR_WIDTH = 6;
|
|
|
|
|
const SCROLLBAR_MARGIN = 4;
|
|
|
|
|
const SCROLLBAR_COLOR = "rgba(0,0,0,0.3)";
|
2020-01-04 14:05:45 -05:00
|
|
|
|
const CANVAS_WINDOW_OFFSET_LEFT = 250;
|
|
|
|
|
const CANVAS_WINDOW_OFFSET_TOP = 0;
|
2020-01-04 02:37:15 +05:00
|
|
|
|
|
2020-01-04 03:03:08 +05:00
|
|
|
|
function getScrollbars(
|
|
|
|
|
canvasWidth: number,
|
|
|
|
|
canvasHeight: number,
|
|
|
|
|
scrollX: number,
|
|
|
|
|
scrollY: number
|
|
|
|
|
) {
|
|
|
|
|
// horizontal scrollbar
|
|
|
|
|
const sceneWidth = canvasWidth + Math.abs(scrollX);
|
|
|
|
|
const scrollBarWidth = (canvasWidth * canvasWidth) / sceneWidth;
|
|
|
|
|
const scrollBarX = scrollX > 0 ? 0 : canvasWidth - scrollBarWidth;
|
|
|
|
|
const horizontalScrollBar = {
|
|
|
|
|
x: scrollBarX + SCROLLBAR_MARGIN,
|
|
|
|
|
y: canvasHeight - SCROLLBAR_WIDTH - SCROLLBAR_MARGIN,
|
|
|
|
|
width: scrollBarWidth - SCROLLBAR_MARGIN * 2,
|
|
|
|
|
height: SCROLLBAR_WIDTH
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
// vertical scrollbar
|
|
|
|
|
const sceneHeight = canvasHeight + Math.abs(scrollY);
|
|
|
|
|
const scrollBarHeight = (canvasHeight * canvasHeight) / sceneHeight;
|
|
|
|
|
const scrollBarY = scrollY > 0 ? 0 : canvasHeight - scrollBarHeight;
|
|
|
|
|
const verticalScrollBar = {
|
|
|
|
|
x: canvasWidth - SCROLLBAR_WIDTH - SCROLLBAR_MARGIN,
|
|
|
|
|
y: scrollBarY + SCROLLBAR_MARGIN,
|
|
|
|
|
width: SCROLLBAR_WIDTH,
|
|
|
|
|
height: scrollBarHeight - SCROLLBAR_WIDTH * 2
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
return {
|
|
|
|
|
horizontal: horizontalScrollBar,
|
|
|
|
|
vertical: verticalScrollBar
|
|
|
|
|
};
|
|
|
|
|
}
|
|
|
|
|
|
2020-01-04 15:56:11 -03:00
|
|
|
|
function handlerRectangles(
|
|
|
|
|
elementX1: number,
|
|
|
|
|
elementX2: number,
|
|
|
|
|
elementY1: number,
|
|
|
|
|
elementY2: number,
|
|
|
|
|
sceneState: SceneState
|
|
|
|
|
) {
|
|
|
|
|
const margin = 4;
|
|
|
|
|
const minimumSize = 40;
|
|
|
|
|
const handlers: { [handler: string]: number[] } = {};
|
|
|
|
|
|
|
|
|
|
if (elementX2 - elementX1 > minimumSize) {
|
|
|
|
|
handlers["n"] = [
|
|
|
|
|
elementX1 + (elementX2 - elementX1) / 2 + sceneState.scrollX - 4,
|
|
|
|
|
elementY1 - margin + sceneState.scrollY - 8,
|
|
|
|
|
8,
|
|
|
|
|
8
|
|
|
|
|
];
|
|
|
|
|
|
|
|
|
|
handlers["s"] = [
|
|
|
|
|
elementX1 + (elementX2 - elementX1) / 2 + sceneState.scrollX - 4,
|
|
|
|
|
elementY2 - margin + sceneState.scrollY + 8,
|
|
|
|
|
8,
|
|
|
|
|
8
|
|
|
|
|
];
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (elementY2 - elementY1 > minimumSize) {
|
|
|
|
|
handlers["w"] = [
|
|
|
|
|
elementX1 - margin + sceneState.scrollX - 8,
|
|
|
|
|
elementY1 + (elementY2 - elementY1) / 2 + sceneState.scrollY - 4,
|
|
|
|
|
8,
|
|
|
|
|
8
|
|
|
|
|
];
|
|
|
|
|
|
|
|
|
|
handlers["e"] = [
|
|
|
|
|
elementX2 - margin + sceneState.scrollX + 8,
|
|
|
|
|
elementY1 + (elementY2 - elementY1) / 2 + sceneState.scrollY - 4,
|
|
|
|
|
8,
|
|
|
|
|
8
|
|
|
|
|
];
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
handlers["nw"] = [
|
|
|
|
|
elementX1 - margin + sceneState.scrollX - 8,
|
|
|
|
|
elementY1 - margin + sceneState.scrollY - 8,
|
|
|
|
|
8,
|
|
|
|
|
8
|
|
|
|
|
]; // nw
|
|
|
|
|
handlers["ne"] = [
|
|
|
|
|
elementX2 - margin + sceneState.scrollX + 8,
|
|
|
|
|
elementY1 - margin + sceneState.scrollY - 8,
|
|
|
|
|
8,
|
|
|
|
|
8
|
|
|
|
|
]; // ne
|
|
|
|
|
handlers["sw"] = [
|
|
|
|
|
elementX1 - margin + sceneState.scrollX - 8,
|
|
|
|
|
elementY2 - margin + sceneState.scrollY + 8,
|
|
|
|
|
8,
|
|
|
|
|
8
|
|
|
|
|
]; // sw
|
|
|
|
|
handlers["se"] = [
|
|
|
|
|
elementX2 - margin + sceneState.scrollX + 8,
|
|
|
|
|
elementY2 - margin + sceneState.scrollY + 8,
|
|
|
|
|
8,
|
|
|
|
|
8
|
|
|
|
|
]; // se
|
|
|
|
|
|
|
|
|
|
return handlers;
|
|
|
|
|
}
|
|
|
|
|
|
2020-01-03 14:18:26 +01:00
|
|
|
|
function renderScene(
|
|
|
|
|
rc: RoughCanvas,
|
2020-01-04 21:46:50 +01:00
|
|
|
|
canvas: HTMLCanvasElement,
|
|
|
|
|
sceneState: SceneState,
|
|
|
|
|
// extra options, currently passed by export helper
|
|
|
|
|
{
|
|
|
|
|
offsetX,
|
|
|
|
|
offsetY,
|
|
|
|
|
renderScrollbars = true,
|
|
|
|
|
renderSelection = true
|
|
|
|
|
}: {
|
|
|
|
|
offsetX?: number;
|
|
|
|
|
offsetY?: number;
|
|
|
|
|
renderScrollbars?: boolean;
|
|
|
|
|
renderSelection?: boolean;
|
|
|
|
|
} = {}
|
2020-01-03 14:18:26 +01:00
|
|
|
|
) {
|
2020-01-04 21:46:50 +01:00
|
|
|
|
if (!canvas) return;
|
|
|
|
|
const context = canvas.getContext("2d")!;
|
2020-01-03 14:12:37 -03:00
|
|
|
|
|
2020-01-03 14:18:26 +01:00
|
|
|
|
const fillStyle = context.fillStyle;
|
2020-01-04 01:27:25 +05:00
|
|
|
|
if (typeof sceneState.viewBackgroundColor === "string") {
|
|
|
|
|
context.fillStyle = sceneState.viewBackgroundColor;
|
2020-01-03 14:18:26 +01:00
|
|
|
|
context.fillRect(-0.5, -0.5, canvas.width, canvas.height);
|
|
|
|
|
} else {
|
|
|
|
|
context.clearRect(-0.5, -0.5, canvas.width, canvas.height);
|
|
|
|
|
}
|
|
|
|
|
context.fillStyle = fillStyle;
|
|
|
|
|
|
2020-01-04 15:56:11 -03:00
|
|
|
|
const selectedIndices = getSelectedIndices();
|
|
|
|
|
|
2020-01-04 21:46:50 +01:00
|
|
|
|
sceneState = {
|
|
|
|
|
...sceneState,
|
|
|
|
|
scrollX: typeof offsetX === "number" ? offsetX : sceneState.scrollX,
|
|
|
|
|
scrollY: typeof offsetY === "number" ? offsetY : sceneState.scrollY
|
|
|
|
|
};
|
|
|
|
|
|
2020-01-03 14:18:26 +01:00
|
|
|
|
elements.forEach(element => {
|
2020-01-04 01:27:25 +05:00
|
|
|
|
element.draw(rc, context, sceneState);
|
2020-01-04 21:46:50 +01:00
|
|
|
|
if (renderSelection && element.isSelected) {
|
2020-01-03 14:18:26 +01:00
|
|
|
|
const margin = 4;
|
|
|
|
|
|
|
|
|
|
const elementX1 = getElementAbsoluteX1(element);
|
|
|
|
|
const elementX2 = getElementAbsoluteX2(element);
|
|
|
|
|
const elementY1 = getElementAbsoluteY1(element);
|
|
|
|
|
const elementY2 = getElementAbsoluteY2(element);
|
|
|
|
|
const lineDash = context.getLineDash();
|
|
|
|
|
context.setLineDash([8, 4]);
|
|
|
|
|
context.strokeRect(
|
2020-01-04 01:27:25 +05:00
|
|
|
|
elementX1 - margin + sceneState.scrollX,
|
|
|
|
|
elementY1 - margin + sceneState.scrollY,
|
2020-01-03 14:18:26 +01:00
|
|
|
|
elementX2 - elementX1 + margin * 2,
|
|
|
|
|
elementY2 - elementY1 + margin * 2
|
|
|
|
|
);
|
|
|
|
|
context.setLineDash(lineDash);
|
2020-01-04 15:56:11 -03:00
|
|
|
|
|
|
|
|
|
if (
|
|
|
|
|
element.type !== "text" &&
|
|
|
|
|
element.type !== "arrow" &&
|
|
|
|
|
selectedIndices.length === 1
|
|
|
|
|
) {
|
|
|
|
|
const handlers = handlerRectangles(
|
|
|
|
|
elementX1,
|
|
|
|
|
elementX2,
|
|
|
|
|
elementY1,
|
|
|
|
|
elementY2,
|
|
|
|
|
sceneState
|
|
|
|
|
);
|
|
|
|
|
Object.values(handlers).forEach(handler => {
|
|
|
|
|
context.strokeRect(handler[0], handler[1], handler[2], handler[3]);
|
|
|
|
|
});
|
|
|
|
|
}
|
2020-01-03 14:18:26 +01:00
|
|
|
|
}
|
|
|
|
|
});
|
2020-01-04 02:37:15 +05:00
|
|
|
|
|
2020-01-04 21:46:50 +01:00
|
|
|
|
if (renderScrollbars) {
|
|
|
|
|
const scrollBars = getScrollbars(
|
|
|
|
|
context.canvas.width,
|
|
|
|
|
context.canvas.height,
|
|
|
|
|
sceneState.scrollX,
|
|
|
|
|
sceneState.scrollY
|
|
|
|
|
);
|
2020-01-04 03:03:08 +05:00
|
|
|
|
|
2020-01-04 21:46:50 +01:00
|
|
|
|
context.fillStyle = SCROLLBAR_COLOR;
|
|
|
|
|
context.fillRect(
|
|
|
|
|
scrollBars.horizontal.x,
|
|
|
|
|
scrollBars.horizontal.y,
|
|
|
|
|
scrollBars.horizontal.width,
|
|
|
|
|
scrollBars.horizontal.height
|
|
|
|
|
);
|
|
|
|
|
context.fillRect(
|
|
|
|
|
scrollBars.vertical.x,
|
|
|
|
|
scrollBars.vertical.y,
|
|
|
|
|
scrollBars.vertical.width,
|
|
|
|
|
scrollBars.vertical.height
|
|
|
|
|
);
|
|
|
|
|
context.fillStyle = fillStyle;
|
|
|
|
|
}
|
2020-01-03 14:18:26 +01:00
|
|
|
|
}
|
|
|
|
|
|
2020-01-03 00:03:48 +05:00
|
|
|
|
function exportAsPNG({
|
|
|
|
|
exportBackground,
|
2020-01-03 02:54:08 +01:00
|
|
|
|
exportPadding = 10,
|
2020-01-03 15:25:52 +01:00
|
|
|
|
viewBackgroundColor
|
2020-01-03 00:03:48 +05:00
|
|
|
|
}: {
|
|
|
|
|
exportBackground: boolean;
|
|
|
|
|
exportPadding?: number;
|
2020-01-03 15:25:52 +01:00
|
|
|
|
viewBackgroundColor: string;
|
2020-01-04 21:46:50 +01:00
|
|
|
|
scrollX: number;
|
|
|
|
|
scrollY: number;
|
2020-01-03 00:03:48 +05:00
|
|
|
|
}) {
|
|
|
|
|
if (!elements.length) return window.alert("Cannot export empty canvas.");
|
|
|
|
|
|
2020-01-04 21:46:50 +01:00
|
|
|
|
// calculate smallest area to fit the contents in
|
2020-01-03 00:03:48 +05:00
|
|
|
|
|
2020-01-04 21:46:50 +01:00
|
|
|
|
let subCanvasX1 = Infinity;
|
|
|
|
|
let subCanvasX2 = 0;
|
|
|
|
|
let subCanvasY1 = Infinity;
|
|
|
|
|
let subCanvasY2 = 0;
|
2020-01-03 00:03:48 +05:00
|
|
|
|
|
2020-01-04 21:46:50 +01:00
|
|
|
|
elements.forEach(element => {
|
|
|
|
|
subCanvasX1 = Math.min(subCanvasX1, getElementAbsoluteX1(element));
|
|
|
|
|
subCanvasX2 = Math.max(subCanvasX2, getElementAbsoluteX2(element));
|
|
|
|
|
subCanvasY1 = Math.min(subCanvasY1, getElementAbsoluteY1(element));
|
|
|
|
|
subCanvasY2 = Math.max(subCanvasY2, getElementAbsoluteY2(element));
|
|
|
|
|
});
|
2020-01-02 19:47:32 -08:00
|
|
|
|
|
2020-01-04 21:46:50 +01:00
|
|
|
|
function distance(x: number, y: number) {
|
|
|
|
|
return Math.abs(x > y ? x - y : y - x);
|
|
|
|
|
}
|
2020-01-02 19:47:32 -08:00
|
|
|
|
|
2020-01-04 21:46:50 +01:00
|
|
|
|
const tempCanvas = document.createElement("canvas");
|
|
|
|
|
tempCanvas.style.display = "none";
|
|
|
|
|
document.body.appendChild(tempCanvas);
|
|
|
|
|
tempCanvas.width = distance(subCanvasX1, subCanvasX2) + exportPadding * 2;
|
|
|
|
|
tempCanvas.height = distance(subCanvasY1, subCanvasY2) + exportPadding * 2;
|
|
|
|
|
|
|
|
|
|
renderScene(
|
|
|
|
|
rough.canvas(tempCanvas),
|
|
|
|
|
tempCanvas,
|
|
|
|
|
{
|
|
|
|
|
viewBackgroundColor: exportBackground ? viewBackgroundColor : null,
|
|
|
|
|
scrollX: 0,
|
|
|
|
|
scrollY: 0
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
offsetX: -subCanvasX1 + exportPadding,
|
|
|
|
|
offsetY: -subCanvasY1 + exportPadding,
|
|
|
|
|
renderScrollbars: false,
|
|
|
|
|
renderSelection: false
|
2020-01-03 14:18:26 +01:00
|
|
|
|
}
|
2020-01-04 21:46:50 +01:00
|
|
|
|
);
|
2020-01-03 14:18:26 +01:00
|
|
|
|
|
2020-01-04 21:46:50 +01:00
|
|
|
|
// create a temporary <a> elem which we'll use to download the image
|
|
|
|
|
const link = document.createElement("a");
|
|
|
|
|
link.setAttribute("download", "excalidraw.png");
|
|
|
|
|
link.setAttribute("href", tempCanvas.toDataURL("image/png"));
|
|
|
|
|
link.click();
|
2020-01-02 19:47:32 -08:00
|
|
|
|
|
2020-01-04 21:46:50 +01:00
|
|
|
|
// clean up the DOM
|
|
|
|
|
link.remove();
|
|
|
|
|
if (tempCanvas !== canvas) tempCanvas.remove();
|
2020-01-03 00:03:48 +05:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
function rotate(x1: number, y1: number, x2: number, y2: number, angle: number) {
|
|
|
|
|
// 𝑎′𝑥=(𝑎𝑥−𝑐𝑥)cos𝜃−(𝑎𝑦−𝑐𝑦)sin𝜃+𝑐𝑥
|
|
|
|
|
// 𝑎′𝑦=(𝑎𝑥−𝑐𝑥)sin𝜃+(𝑎𝑦−𝑐𝑦)cos𝜃+𝑐𝑦.
|
|
|
|
|
// https://math.stackexchange.com/questions/2204520/how-do-i-rotate-a-line-segment-in-a-specific-point-on-the-line
|
|
|
|
|
return [
|
|
|
|
|
(x1 - x2) * Math.cos(angle) - (y1 - y2) * Math.sin(angle) + x2,
|
|
|
|
|
(x1 - x2) * Math.sin(angle) + (y1 - y2) * Math.cos(angle) + y2
|
|
|
|
|
];
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// Casting second argument (DrawingSurface) to any,
|
|
|
|
|
// because it is requred by TS definitions and not required at runtime
|
2020-01-04 00:20:26 +01:00
|
|
|
|
const generator = rough.generator(null, null as any);
|
2020-01-03 00:03:48 +05:00
|
|
|
|
|
|
|
|
|
function isTextElement(
|
2020-01-03 20:17:05 +01:00
|
|
|
|
element: ExcalidrawElement
|
|
|
|
|
): element is ExcalidrawTextElement {
|
2020-01-03 00:03:48 +05:00
|
|
|
|
return element.type === "text";
|
|
|
|
|
}
|
|
|
|
|
|
2020-01-04 17:45:59 +01:00
|
|
|
|
function isInputLike(
|
|
|
|
|
target: Element | EventTarget | null
|
|
|
|
|
): target is HTMLInputElement | HTMLTextAreaElement | HTMLSelectElement {
|
|
|
|
|
return (
|
|
|
|
|
target instanceof HTMLInputElement ||
|
|
|
|
|
target instanceof HTMLTextAreaElement ||
|
|
|
|
|
target instanceof HTMLSelectElement
|
|
|
|
|
);
|
|
|
|
|
}
|
|
|
|
|
|
2020-01-03 20:17:05 +01:00
|
|
|
|
function getArrowPoints(element: ExcalidrawElement) {
|
2020-01-02 13:47:50 -08:00
|
|
|
|
const x1 = 0;
|
|
|
|
|
const y1 = 0;
|
|
|
|
|
const x2 = element.width;
|
|
|
|
|
const y2 = element.height;
|
|
|
|
|
|
|
|
|
|
const size = 30; // pixels
|
2020-01-04 00:20:26 +01:00
|
|
|
|
const distance = Math.hypot(x2 - x1, y2 - y1);
|
2020-01-02 13:47:50 -08:00
|
|
|
|
// Scale down the arrow until we hit a certain size so that it doesn't look weird
|
|
|
|
|
const minSize = Math.min(size, distance / 2);
|
|
|
|
|
const xs = x2 - ((x2 - x1) / distance) * minSize;
|
|
|
|
|
const ys = y2 - ((y2 - y1) / distance) * minSize;
|
|
|
|
|
|
|
|
|
|
const angle = 20; // degrees
|
|
|
|
|
const [x3, y3] = rotate(xs, ys, x2, y2, (-angle * Math.PI) / 180);
|
|
|
|
|
const [x4, y4] = rotate(xs, ys, x2, y2, (angle * Math.PI) / 180);
|
|
|
|
|
|
|
|
|
|
return [x1, y1, x2, y2, x3, y3, x4, y4];
|
|
|
|
|
}
|
|
|
|
|
|
2020-01-03 20:17:05 +01:00
|
|
|
|
function generateDraw(element: ExcalidrawElement) {
|
2020-01-03 00:03:48 +05:00
|
|
|
|
if (element.type === "selection") {
|
2020-01-04 01:27:25 +05:00
|
|
|
|
element.draw = (rc, context, { scrollX, scrollY }) => {
|
2020-01-03 00:03:48 +05:00
|
|
|
|
const fillStyle = context.fillStyle;
|
|
|
|
|
context.fillStyle = "rgba(0, 0, 255, 0.10)";
|
2020-01-04 01:27:25 +05:00
|
|
|
|
context.fillRect(
|
|
|
|
|
element.x + scrollX,
|
|
|
|
|
element.y + scrollY,
|
|
|
|
|
element.width,
|
|
|
|
|
element.height
|
|
|
|
|
);
|
2020-01-03 00:03:48 +05:00
|
|
|
|
context.fillStyle = fillStyle;
|
|
|
|
|
};
|
|
|
|
|
} else if (element.type === "rectangle") {
|
2020-01-03 12:33:52 -08:00
|
|
|
|
const shape = withCustomMathRandom(element.seed, () => {
|
|
|
|
|
return generator.rectangle(0, 0, element.width, element.height, {
|
|
|
|
|
stroke: element.strokeColor,
|
|
|
|
|
fill: element.backgroundColor
|
|
|
|
|
});
|
2020-01-03 02:54:08 +01:00
|
|
|
|
});
|
2020-01-04 01:27:25 +05:00
|
|
|
|
element.draw = (rc, context, { scrollX, scrollY }) => {
|
|
|
|
|
context.translate(element.x + scrollX, element.y + scrollY);
|
2020-01-03 00:03:48 +05:00
|
|
|
|
rc.draw(shape);
|
2020-01-04 01:27:25 +05:00
|
|
|
|
context.translate(-element.x - scrollX, -element.y - scrollY);
|
2020-01-03 00:03:48 +05:00
|
|
|
|
};
|
|
|
|
|
} else if (element.type === "ellipse") {
|
2020-01-03 12:33:52 -08:00
|
|
|
|
const shape = withCustomMathRandom(element.seed, () =>
|
|
|
|
|
generator.ellipse(
|
|
|
|
|
element.width / 2,
|
|
|
|
|
element.height / 2,
|
|
|
|
|
element.width,
|
|
|
|
|
element.height,
|
|
|
|
|
{ stroke: element.strokeColor, fill: element.backgroundColor }
|
|
|
|
|
)
|
2020-01-03 00:03:48 +05:00
|
|
|
|
);
|
2020-01-04 00:20:26 +01:00
|
|
|
|
element.draw = (rc, context, { scrollX, scrollY }) => {
|
2020-01-04 01:27:25 +05:00
|
|
|
|
context.translate(element.x + scrollX, element.y + scrollY);
|
2020-01-03 00:03:48 +05:00
|
|
|
|
rc.draw(shape);
|
2020-01-04 01:27:25 +05:00
|
|
|
|
context.translate(-element.x - scrollX, -element.y - scrollY);
|
2020-01-03 00:03:48 +05:00
|
|
|
|
};
|
|
|
|
|
} else if (element.type === "arrow") {
|
2020-01-02 13:47:50 -08:00
|
|
|
|
const [x1, y1, x2, y2, x3, y3, x4, y4] = getArrowPoints(element);
|
2020-01-03 12:33:52 -08:00
|
|
|
|
const shapes = withCustomMathRandom(element.seed, () => [
|
2020-01-03 00:03:48 +05:00
|
|
|
|
// \
|
2020-01-03 15:25:52 +01:00
|
|
|
|
generator.line(x3, y3, x2, y2, { stroke: element.strokeColor }),
|
2020-01-03 00:03:48 +05:00
|
|
|
|
// -----
|
2020-01-03 15:25:52 +01:00
|
|
|
|
generator.line(x1, y1, x2, y2, { stroke: element.strokeColor }),
|
2020-01-03 00:03:48 +05:00
|
|
|
|
// /
|
2020-01-03 15:25:52 +01:00
|
|
|
|
generator.line(x4, y4, x2, y2, { stroke: element.strokeColor })
|
2020-01-03 12:33:52 -08:00
|
|
|
|
]);
|
2020-01-03 00:03:48 +05:00
|
|
|
|
|
2020-01-04 01:27:25 +05:00
|
|
|
|
element.draw = (rc, context, { scrollX, scrollY }) => {
|
|
|
|
|
context.translate(element.x + scrollX, element.y + scrollY);
|
2020-01-03 00:03:48 +05:00
|
|
|
|
shapes.forEach(shape => rc.draw(shape));
|
2020-01-04 01:27:25 +05:00
|
|
|
|
context.translate(-element.x - scrollX, -element.y - scrollY);
|
2020-01-03 00:03:48 +05:00
|
|
|
|
};
|
|
|
|
|
return;
|
|
|
|
|
} else if (isTextElement(element)) {
|
2020-01-04 01:27:25 +05:00
|
|
|
|
element.draw = (rc, context, { scrollX, scrollY }) => {
|
2020-01-03 00:03:48 +05:00
|
|
|
|
const font = context.font;
|
|
|
|
|
context.font = element.font;
|
2020-01-03 17:29:12 +01:00
|
|
|
|
const fillStyle = context.fillStyle;
|
|
|
|
|
context.fillStyle = element.strokeColor;
|
2020-01-03 00:03:48 +05:00
|
|
|
|
context.fillText(
|
|
|
|
|
element.text,
|
2020-01-04 01:27:25 +05:00
|
|
|
|
element.x + scrollX,
|
|
|
|
|
element.y + element.actualBoundingBoxAscent + scrollY
|
2020-01-03 00:03:48 +05:00
|
|
|
|
);
|
2020-01-03 17:29:12 +01:00
|
|
|
|
context.fillStyle = fillStyle;
|
2020-01-03 00:03:48 +05:00
|
|
|
|
context.font = font;
|
|
|
|
|
};
|
|
|
|
|
} else {
|
|
|
|
|
throw new Error("Unimplemented type " + element.type);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// If the element is created from right to left, the width is going to be negative
|
|
|
|
|
// This set of functions retrieves the absolute position of the 4 points.
|
|
|
|
|
// We can't just always normalize it since we need to remember the fact that an arrow
|
|
|
|
|
// is pointing left or right.
|
2020-01-03 20:17:05 +01:00
|
|
|
|
function getElementAbsoluteX1(element: ExcalidrawElement) {
|
2020-01-03 00:03:48 +05:00
|
|
|
|
return element.width >= 0 ? element.x : element.x + element.width;
|
|
|
|
|
}
|
2020-01-03 20:17:05 +01:00
|
|
|
|
function getElementAbsoluteX2(element: ExcalidrawElement) {
|
2020-01-03 00:03:48 +05:00
|
|
|
|
return element.width >= 0 ? element.x + element.width : element.x;
|
|
|
|
|
}
|
2020-01-03 20:17:05 +01:00
|
|
|
|
function getElementAbsoluteY1(element: ExcalidrawElement) {
|
2020-01-03 00:03:48 +05:00
|
|
|
|
return element.height >= 0 ? element.y : element.y + element.height;
|
|
|
|
|
}
|
2020-01-03 20:17:05 +01:00
|
|
|
|
function getElementAbsoluteY2(element: ExcalidrawElement) {
|
2020-01-03 00:03:48 +05:00
|
|
|
|
return element.height >= 0 ? element.y + element.height : element.y;
|
|
|
|
|
}
|
|
|
|
|
|
2020-01-03 20:17:05 +01:00
|
|
|
|
function setSelection(selection: ExcalidrawElement) {
|
2020-01-03 00:03:48 +05:00
|
|
|
|
const selectionX1 = getElementAbsoluteX1(selection);
|
|
|
|
|
const selectionX2 = getElementAbsoluteX2(selection);
|
|
|
|
|
const selectionY1 = getElementAbsoluteY1(selection);
|
|
|
|
|
const selectionY2 = getElementAbsoluteY2(selection);
|
|
|
|
|
elements.forEach(element => {
|
|
|
|
|
const elementX1 = getElementAbsoluteX1(element);
|
|
|
|
|
const elementX2 = getElementAbsoluteX2(element);
|
|
|
|
|
const elementY1 = getElementAbsoluteY1(element);
|
|
|
|
|
const elementY2 = getElementAbsoluteY2(element);
|
|
|
|
|
element.isSelected =
|
|
|
|
|
element.type !== "selection" &&
|
|
|
|
|
selectionX1 <= elementX1 &&
|
|
|
|
|
selectionY1 <= elementY1 &&
|
|
|
|
|
selectionX2 >= elementX2 &&
|
|
|
|
|
selectionY2 >= elementY2;
|
|
|
|
|
});
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
function clearSelection() {
|
|
|
|
|
elements.forEach(element => {
|
|
|
|
|
element.isSelected = false;
|
|
|
|
|
});
|
|
|
|
|
}
|
|
|
|
|
|
2020-01-02 12:49:06 -08:00
|
|
|
|
function deleteSelectedElements() {
|
2020-01-04 00:20:26 +01:00
|
|
|
|
for (let i = elements.length - 1; i >= 0; --i) {
|
2020-01-02 12:49:06 -08:00
|
|
|
|
if (elements[i].isSelected) {
|
|
|
|
|
elements.splice(i, 1);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2020-01-03 14:12:37 -03:00
|
|
|
|
function save(state: AppState) {
|
|
|
|
|
localStorage.setItem(LOCAL_STORAGE_KEY, JSON.stringify(elements));
|
|
|
|
|
localStorage.setItem(LOCAL_STORAGE_KEY_STATE, JSON.stringify(state));
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
function restore() {
|
|
|
|
|
try {
|
|
|
|
|
const savedElements = localStorage.getItem(LOCAL_STORAGE_KEY);
|
|
|
|
|
const savedState = localStorage.getItem(LOCAL_STORAGE_KEY_STATE);
|
|
|
|
|
|
|
|
|
|
if (savedElements) {
|
2020-01-04 10:48:23 -08:00
|
|
|
|
elements.splice(0, elements.length, ...JSON.parse(savedElements));
|
2020-01-03 20:17:05 +01:00
|
|
|
|
elements.forEach((element: ExcalidrawElement) => generateDraw(element));
|
2020-01-03 14:12:37 -03:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return savedState ? JSON.parse(savedState) : null;
|
|
|
|
|
} catch (e) {
|
2020-01-04 10:48:23 -08:00
|
|
|
|
elements.splice(0, elements.length);
|
2020-01-03 14:12:37 -03:00
|
|
|
|
return null;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2020-01-03 00:03:48 +05:00
|
|
|
|
type AppState = {
|
2020-01-03 20:17:05 +01:00
|
|
|
|
draggingElement: ExcalidrawElement | null;
|
2020-01-04 15:56:11 -03:00
|
|
|
|
resizingElement: ExcalidrawElement | null;
|
2020-01-03 00:03:48 +05:00
|
|
|
|
elementType: string;
|
|
|
|
|
exportBackground: boolean;
|
2020-01-03 15:25:52 +01:00
|
|
|
|
currentItemStrokeColor: string;
|
|
|
|
|
currentItemBackgroundColor: string;
|
|
|
|
|
viewBackgroundColor: string;
|
2020-01-04 01:27:25 +05:00
|
|
|
|
scrollX: number;
|
|
|
|
|
scrollY: number;
|
2020-01-03 00:03:48 +05:00
|
|
|
|
};
|
|
|
|
|
|
2020-01-03 09:47:34 -06:00
|
|
|
|
const KEYS = {
|
|
|
|
|
ARROW_LEFT: "ArrowLeft",
|
|
|
|
|
ARROW_RIGHT: "ArrowRight",
|
|
|
|
|
ARROW_DOWN: "ArrowDown",
|
|
|
|
|
ARROW_UP: "ArrowUp",
|
|
|
|
|
ESCAPE: "Escape",
|
|
|
|
|
DELETE: "Delete",
|
|
|
|
|
BACKSPACE: "Backspace"
|
|
|
|
|
};
|
|
|
|
|
|
2020-01-04 01:08:34 +02:00
|
|
|
|
const SHAPES = [
|
|
|
|
|
{
|
2020-01-04 00:58:20 -03:00
|
|
|
|
icon: faMousePointer,
|
|
|
|
|
value: "selection"
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
icon: faSquare,
|
2020-01-04 01:08:34 +02:00
|
|
|
|
value: "rectangle"
|
|
|
|
|
},
|
|
|
|
|
{
|
2020-01-04 00:58:20 -03:00
|
|
|
|
icon: faCircle,
|
2020-01-04 01:08:34 +02:00
|
|
|
|
value: "ellipse"
|
|
|
|
|
},
|
|
|
|
|
{
|
2020-01-04 00:58:20 -03:00
|
|
|
|
icon: faLongArrowAltRight,
|
2020-01-04 01:08:34 +02:00
|
|
|
|
value: "arrow"
|
|
|
|
|
},
|
|
|
|
|
{
|
2020-01-04 00:58:20 -03:00
|
|
|
|
icon: faFont,
|
2020-01-04 01:08:34 +02:00
|
|
|
|
value: "text"
|
|
|
|
|
}
|
|
|
|
|
];
|
|
|
|
|
|
2020-01-04 00:58:20 -03:00
|
|
|
|
const shapesShortcutKeys = SHAPES.map(shape => shape.value[0]);
|
2020-01-04 01:08:34 +02:00
|
|
|
|
|
|
|
|
|
function findElementByKey(key: string) {
|
|
|
|
|
const defaultElement = "selection";
|
|
|
|
|
return SHAPES.reduce((element, shape) => {
|
|
|
|
|
if (shape.value[0] !== key) return element;
|
|
|
|
|
|
|
|
|
|
return shape.value;
|
|
|
|
|
}, defaultElement);
|
|
|
|
|
}
|
|
|
|
|
|
2020-01-03 09:47:34 -06:00
|
|
|
|
function isArrowKey(keyCode: string) {
|
|
|
|
|
return (
|
|
|
|
|
keyCode === KEYS.ARROW_LEFT ||
|
|
|
|
|
keyCode === KEYS.ARROW_RIGHT ||
|
|
|
|
|
keyCode === KEYS.ARROW_DOWN ||
|
|
|
|
|
keyCode === KEYS.ARROW_UP
|
|
|
|
|
);
|
|
|
|
|
}
|
|
|
|
|
|
2020-01-03 21:03:25 -08:00
|
|
|
|
function getSelectedIndices() {
|
|
|
|
|
const selectedIndices: number[] = [];
|
|
|
|
|
elements.forEach((element, index) => {
|
|
|
|
|
if (element.isSelected) {
|
|
|
|
|
selectedIndices.push(index);
|
|
|
|
|
}
|
|
|
|
|
});
|
|
|
|
|
return selectedIndices;
|
|
|
|
|
}
|
|
|
|
|
|
2020-01-04 02:38:32 -03:00
|
|
|
|
const someElementIsSelected = () =>
|
|
|
|
|
elements.some(element => element.isSelected);
|
|
|
|
|
|
2020-01-03 09:47:34 -06:00
|
|
|
|
const ELEMENT_SHIFT_TRANSLATE_AMOUNT = 5;
|
|
|
|
|
const ELEMENT_TRANSLATE_AMOUNT = 1;
|
|
|
|
|
|
2020-01-03 00:03:48 +05:00
|
|
|
|
class App extends React.Component<{}, AppState> {
|
|
|
|
|
public componentDidMount() {
|
|
|
|
|
document.addEventListener("keydown", this.onKeyDown, false);
|
2020-01-03 18:35:14 -08:00
|
|
|
|
window.addEventListener("resize", this.onResize, false);
|
2020-01-03 14:12:37 -03:00
|
|
|
|
|
|
|
|
|
const savedState = restore();
|
|
|
|
|
if (savedState) {
|
|
|
|
|
this.setState(savedState);
|
|
|
|
|
}
|
2020-01-03 00:03:48 +05:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public componentWillUnmount() {
|
|
|
|
|
document.removeEventListener("keydown", this.onKeyDown, false);
|
2020-01-03 18:35:14 -08:00
|
|
|
|
window.removeEventListener("resize", this.onResize, false);
|
2020-01-03 00:03:48 +05:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public state: AppState = {
|
|
|
|
|
draggingElement: null,
|
2020-01-04 15:56:11 -03:00
|
|
|
|
resizingElement: null,
|
2020-01-03 00:03:48 +05:00
|
|
|
|
elementType: "selection",
|
2020-01-04 21:46:50 +01:00
|
|
|
|
exportBackground: true,
|
2020-01-03 15:25:52 +01:00
|
|
|
|
currentItemStrokeColor: "#000000",
|
|
|
|
|
currentItemBackgroundColor: "#ffffff",
|
2020-01-04 01:27:25 +05:00
|
|
|
|
viewBackgroundColor: "#ffffff",
|
|
|
|
|
scrollX: 0,
|
|
|
|
|
scrollY: 0
|
2020-01-03 00:03:48 +05:00
|
|
|
|
};
|
|
|
|
|
|
2020-01-03 18:35:14 -08:00
|
|
|
|
private onResize = () => {
|
|
|
|
|
this.forceUpdate();
|
|
|
|
|
};
|
|
|
|
|
|
2020-01-03 00:03:48 +05:00
|
|
|
|
private onKeyDown = (event: KeyboardEvent) => {
|
2020-01-04 17:45:59 +01:00
|
|
|
|
if (isInputLike(event.target)) return;
|
2020-01-02 14:10:32 -08:00
|
|
|
|
|
2020-01-03 09:47:34 -06:00
|
|
|
|
if (event.key === KEYS.ESCAPE) {
|
2020-01-02 14:10:32 -08:00
|
|
|
|
clearSelection();
|
2020-01-02 19:47:32 -08:00
|
|
|
|
this.forceUpdate();
|
2020-01-02 14:42:53 -08:00
|
|
|
|
event.preventDefault();
|
2020-01-03 09:47:34 -06:00
|
|
|
|
} else if (event.key === KEYS.BACKSPACE || event.key === KEYS.DELETE) {
|
2020-01-02 12:49:06 -08:00
|
|
|
|
deleteSelectedElements();
|
2020-01-02 19:47:32 -08:00
|
|
|
|
this.forceUpdate();
|
2020-01-03 00:03:48 +05:00
|
|
|
|
event.preventDefault();
|
2020-01-03 09:47:34 -06:00
|
|
|
|
} else if (isArrowKey(event.key)) {
|
|
|
|
|
const step = event.shiftKey
|
|
|
|
|
? ELEMENT_SHIFT_TRANSLATE_AMOUNT
|
|
|
|
|
: ELEMENT_TRANSLATE_AMOUNT;
|
2020-01-03 00:03:48 +05:00
|
|
|
|
elements.forEach(element => {
|
|
|
|
|
if (element.isSelected) {
|
2020-01-03 09:47:34 -06:00
|
|
|
|
if (event.key === KEYS.ARROW_LEFT) element.x -= step;
|
|
|
|
|
else if (event.key === KEYS.ARROW_RIGHT) element.x += step;
|
|
|
|
|
else if (event.key === KEYS.ARROW_UP) element.y -= step;
|
|
|
|
|
else if (event.key === KEYS.ARROW_DOWN) element.y += step;
|
2020-01-03 00:03:48 +05:00
|
|
|
|
}
|
|
|
|
|
});
|
2020-01-02 19:47:32 -08:00
|
|
|
|
this.forceUpdate();
|
2020-01-03 00:03:48 +05:00
|
|
|
|
event.preventDefault();
|
2020-01-03 21:03:25 -08:00
|
|
|
|
|
2020-01-03 21:46:49 -08:00
|
|
|
|
// Send backward: Cmd-Shift-Alt-B
|
2020-01-03 21:03:25 -08:00
|
|
|
|
} else if (
|
|
|
|
|
event.metaKey &&
|
|
|
|
|
event.shiftKey &&
|
|
|
|
|
event.altKey &&
|
|
|
|
|
event.code === "KeyB"
|
|
|
|
|
) {
|
2020-01-04 02:38:32 -03:00
|
|
|
|
this.moveOneLeft();
|
2020-01-03 21:03:25 -08:00
|
|
|
|
event.preventDefault();
|
|
|
|
|
|
|
|
|
|
// Send to back: Cmd-Shift-B
|
|
|
|
|
} else if (event.metaKey && event.shiftKey && event.code === "KeyB") {
|
2020-01-04 02:38:32 -03:00
|
|
|
|
this.moveAllLeft();
|
2020-01-03 21:03:25 -08:00
|
|
|
|
event.preventDefault();
|
|
|
|
|
|
2020-01-03 21:46:49 -08:00
|
|
|
|
// Bring forward: Cmd-Shift-Alt-F
|
|
|
|
|
} else if (
|
|
|
|
|
event.metaKey &&
|
|
|
|
|
event.shiftKey &&
|
|
|
|
|
event.altKey &&
|
|
|
|
|
event.code === "KeyF"
|
|
|
|
|
) {
|
|
|
|
|
this.moveOneRight();
|
|
|
|
|
event.preventDefault();
|
|
|
|
|
|
|
|
|
|
// Bring to front: Cmd-Shift-F
|
|
|
|
|
} else if (event.metaKey && event.shiftKey && event.code === "KeyF") {
|
|
|
|
|
this.moveAllRight();
|
|
|
|
|
event.preventDefault();
|
|
|
|
|
|
2020-01-03 21:03:25 -08:00
|
|
|
|
// Select all: Cmd-A
|
|
|
|
|
} else if (event.metaKey && event.code === "KeyA") {
|
2020-01-02 14:42:53 -08:00
|
|
|
|
elements.forEach(element => {
|
|
|
|
|
element.isSelected = true;
|
|
|
|
|
});
|
2020-01-02 19:47:32 -08:00
|
|
|
|
this.forceUpdate();
|
2020-01-02 14:42:53 -08:00
|
|
|
|
event.preventDefault();
|
2020-01-04 01:08:34 +02:00
|
|
|
|
} else if (shapesShortcutKeys.includes(event.key.toLowerCase())) {
|
|
|
|
|
this.setState({ elementType: findElementByKey(event.key) });
|
2020-01-03 00:03:48 +05:00
|
|
|
|
}
|
|
|
|
|
};
|
|
|
|
|
|
2020-01-04 02:38:32 -03:00
|
|
|
|
private deleteSelectedElements = () => {
|
|
|
|
|
deleteSelectedElements();
|
|
|
|
|
this.forceUpdate();
|
|
|
|
|
};
|
|
|
|
|
|
2020-01-04 15:20:53 +01:00
|
|
|
|
private clearCanvas = () => {
|
|
|
|
|
if (window.confirm("This will clear the whole canvas. Are you sure?")) {
|
2020-01-04 10:48:23 -08:00
|
|
|
|
elements.splice(0, elements.length);
|
2020-01-04 15:20:53 +01:00
|
|
|
|
this.setState({
|
|
|
|
|
viewBackgroundColor: "#ffffff",
|
|
|
|
|
scrollX: 0,
|
|
|
|
|
scrollY: 0
|
|
|
|
|
});
|
|
|
|
|
this.forceUpdate();
|
|
|
|
|
}
|
|
|
|
|
};
|
|
|
|
|
|
2020-01-04 02:38:32 -03:00
|
|
|
|
private moveAllLeft = () => {
|
|
|
|
|
moveAllLeft(elements, getSelectedIndices());
|
|
|
|
|
this.forceUpdate();
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
private moveOneLeft = () => {
|
|
|
|
|
moveOneLeft(elements, getSelectedIndices());
|
|
|
|
|
this.forceUpdate();
|
|
|
|
|
};
|
|
|
|
|
|
2020-01-03 21:46:49 -08:00
|
|
|
|
private moveAllRight = () => {
|
|
|
|
|
moveAllRight(elements, getSelectedIndices());
|
|
|
|
|
this.forceUpdate();
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
private moveOneRight = () => {
|
|
|
|
|
moveOneRight(elements, getSelectedIndices());
|
|
|
|
|
this.forceUpdate();
|
|
|
|
|
};
|
|
|
|
|
|
2020-01-05 01:11:23 +05:00
|
|
|
|
private removeWheelEventListener: (() => void) | undefined;
|
|
|
|
|
|
2020-01-03 00:03:48 +05:00
|
|
|
|
public render() {
|
|
|
|
|
return (
|
2020-01-02 19:47:32 -08:00
|
|
|
|
<div
|
2020-01-04 00:58:20 -03:00
|
|
|
|
className="container"
|
2020-01-02 19:47:32 -08:00
|
|
|
|
onCut={e => {
|
|
|
|
|
e.clipboardData.setData(
|
|
|
|
|
"text/plain",
|
|
|
|
|
JSON.stringify(elements.filter(element => element.isSelected))
|
|
|
|
|
);
|
|
|
|
|
deleteSelectedElements();
|
|
|
|
|
this.forceUpdate();
|
|
|
|
|
e.preventDefault();
|
|
|
|
|
}}
|
|
|
|
|
onCopy={e => {
|
|
|
|
|
e.clipboardData.setData(
|
|
|
|
|
"text/plain",
|
|
|
|
|
JSON.stringify(elements.filter(element => element.isSelected))
|
|
|
|
|
);
|
|
|
|
|
e.preventDefault();
|
|
|
|
|
}}
|
|
|
|
|
onPaste={e => {
|
|
|
|
|
const paste = e.clipboardData.getData("text");
|
|
|
|
|
let parsedElements;
|
|
|
|
|
try {
|
|
|
|
|
parsedElements = JSON.parse(paste);
|
|
|
|
|
} catch (e) {}
|
|
|
|
|
if (
|
|
|
|
|
Array.isArray(parsedElements) &&
|
|
|
|
|
parsedElements.length > 0 &&
|
|
|
|
|
parsedElements[0].type // need to implement a better check here...
|
|
|
|
|
) {
|
|
|
|
|
clearSelection();
|
|
|
|
|
parsedElements.forEach(parsedElement => {
|
|
|
|
|
parsedElement.x += 10;
|
|
|
|
|
parsedElement.y += 10;
|
2020-01-03 18:29:46 -08:00
|
|
|
|
parsedElement.seed = randomSeed();
|
2020-01-03 15:25:52 +01:00
|
|
|
|
generateDraw(parsedElement);
|
2020-01-02 19:47:32 -08:00
|
|
|
|
elements.push(parsedElement);
|
|
|
|
|
});
|
|
|
|
|
this.forceUpdate();
|
|
|
|
|
}
|
|
|
|
|
e.preventDefault();
|
|
|
|
|
}}
|
|
|
|
|
>
|
2020-01-04 00:58:20 -03:00
|
|
|
|
<div className="sidePanel">
|
|
|
|
|
<h4>Shapes</h4>
|
|
|
|
|
<div className="panelTools">
|
|
|
|
|
{SHAPES.map(({ value, icon }) => (
|
|
|
|
|
<label key={value} className="tool">
|
|
|
|
|
<input
|
|
|
|
|
type="radio"
|
|
|
|
|
checked={this.state.elementType === value}
|
|
|
|
|
onChange={() => {
|
|
|
|
|
this.setState({ elementType: value });
|
|
|
|
|
clearSelection();
|
|
|
|
|
this.forceUpdate();
|
|
|
|
|
}}
|
|
|
|
|
/>
|
|
|
|
|
<div className="toolIcon">
|
|
|
|
|
<FontAwesomeIcon icon={icon} />
|
|
|
|
|
</div>
|
|
|
|
|
</label>
|
|
|
|
|
))}
|
|
|
|
|
</div>
|
|
|
|
|
<h4>Colors</h4>
|
|
|
|
|
<div className="panelColumn">
|
|
|
|
|
<label>
|
2020-01-04 01:08:34 +02:00
|
|
|
|
<input
|
2020-01-04 00:58:20 -03:00
|
|
|
|
type="color"
|
|
|
|
|
value={this.state.viewBackgroundColor}
|
|
|
|
|
onChange={e => {
|
|
|
|
|
this.setState({ viewBackgroundColor: e.target.value });
|
2020-01-04 01:08:34 +02:00
|
|
|
|
}}
|
|
|
|
|
/>
|
2020-01-04 00:58:20 -03:00
|
|
|
|
Background
|
2020-01-04 01:08:34 +02:00
|
|
|
|
</label>
|
2020-01-04 00:58:20 -03:00
|
|
|
|
<label>
|
|
|
|
|
<input
|
|
|
|
|
type="color"
|
|
|
|
|
value={this.state.currentItemStrokeColor}
|
|
|
|
|
onChange={e => {
|
|
|
|
|
this.setState({ currentItemStrokeColor: e.target.value });
|
|
|
|
|
}}
|
|
|
|
|
/>
|
|
|
|
|
Shape Stroke
|
|
|
|
|
</label>
|
|
|
|
|
<label>
|
|
|
|
|
<input
|
|
|
|
|
type="color"
|
|
|
|
|
value={this.state.currentItemBackgroundColor}
|
|
|
|
|
onChange={e => {
|
|
|
|
|
this.setState({ currentItemBackgroundColor: e.target.value });
|
|
|
|
|
}}
|
|
|
|
|
/>
|
|
|
|
|
Shape Background
|
|
|
|
|
</label>
|
|
|
|
|
</div>
|
2020-01-04 15:20:53 +01:00
|
|
|
|
<h4>Canvas</h4>
|
|
|
|
|
<div className="panelColumn">
|
|
|
|
|
<button
|
|
|
|
|
onClick={this.clearCanvas}
|
|
|
|
|
title="Clear the canvas & reset background color"
|
|
|
|
|
>
|
|
|
|
|
Clear canvas
|
|
|
|
|
</button>
|
|
|
|
|
</div>
|
2020-01-04 00:58:20 -03:00
|
|
|
|
<h4>Export</h4>
|
|
|
|
|
<div className="panelColumn">
|
|
|
|
|
<button
|
|
|
|
|
onClick={() => {
|
2020-01-04 21:46:50 +01:00
|
|
|
|
exportAsPNG(this.state);
|
2020-01-04 00:58:20 -03:00
|
|
|
|
}}
|
|
|
|
|
>
|
|
|
|
|
Export to png
|
|
|
|
|
</button>
|
|
|
|
|
<label>
|
|
|
|
|
<input
|
|
|
|
|
type="checkbox"
|
|
|
|
|
checked={this.state.exportBackground}
|
|
|
|
|
onChange={e => {
|
|
|
|
|
this.setState({ exportBackground: e.target.checked });
|
|
|
|
|
}}
|
|
|
|
|
/>
|
|
|
|
|
background
|
|
|
|
|
</label>
|
|
|
|
|
</div>
|
2020-01-04 02:38:32 -03:00
|
|
|
|
{someElementIsSelected() && (
|
|
|
|
|
<>
|
|
|
|
|
<h4>Shape options</h4>
|
|
|
|
|
<div className="panelColumn">
|
|
|
|
|
<button onClick={this.deleteSelectedElements}>Delete</button>
|
2020-01-03 21:46:49 -08:00
|
|
|
|
<button onClick={this.moveOneRight}>Bring forward</button>
|
|
|
|
|
<button onClick={this.moveAllRight}>Bring to front</button>
|
|
|
|
|
<button onClick={this.moveOneLeft}>Send backward</button>
|
2020-01-04 02:38:32 -03:00
|
|
|
|
<button onClick={this.moveAllLeft}>Send to back</button>
|
|
|
|
|
</div>
|
|
|
|
|
</>
|
|
|
|
|
)}
|
2020-01-04 00:58:20 -03:00
|
|
|
|
</div>
|
2020-01-02 19:47:32 -08:00
|
|
|
|
<canvas
|
|
|
|
|
id="canvas"
|
2020-01-04 14:05:45 -05:00
|
|
|
|
width={window.innerWidth - CANVAS_WINDOW_OFFSET_LEFT}
|
|
|
|
|
height={window.innerHeight - CANVAS_WINDOW_OFFSET_TOP}
|
2020-01-05 01:11:23 +05:00
|
|
|
|
ref={canvas => {
|
|
|
|
|
if (this.removeWheelEventListener) {
|
|
|
|
|
this.removeWheelEventListener();
|
|
|
|
|
this.removeWheelEventListener = undefined;
|
|
|
|
|
}
|
|
|
|
|
if (canvas) {
|
|
|
|
|
canvas.addEventListener("wheel", this.handleWheel, {
|
|
|
|
|
passive: false
|
|
|
|
|
});
|
|
|
|
|
this.removeWheelEventListener = () =>
|
|
|
|
|
canvas.removeEventListener("wheel", this.handleWheel);
|
|
|
|
|
}
|
2020-01-04 01:27:25 +05:00
|
|
|
|
}}
|
2020-01-02 19:47:32 -08:00
|
|
|
|
onMouseDown={e => {
|
2020-01-04 15:22:08 +01:00
|
|
|
|
// only handle left mouse button
|
|
|
|
|
if (e.button !== 0) return;
|
|
|
|
|
// fixes mousemove causing selection of UI texts #32
|
|
|
|
|
e.preventDefault();
|
2020-01-04 17:45:59 +01:00
|
|
|
|
// Preventing the event above disables default behavior
|
|
|
|
|
// of defocusing potentially focused input, which is what we want
|
|
|
|
|
// when clicking inside the canvas.
|
|
|
|
|
if (isInputLike(document.activeElement)) {
|
|
|
|
|
document.activeElement.blur();
|
|
|
|
|
}
|
2020-01-04 15:22:08 +01:00
|
|
|
|
|
2020-01-04 02:37:15 +05:00
|
|
|
|
const x =
|
|
|
|
|
e.clientX -
|
|
|
|
|
(e.target as HTMLElement).offsetLeft -
|
|
|
|
|
this.state.scrollX;
|
|
|
|
|
const y =
|
|
|
|
|
e.clientY -
|
|
|
|
|
(e.target as HTMLElement).offsetTop -
|
|
|
|
|
this.state.scrollY;
|
2020-01-03 15:25:52 +01:00
|
|
|
|
const element = newElement(
|
|
|
|
|
this.state.elementType,
|
|
|
|
|
x,
|
|
|
|
|
y,
|
|
|
|
|
this.state.currentItemStrokeColor,
|
|
|
|
|
this.state.currentItemBackgroundColor
|
|
|
|
|
);
|
2020-01-04 15:56:11 -03:00
|
|
|
|
let resizeHandle: string | false = false;
|
2020-01-02 19:47:32 -08:00
|
|
|
|
let isDraggingElements = false;
|
2020-01-04 15:56:11 -03:00
|
|
|
|
let isResizingElements = false;
|
2020-01-02 19:47:32 -08:00
|
|
|
|
const cursorStyle = document.documentElement.style.cursor;
|
|
|
|
|
if (this.state.elementType === "selection") {
|
2020-01-04 15:56:11 -03:00
|
|
|
|
const resizeElement = elements.find(element => {
|
|
|
|
|
return resizeTest(element, x, y, {
|
|
|
|
|
scrollX: this.state.scrollX,
|
|
|
|
|
scrollY: this.state.scrollY,
|
|
|
|
|
viewBackgroundColor: this.state.viewBackgroundColor
|
|
|
|
|
});
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
this.setState({
|
|
|
|
|
resizingElement: resizeElement ? resizeElement : null
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
if (resizeElement) {
|
|
|
|
|
resizeHandle = resizeTest(resizeElement, x, y, {
|
|
|
|
|
scrollX: this.state.scrollX,
|
|
|
|
|
scrollY: this.state.scrollY,
|
|
|
|
|
viewBackgroundColor: this.state.viewBackgroundColor
|
|
|
|
|
});
|
|
|
|
|
document.documentElement.style.cursor = `${resizeHandle}-resize`;
|
|
|
|
|
isResizingElements = true;
|
|
|
|
|
} else {
|
|
|
|
|
let hitElement = null;
|
2020-01-05 01:11:23 +05:00
|
|
|
|
|
2020-01-04 15:56:11 -03:00
|
|
|
|
// We need to to hit testing from front (end of the array) to back (beginning of the array)
|
|
|
|
|
for (let i = elements.length - 1; i >= 0; --i) {
|
|
|
|
|
if (hitTest(elements[i], x, y)) {
|
|
|
|
|
hitElement = elements[i];
|
|
|
|
|
break;
|
|
|
|
|
}
|
2020-01-04 10:19:18 -08:00
|
|
|
|
}
|
2020-01-02 19:47:32 -08:00
|
|
|
|
|
2020-01-04 15:56:11 -03:00
|
|
|
|
// If we click on something
|
|
|
|
|
if (hitElement) {
|
|
|
|
|
if (hitElement.isSelected) {
|
|
|
|
|
// If that element is not already selected, do nothing,
|
|
|
|
|
// we're likely going to drag it
|
|
|
|
|
} else {
|
|
|
|
|
// We unselect every other elements unless shift is pressed
|
|
|
|
|
if (!e.shiftKey) {
|
|
|
|
|
clearSelection();
|
|
|
|
|
}
|
|
|
|
|
// No matter what, we select it
|
|
|
|
|
hitElement.isSelected = true;
|
2020-01-02 19:47:32 -08:00
|
|
|
|
}
|
2020-01-04 15:56:11 -03:00
|
|
|
|
} else {
|
|
|
|
|
// If we don't click on anything, let's remove all the selected elements
|
|
|
|
|
clearSelection();
|
2020-01-03 00:03:48 +05:00
|
|
|
|
}
|
|
|
|
|
|
2020-01-04 15:56:11 -03:00
|
|
|
|
isDraggingElements = someElementIsSelected();
|
2020-01-03 00:03:48 +05:00
|
|
|
|
|
2020-01-04 15:56:11 -03:00
|
|
|
|
if (isDraggingElements) {
|
|
|
|
|
document.documentElement.style.cursor = "move";
|
|
|
|
|
}
|
2020-01-03 00:03:48 +05:00
|
|
|
|
}
|
2020-01-02 19:47:32 -08:00
|
|
|
|
}
|
2020-01-03 00:03:48 +05:00
|
|
|
|
|
2020-01-02 19:47:32 -08:00
|
|
|
|
if (isTextElement(element)) {
|
|
|
|
|
const text = prompt("What text do you want?");
|
|
|
|
|
if (text === null) {
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
element.text = text;
|
|
|
|
|
element.font = "20px Virgil";
|
|
|
|
|
const font = context.font;
|
|
|
|
|
context.font = element.font;
|
|
|
|
|
const {
|
|
|
|
|
actualBoundingBoxAscent,
|
|
|
|
|
actualBoundingBoxDescent,
|
|
|
|
|
width
|
|
|
|
|
} = context.measureText(element.text);
|
|
|
|
|
element.actualBoundingBoxAscent = actualBoundingBoxAscent;
|
|
|
|
|
context.font = font;
|
|
|
|
|
const height = actualBoundingBoxAscent + actualBoundingBoxDescent;
|
|
|
|
|
// Center the text
|
|
|
|
|
element.x -= width / 2;
|
|
|
|
|
element.y -= actualBoundingBoxAscent;
|
|
|
|
|
element.width = width;
|
|
|
|
|
element.height = height;
|
|
|
|
|
}
|
|
|
|
|
|
2020-01-03 15:25:52 +01:00
|
|
|
|
generateDraw(element);
|
2020-01-02 19:47:32 -08:00
|
|
|
|
elements.push(element);
|
|
|
|
|
if (this.state.elementType === "text") {
|
|
|
|
|
this.setState({
|
|
|
|
|
draggingElement: null,
|
|
|
|
|
elementType: "selection"
|
|
|
|
|
});
|
|
|
|
|
element.isSelected = true;
|
|
|
|
|
} else {
|
|
|
|
|
this.setState({ draggingElement: element });
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
let lastX = x;
|
|
|
|
|
let lastY = y;
|
|
|
|
|
|
|
|
|
|
const onMouseMove = (e: MouseEvent) => {
|
|
|
|
|
const target = e.target;
|
|
|
|
|
if (!(target instanceof HTMLElement)) {
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
|
2020-01-04 15:56:11 -03:00
|
|
|
|
if (isResizingElements && this.state.resizingElement) {
|
|
|
|
|
const el = this.state.resizingElement;
|
|
|
|
|
const selectedElements = elements.filter(el => el.isSelected);
|
|
|
|
|
if (selectedElements.length === 1) {
|
|
|
|
|
const x = e.clientX - target.offsetLeft - this.state.scrollX;
|
|
|
|
|
const y = e.clientY - target.offsetTop - this.state.scrollY;
|
|
|
|
|
selectedElements.forEach(element => {
|
|
|
|
|
switch (resizeHandle) {
|
|
|
|
|
case "nw":
|
|
|
|
|
element.width += element.x - lastX;
|
|
|
|
|
element.height += element.y - lastY;
|
|
|
|
|
element.x = lastX;
|
|
|
|
|
element.y = lastY;
|
|
|
|
|
break;
|
|
|
|
|
case "ne":
|
|
|
|
|
element.width = lastX - element.x;
|
|
|
|
|
element.height += element.y - lastY;
|
|
|
|
|
element.y = lastY;
|
|
|
|
|
break;
|
|
|
|
|
case "sw":
|
|
|
|
|
element.width += element.x - lastX;
|
|
|
|
|
element.x = lastX;
|
|
|
|
|
element.height = lastY - element.y;
|
|
|
|
|
break;
|
|
|
|
|
case "se":
|
|
|
|
|
element.width += x - lastX;
|
|
|
|
|
if (e.shiftKey) {
|
|
|
|
|
element.height = element.width;
|
|
|
|
|
} else {
|
|
|
|
|
element.height += y - lastY;
|
|
|
|
|
}
|
|
|
|
|
break;
|
|
|
|
|
case "n":
|
|
|
|
|
element.height += element.y - lastY;
|
|
|
|
|
element.y = lastY;
|
|
|
|
|
break;
|
|
|
|
|
case "w":
|
|
|
|
|
element.width += element.x - lastX;
|
|
|
|
|
element.x = lastX;
|
|
|
|
|
break;
|
|
|
|
|
case "s":
|
|
|
|
|
element.height = lastY - element.y;
|
|
|
|
|
break;
|
|
|
|
|
case "e":
|
|
|
|
|
element.width = lastX - element.x;
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
el.x = element.x;
|
|
|
|
|
el.y = element.y;
|
|
|
|
|
generateDraw(el);
|
|
|
|
|
});
|
|
|
|
|
lastX = x;
|
|
|
|
|
lastY = y;
|
|
|
|
|
this.forceUpdate();
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2020-01-02 19:47:32 -08:00
|
|
|
|
if (isDraggingElements) {
|
|
|
|
|
const selectedElements = elements.filter(el => el.isSelected);
|
|
|
|
|
if (selectedElements.length) {
|
2020-01-04 02:37:15 +05:00
|
|
|
|
const x = e.clientX - target.offsetLeft - this.state.scrollX;
|
|
|
|
|
const y = e.clientY - target.offsetTop - this.state.scrollY;
|
2020-01-02 19:47:32 -08:00
|
|
|
|
selectedElements.forEach(element => {
|
|
|
|
|
element.x += x - lastX;
|
|
|
|
|
element.y += y - lastY;
|
|
|
|
|
});
|
|
|
|
|
lastX = x;
|
|
|
|
|
lastY = y;
|
|
|
|
|
this.forceUpdate();
|
2020-01-03 00:03:48 +05:00
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2020-01-02 19:47:32 -08:00
|
|
|
|
// It is very important to read this.state within each move event,
|
|
|
|
|
// otherwise we would read a stale one!
|
|
|
|
|
const draggingElement = this.state.draggingElement;
|
|
|
|
|
if (!draggingElement) return;
|
2020-01-04 02:37:15 +05:00
|
|
|
|
let width =
|
|
|
|
|
e.clientX -
|
2020-01-04 14:05:45 -05:00
|
|
|
|
CANVAS_WINDOW_OFFSET_LEFT -
|
2020-01-04 02:37:15 +05:00
|
|
|
|
draggingElement.x -
|
|
|
|
|
this.state.scrollX;
|
|
|
|
|
let height =
|
|
|
|
|
e.clientY -
|
2020-01-04 14:05:45 -05:00
|
|
|
|
CANVAS_WINDOW_OFFSET_TOP -
|
2020-01-04 02:37:15 +05:00
|
|
|
|
draggingElement.y -
|
|
|
|
|
this.state.scrollY;
|
2020-01-02 19:47:32 -08:00
|
|
|
|
draggingElement.width = width;
|
|
|
|
|
// Make a perfect square or circle when shift is enabled
|
|
|
|
|
draggingElement.height = e.shiftKey ? width : height;
|
|
|
|
|
|
2020-01-03 15:25:52 +01:00
|
|
|
|
generateDraw(draggingElement);
|
2020-01-03 00:03:48 +05:00
|
|
|
|
|
2020-01-02 19:47:32 -08:00
|
|
|
|
if (this.state.elementType === "selection") {
|
|
|
|
|
setSelection(draggingElement);
|
|
|
|
|
}
|
|
|
|
|
this.forceUpdate();
|
|
|
|
|
};
|
2020-01-03 00:03:48 +05:00
|
|
|
|
|
2020-01-02 19:47:32 -08:00
|
|
|
|
const onMouseUp = (e: MouseEvent) => {
|
|
|
|
|
const { draggingElement, elementType } = this.state;
|
2020-01-03 00:03:48 +05:00
|
|
|
|
|
2020-01-02 19:47:32 -08:00
|
|
|
|
window.removeEventListener("mousemove", onMouseMove);
|
|
|
|
|
window.removeEventListener("mouseup", onMouseUp);
|
2020-01-03 00:03:48 +05:00
|
|
|
|
|
2020-01-02 19:47:32 -08:00
|
|
|
|
document.documentElement.style.cursor = cursorStyle;
|
2020-01-03 00:03:48 +05:00
|
|
|
|
|
2020-01-02 19:47:32 -08:00
|
|
|
|
// if no element is clicked, clear the selection and redraw
|
|
|
|
|
if (draggingElement === null) {
|
|
|
|
|
clearSelection();
|
|
|
|
|
this.forceUpdate();
|
|
|
|
|
return;
|
|
|
|
|
}
|
2020-01-03 00:03:48 +05:00
|
|
|
|
|
2020-01-02 19:47:32 -08:00
|
|
|
|
if (elementType === "selection") {
|
|
|
|
|
if (isDraggingElements) {
|
|
|
|
|
isDraggingElements = false;
|
2020-01-03 00:03:48 +05:00
|
|
|
|
}
|
2020-01-02 19:47:32 -08:00
|
|
|
|
elements.pop();
|
|
|
|
|
} else {
|
|
|
|
|
draggingElement.isSelected = true;
|
|
|
|
|
}
|
2020-01-03 00:03:48 +05:00
|
|
|
|
|
2020-01-02 19:47:32 -08:00
|
|
|
|
this.setState({
|
|
|
|
|
draggingElement: null,
|
|
|
|
|
elementType: "selection"
|
|
|
|
|
});
|
|
|
|
|
this.forceUpdate();
|
|
|
|
|
};
|
2020-01-03 00:03:48 +05:00
|
|
|
|
|
2020-01-02 19:47:32 -08:00
|
|
|
|
window.addEventListener("mousemove", onMouseMove);
|
|
|
|
|
window.addEventListener("mouseup", onMouseUp);
|
2020-01-03 00:03:48 +05:00
|
|
|
|
|
2020-01-02 19:47:32 -08:00
|
|
|
|
this.forceUpdate();
|
|
|
|
|
}}
|
|
|
|
|
/>
|
|
|
|
|
</div>
|
2020-01-03 00:03:48 +05:00
|
|
|
|
);
|
|
|
|
|
}
|
2020-01-02 19:47:32 -08:00
|
|
|
|
|
2020-01-05 01:11:23 +05:00
|
|
|
|
private handleWheel = (e: WheelEvent) => {
|
|
|
|
|
e.preventDefault();
|
|
|
|
|
const { deltaX, deltaY } = e;
|
|
|
|
|
this.setState(state => ({
|
|
|
|
|
scrollX: state.scrollX - deltaX,
|
|
|
|
|
scrollY: state.scrollY - deltaY
|
|
|
|
|
}));
|
|
|
|
|
};
|
|
|
|
|
|
2020-01-02 18:20:08 -08:00
|
|
|
|
componentDidUpdate() {
|
2020-01-04 21:46:50 +01:00
|
|
|
|
renderScene(rc, canvas, {
|
2020-01-04 01:27:25 +05:00
|
|
|
|
scrollX: this.state.scrollX,
|
|
|
|
|
scrollY: this.state.scrollY,
|
|
|
|
|
viewBackgroundColor: this.state.viewBackgroundColor
|
|
|
|
|
});
|
2020-01-03 14:12:37 -03:00
|
|
|
|
save(this.state);
|
2020-01-02 18:20:08 -08:00
|
|
|
|
}
|
2020-01-03 00:03:48 +05:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
const rootElement = document.getElementById("root");
|
|
|
|
|
ReactDOM.render(<App />, rootElement);
|
|
|
|
|
const canvas = document.getElementById("canvas") as HTMLCanvasElement;
|
|
|
|
|
const rc = rough.canvas(canvas);
|
|
|
|
|
const context = canvas.getContext("2d")!;
|
|
|
|
|
|
|
|
|
|
// Big hack to ensure that all the 1px lines are drawn at 1px instead of 2px
|
|
|
|
|
// https://stackoverflow.com/questions/13879322/drawing-a-1px-thick-line-in-canvas-creates-a-2px-thick-line/13879402#comment90766599_13879402
|
|
|
|
|
context.translate(0.5, 0.5);
|
|
|
|
|
|
2020-01-02 19:47:32 -08:00
|
|
|
|
ReactDOM.render(<App />, rootElement);
|