2020-01-05 15:10:42 +01:00
|
|
|
import React from "react";
|
|
|
|
import ReactDOM from "react-dom";
|
2020-01-09 02:00:59 +04:00
|
|
|
|
2020-01-05 15:10:42 +01:00
|
|
|
import rough from "roughjs/bin/wrappers/rough";
|
2020-01-09 02:00:59 +04:00
|
|
|
import { RoughCanvas } from "roughjs/bin/canvas";
|
2020-01-05 15:10:42 +01:00
|
|
|
|
|
|
|
import { moveOneLeft, moveAllLeft, moveOneRight, moveAllRight } from "./zindex";
|
2020-01-08 19:54:42 +01:00
|
|
|
import {
|
|
|
|
newElement,
|
|
|
|
duplicateElement,
|
|
|
|
resizeTest,
|
|
|
|
isTextElement,
|
2020-01-09 12:34:46 +01:00
|
|
|
textWysiwyg,
|
|
|
|
getElementAbsoluteCoords
|
2020-01-08 19:54:42 +01:00
|
|
|
} from "./element";
|
2020-01-06 19:34:22 +04:00
|
|
|
import {
|
2020-01-06 20:24:54 +04:00
|
|
|
clearSelection,
|
|
|
|
getSelectedIndices,
|
|
|
|
deleteSelectedElements,
|
|
|
|
setSelection,
|
|
|
|
isOverScrollBars,
|
|
|
|
someElementIsSelected,
|
|
|
|
getSelectedAttribute,
|
|
|
|
loadFromJSON,
|
|
|
|
saveAsJSON,
|
|
|
|
exportAsPNG,
|
|
|
|
restoreFromLocalStorage,
|
|
|
|
saveToLocalStorage,
|
|
|
|
hasBackground,
|
|
|
|
hasStroke,
|
|
|
|
getElementAtPosition,
|
2020-01-09 01:09:09 +05:00
|
|
|
createScene,
|
2020-01-09 02:29:41 +01:00
|
|
|
getElementContainingPosition,
|
|
|
|
hasText
|
2020-01-06 20:24:54 +04:00
|
|
|
} from "./scene";
|
2020-01-07 19:04:52 +04:00
|
|
|
|
|
|
|
import { renderScene } from "./renderer";
|
2020-01-06 20:24:54 +04:00
|
|
|
import { AppState } from "./types";
|
2020-01-06 19:34:22 +04:00
|
|
|
import { ExcalidrawElement, ExcalidrawTextElement } from "./element/types";
|
2020-01-06 13:33:22 +04:00
|
|
|
|
2020-01-09 00:06:25 +05:00
|
|
|
import { getDateTime, isInputLike, measureText } from "./utils";
|
2020-01-09 02:00:59 +04:00
|
|
|
import { KEYS, META_KEY, isArrowKey } from "./keys";
|
2020-01-06 20:24:54 +04:00
|
|
|
|
2020-01-06 21:29:44 +04:00
|
|
|
import { ButtonSelect } from "./components/ButtonSelect";
|
2020-01-07 15:06:22 +04:00
|
|
|
import { findShapeByKey, shapesShortcutKeys } from "./shapes";
|
2020-01-06 21:58:48 +04:00
|
|
|
import { createHistory } from "./history";
|
2020-01-05 15:10:42 +01:00
|
|
|
|
2020-01-07 07:50:59 +05:00
|
|
|
import ContextMenu from "./components/ContextMenu";
|
2020-01-07 15:06:22 +04:00
|
|
|
import { PanelTools } from "./components/panels/PanelTools";
|
|
|
|
import { PanelSelection } from "./components/panels/PanelSelection";
|
|
|
|
import { PanelColor } from "./components/panels/PanelColor";
|
|
|
|
import { PanelExport } from "./components/panels/PanelExport";
|
|
|
|
import { PanelCanvas } from "./components/panels/PanelCanvas";
|
2020-01-09 01:06:36 +04:00
|
|
|
import { Panel } from "./components/Panel";
|
2020-01-05 15:10:42 +01:00
|
|
|
|
2020-01-09 00:06:25 +05:00
|
|
|
import "./styles.scss";
|
2020-01-08 23:56:35 -03:00
|
|
|
import { getElementWithResizeHandler } from "./element/resizeTest";
|
2020-01-09 00:06:25 +05:00
|
|
|
|
2020-01-09 19:22:04 +04:00
|
|
|
let { elements } = createScene();
|
2020-01-06 21:58:48 +04:00
|
|
|
const { history } = createHistory();
|
2020-01-05 22:26:00 +00:00
|
|
|
const DEFAULT_PROJECT_NAME = `excalidraw-${getDateTime()}`;
|
|
|
|
|
2020-01-05 15:10:42 +01:00
|
|
|
const CANVAS_WINDOW_OFFSET_LEFT = 250;
|
|
|
|
const CANVAS_WINDOW_OFFSET_TOP = 0;
|
|
|
|
|
2020-01-07 08:04:15 +01:00
|
|
|
let copiedStyles: string = "{}";
|
2020-01-06 23:22:48 +01:00
|
|
|
|
2020-01-06 20:24:54 +04:00
|
|
|
function resetCursor() {
|
|
|
|
document.documentElement.style.cursor = "";
|
2020-01-05 20:37:24 -03:00
|
|
|
}
|
|
|
|
|
2020-01-07 22:21:05 +05:00
|
|
|
function addTextElement(
|
|
|
|
element: ExcalidrawTextElement,
|
|
|
|
text: string,
|
|
|
|
font: string
|
|
|
|
) {
|
2020-01-05 22:38:19 -03:00
|
|
|
resetCursor();
|
|
|
|
if (text === null || text === "") {
|
|
|
|
return false;
|
|
|
|
}
|
2020-01-09 00:06:25 +05:00
|
|
|
|
|
|
|
const metrics = measureText(text, font);
|
2020-01-05 22:38:19 -03:00
|
|
|
element.text = text;
|
2020-01-07 22:21:05 +05:00
|
|
|
element.font = font;
|
2020-01-05 22:38:19 -03:00
|
|
|
// Center the text
|
2020-01-09 00:06:25 +05:00
|
|
|
element.x -= metrics.width / 2;
|
|
|
|
element.y -= metrics.height / 2;
|
|
|
|
element.width = metrics.width;
|
|
|
|
element.height = metrics.height;
|
|
|
|
element.baseline = metrics.baseline;
|
2020-01-05 22:38:19 -03:00
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2020-01-05 15:10:42 +01:00
|
|
|
const ELEMENT_SHIFT_TRANSLATE_AMOUNT = 5;
|
|
|
|
const ELEMENT_TRANSLATE_AMOUNT = 1;
|
2020-01-09 01:09:09 +05:00
|
|
|
const TEXT_TO_CENTER_SNAP_THRESHOLD = 30;
|
2020-01-05 15:10:42 +01:00
|
|
|
|
|
|
|
let lastCanvasWidth = -1;
|
|
|
|
let lastCanvasHeight = -1;
|
|
|
|
|
|
|
|
let lastMouseUp: ((e: any) => void) | null = null;
|
|
|
|
|
2020-01-08 23:56:35 -03:00
|
|
|
export function viewportCoordsToSceneCoords(
|
|
|
|
{ clientX, clientY }: { clientX: number; clientY: number },
|
|
|
|
{ scrollX, scrollY }: { scrollX: number; scrollY: number }
|
|
|
|
) {
|
|
|
|
const x = clientX - CANVAS_WINDOW_OFFSET_LEFT - scrollX;
|
|
|
|
const y = clientY - CANVAS_WINDOW_OFFSET_TOP - scrollY;
|
|
|
|
return { x, y };
|
|
|
|
}
|
|
|
|
|
2020-01-09 02:00:59 +04:00
|
|
|
export class App extends React.Component<{}, AppState> {
|
|
|
|
canvas: HTMLCanvasElement | null = null;
|
|
|
|
rc: RoughCanvas | null = null;
|
|
|
|
|
2020-01-05 15:10:42 +01:00
|
|
|
public componentDidMount() {
|
|
|
|
document.addEventListener("keydown", this.onKeyDown, false);
|
2020-01-09 12:34:46 +01:00
|
|
|
document.addEventListener("mousemove", this.getCurrentCursorPosition);
|
2020-01-05 15:10:42 +01:00
|
|
|
window.addEventListener("resize", this.onResize, false);
|
|
|
|
|
2020-01-09 19:22:04 +04:00
|
|
|
const { elements: newElements, appState } = restoreFromLocalStorage();
|
|
|
|
|
|
|
|
if (newElements) {
|
|
|
|
elements = newElements;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (appState) {
|
|
|
|
this.setState(appState);
|
|
|
|
} else {
|
|
|
|
this.forceUpdate();
|
2020-01-05 15:10:42 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
public componentWillUnmount() {
|
|
|
|
document.removeEventListener("keydown", this.onKeyDown, false);
|
2020-01-09 12:34:46 +01:00
|
|
|
document.removeEventListener(
|
|
|
|
"mousemove",
|
|
|
|
this.getCurrentCursorPosition,
|
|
|
|
false
|
|
|
|
);
|
2020-01-05 15:10:42 +01:00
|
|
|
window.removeEventListener("resize", this.onResize, false);
|
|
|
|
}
|
|
|
|
|
|
|
|
public state: AppState = {
|
|
|
|
draggingElement: null,
|
|
|
|
resizingElement: null,
|
|
|
|
elementType: "selection",
|
|
|
|
exportBackground: true,
|
|
|
|
currentItemStrokeColor: "#000000",
|
|
|
|
currentItemBackgroundColor: "#ffffff",
|
2020-01-07 22:21:05 +05:00
|
|
|
currentItemFont: "20px Virgil",
|
2020-01-05 15:10:42 +01:00
|
|
|
viewBackgroundColor: "#ffffff",
|
|
|
|
scrollX: 0,
|
2020-01-05 22:26:00 +00:00
|
|
|
scrollY: 0,
|
2020-01-09 12:34:46 +01:00
|
|
|
cursorX: 0,
|
|
|
|
cursorY: 0,
|
2020-01-05 22:26:00 +00:00
|
|
|
name: DEFAULT_PROJECT_NAME
|
2020-01-05 15:10:42 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
private onResize = () => {
|
|
|
|
this.forceUpdate();
|
|
|
|
};
|
|
|
|
|
2020-01-09 12:34:46 +01:00
|
|
|
private getCurrentCursorPosition = (e: MouseEvent) => {
|
|
|
|
this.setState({ cursorX: e.x, cursorY: e.y });
|
|
|
|
};
|
|
|
|
|
2020-01-05 15:10:42 +01:00
|
|
|
private onKeyDown = (event: KeyboardEvent) => {
|
|
|
|
if (isInputLike(event.target)) return;
|
|
|
|
|
|
|
|
if (event.key === KEYS.ESCAPE) {
|
2020-01-09 19:22:04 +04:00
|
|
|
elements = clearSelection(elements);
|
2020-01-05 15:10:42 +01:00
|
|
|
this.forceUpdate();
|
|
|
|
event.preventDefault();
|
|
|
|
} else if (event.key === KEYS.BACKSPACE || event.key === KEYS.DELETE) {
|
2020-01-07 07:50:59 +05:00
|
|
|
this.deleteSelectedElements();
|
2020-01-05 15:10:42 +01:00
|
|
|
event.preventDefault();
|
|
|
|
} else if (isArrowKey(event.key)) {
|
|
|
|
const step = event.shiftKey
|
|
|
|
? ELEMENT_SHIFT_TRANSLATE_AMOUNT
|
|
|
|
: ELEMENT_TRANSLATE_AMOUNT;
|
2020-01-09 19:22:04 +04:00
|
|
|
elements = elements.map(el => {
|
|
|
|
if (el.isSelected) {
|
|
|
|
const element = { ...el };
|
2020-01-05 15:10:42 +01: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-09 19:22:04 +04:00
|
|
|
return element;
|
2020-01-05 15:10:42 +01:00
|
|
|
}
|
2020-01-09 19:22:04 +04:00
|
|
|
return el;
|
2020-01-05 15:10:42 +01:00
|
|
|
});
|
|
|
|
this.forceUpdate();
|
|
|
|
event.preventDefault();
|
|
|
|
|
|
|
|
// Send backward: Cmd-Shift-Alt-B
|
|
|
|
} else if (
|
2020-01-07 08:27:38 +05:30
|
|
|
event[META_KEY] &&
|
2020-01-05 15:10:42 +01:00
|
|
|
event.shiftKey &&
|
|
|
|
event.altKey &&
|
|
|
|
event.code === "KeyB"
|
|
|
|
) {
|
|
|
|
this.moveOneLeft();
|
|
|
|
event.preventDefault();
|
|
|
|
|
|
|
|
// Send to back: Cmd-Shift-B
|
2020-01-07 08:27:38 +05:30
|
|
|
} else if (event[META_KEY] && event.shiftKey && event.code === "KeyB") {
|
2020-01-05 15:10:42 +01:00
|
|
|
this.moveAllLeft();
|
|
|
|
event.preventDefault();
|
|
|
|
|
|
|
|
// Bring forward: Cmd-Shift-Alt-F
|
|
|
|
} else if (
|
2020-01-07 08:27:38 +05:30
|
|
|
event[META_KEY] &&
|
2020-01-05 15:10:42 +01:00
|
|
|
event.shiftKey &&
|
|
|
|
event.altKey &&
|
|
|
|
event.code === "KeyF"
|
|
|
|
) {
|
|
|
|
this.moveOneRight();
|
|
|
|
event.preventDefault();
|
|
|
|
|
|
|
|
// Bring to front: Cmd-Shift-F
|
2020-01-07 08:27:38 +05:30
|
|
|
} else if (event[META_KEY] && event.shiftKey && event.code === "KeyF") {
|
2020-01-05 15:10:42 +01:00
|
|
|
this.moveAllRight();
|
|
|
|
event.preventDefault();
|
|
|
|
// Select all: Cmd-A
|
2020-01-07 08:27:38 +05:30
|
|
|
} else if (event[META_KEY] && event.code === "KeyA") {
|
2020-01-09 19:22:04 +04:00
|
|
|
let newElements = [...elements];
|
|
|
|
newElements.forEach(element => {
|
2020-01-05 15:10:42 +01:00
|
|
|
element.isSelected = true;
|
|
|
|
});
|
2020-01-09 19:22:04 +04:00
|
|
|
|
|
|
|
elements = newElements;
|
2020-01-05 15:10:42 +01:00
|
|
|
this.forceUpdate();
|
|
|
|
event.preventDefault();
|
|
|
|
} else if (shapesShortcutKeys.includes(event.key.toLowerCase())) {
|
2020-01-06 21:29:44 +04:00
|
|
|
this.setState({ elementType: findShapeByKey(event.key) });
|
2020-01-07 08:27:38 +05:30
|
|
|
} else if (event[META_KEY] && event.code === "KeyZ") {
|
2020-01-06 00:58:54 -03:00
|
|
|
if (event.shiftKey) {
|
|
|
|
// Redo action
|
2020-01-09 19:22:04 +04:00
|
|
|
const data = history.redoOnce(elements);
|
|
|
|
if (data !== null) {
|
|
|
|
elements = data;
|
|
|
|
}
|
2020-01-06 00:58:54 -03:00
|
|
|
} else {
|
|
|
|
// undo action
|
2020-01-09 19:22:04 +04:00
|
|
|
const data = history.undoOnce(elements);
|
|
|
|
if (data !== null) {
|
|
|
|
elements = data;
|
|
|
|
}
|
2020-01-05 15:10:42 +01:00
|
|
|
}
|
|
|
|
this.forceUpdate();
|
|
|
|
event.preventDefault();
|
2020-01-06 23:22:48 +01:00
|
|
|
// Copy Styles: Cmd-Shift-C
|
|
|
|
} else if (event.metaKey && event.shiftKey && event.code === "KeyC") {
|
2020-01-07 08:04:15 +01:00
|
|
|
this.copyStyles();
|
2020-01-06 23:22:48 +01:00
|
|
|
// Paste Styles: Cmd-Shift-V
|
|
|
|
} else if (event.metaKey && event.shiftKey && event.code === "KeyV") {
|
2020-01-07 08:04:15 +01:00
|
|
|
this.pasteStyles();
|
2020-01-06 23:22:48 +01:00
|
|
|
event.preventDefault();
|
2020-01-05 15:10:42 +01:00
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
private deleteSelectedElements = () => {
|
2020-01-09 19:22:04 +04:00
|
|
|
elements = deleteSelectedElements(elements);
|
2020-01-05 15:10:42 +01:00
|
|
|
this.forceUpdate();
|
|
|
|
};
|
|
|
|
|
|
|
|
private clearCanvas = () => {
|
|
|
|
if (window.confirm("This will clear the whole canvas. Are you sure?")) {
|
2020-01-09 19:22:04 +04:00
|
|
|
elements = [];
|
2020-01-05 15:10:42 +01:00
|
|
|
this.setState({
|
|
|
|
viewBackgroundColor: "#ffffff",
|
|
|
|
scrollX: 0,
|
|
|
|
scrollY: 0
|
|
|
|
});
|
|
|
|
this.forceUpdate();
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2020-01-07 08:04:15 +01:00
|
|
|
private copyStyles = () => {
|
|
|
|
const element = elements.find(el => el.isSelected);
|
|
|
|
if (element) {
|
|
|
|
copiedStyles = JSON.stringify(element);
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
private pasteStyles = () => {
|
|
|
|
const pastedElement = JSON.parse(copiedStyles);
|
2020-01-09 19:22:04 +04:00
|
|
|
elements = elements.map(element => {
|
2020-01-07 08:04:15 +01:00
|
|
|
if (element.isSelected) {
|
2020-01-09 19:22:04 +04:00
|
|
|
const newElement = {
|
|
|
|
...element,
|
|
|
|
backgroundColor: pastedElement?.backgroundColor,
|
|
|
|
strokeWidth: pastedElement?.strokeWidth,
|
|
|
|
strokeColor: pastedElement?.strokeColor,
|
|
|
|
fillStyle: pastedElement?.fillStyle,
|
|
|
|
opacity: pastedElement?.opacity,
|
|
|
|
roughness: pastedElement?.roughness
|
|
|
|
};
|
|
|
|
if (isTextElement(newElement)) {
|
|
|
|
newElement.font = pastedElement?.font;
|
|
|
|
this.redrawTextBoundingBox(newElement);
|
2020-01-09 02:29:41 +01:00
|
|
|
}
|
2020-01-09 19:22:04 +04:00
|
|
|
return newElement;
|
2020-01-07 08:04:15 +01:00
|
|
|
}
|
2020-01-09 19:22:04 +04:00
|
|
|
return element;
|
2020-01-07 08:04:15 +01:00
|
|
|
});
|
|
|
|
this.forceUpdate();
|
|
|
|
};
|
|
|
|
|
2020-01-05 15:10:42 +01:00
|
|
|
private moveAllLeft = () => {
|
2020-01-09 19:22:04 +04:00
|
|
|
elements = moveAllLeft([...elements], getSelectedIndices(elements));
|
2020-01-05 15:10:42 +01:00
|
|
|
this.forceUpdate();
|
|
|
|
};
|
|
|
|
|
|
|
|
private moveOneLeft = () => {
|
2020-01-09 19:22:04 +04:00
|
|
|
elements = moveOneLeft([...elements], getSelectedIndices(elements));
|
2020-01-05 15:10:42 +01:00
|
|
|
this.forceUpdate();
|
|
|
|
};
|
|
|
|
|
|
|
|
private moveAllRight = () => {
|
2020-01-09 19:22:04 +04:00
|
|
|
elements = moveAllRight([...elements], getSelectedIndices(elements));
|
2020-01-05 15:10:42 +01:00
|
|
|
this.forceUpdate();
|
|
|
|
};
|
|
|
|
|
|
|
|
private moveOneRight = () => {
|
2020-01-09 19:22:04 +04:00
|
|
|
elements = moveOneRight([...elements], getSelectedIndices(elements));
|
2020-01-05 15:10:42 +01:00
|
|
|
this.forceUpdate();
|
|
|
|
};
|
|
|
|
|
|
|
|
private removeWheelEventListener: (() => void) | undefined;
|
|
|
|
|
2020-01-05 22:26:00 +00:00
|
|
|
private updateProjectName(name: string): void {
|
|
|
|
this.setState({ name });
|
|
|
|
}
|
|
|
|
|
2020-01-09 19:22:04 +04:00
|
|
|
private changeProperty = (
|
|
|
|
callback: (element: ExcalidrawElement) => ExcalidrawElement
|
|
|
|
) => {
|
|
|
|
elements = elements.map(element => {
|
2020-01-05 20:37:24 -03:00
|
|
|
if (element.isSelected) {
|
2020-01-09 19:22:04 +04:00
|
|
|
return callback(element);
|
2020-01-05 20:37:24 -03:00
|
|
|
}
|
2020-01-09 19:22:04 +04:00
|
|
|
return element;
|
2020-01-05 20:37:24 -03:00
|
|
|
});
|
|
|
|
|
|
|
|
this.forceUpdate();
|
|
|
|
};
|
|
|
|
|
|
|
|
private changeOpacity = (event: React.ChangeEvent<HTMLInputElement>) => {
|
2020-01-09 19:22:04 +04:00
|
|
|
this.changeProperty(element => ({
|
|
|
|
...element,
|
|
|
|
opacity: +event.target.value
|
|
|
|
}));
|
2020-01-05 20:37:24 -03:00
|
|
|
};
|
|
|
|
|
|
|
|
private changeStrokeColor = (color: string) => {
|
2020-01-09 19:22:04 +04:00
|
|
|
this.changeProperty(element => ({
|
|
|
|
...element,
|
|
|
|
strokeColor: color
|
|
|
|
}));
|
2020-01-05 20:37:24 -03:00
|
|
|
this.setState({ currentItemStrokeColor: color });
|
|
|
|
};
|
|
|
|
|
|
|
|
private changeBackgroundColor = (color: string) => {
|
2020-01-09 19:22:04 +04:00
|
|
|
this.changeProperty(element => ({
|
|
|
|
...element,
|
|
|
|
backgroundColor: color
|
|
|
|
}));
|
2020-01-05 20:37:24 -03:00
|
|
|
this.setState({ currentItemBackgroundColor: color });
|
|
|
|
};
|
|
|
|
|
2020-01-07 07:50:59 +05:00
|
|
|
private copyToClipboard = () => {
|
|
|
|
if (navigator.clipboard) {
|
|
|
|
const text = JSON.stringify(
|
|
|
|
elements.filter(element => element.isSelected)
|
|
|
|
);
|
|
|
|
navigator.clipboard.writeText(text);
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2020-01-09 12:34:46 +01:00
|
|
|
private pasteFromClipboard = () => {
|
2020-01-07 07:50:59 +05:00
|
|
|
if (navigator.clipboard) {
|
|
|
|
navigator.clipboard
|
|
|
|
.readText()
|
2020-01-09 12:34:46 +01:00
|
|
|
.then(text => this.addElementsFromPaste(text));
|
2020-01-07 07:50:59 +05:00
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2020-01-09 02:29:41 +01:00
|
|
|
private redrawTextBoundingBox = (element: ExcalidrawTextElement) => {
|
|
|
|
const metrics = measureText(element.text, element.font);
|
|
|
|
element.width = metrics.width;
|
|
|
|
element.height = metrics.height;
|
|
|
|
element.baseline = metrics.baseline;
|
2020-01-09 12:34:46 +01:00
|
|
|
};
|
2020-01-09 02:29:41 +01:00
|
|
|
|
2020-01-05 15:10:42 +01:00
|
|
|
public render() {
|
|
|
|
const canvasWidth = window.innerWidth - CANVAS_WINDOW_OFFSET_LEFT;
|
|
|
|
const canvasHeight = window.innerHeight - CANVAS_WINDOW_OFFSET_TOP;
|
|
|
|
|
|
|
|
return (
|
|
|
|
<div
|
|
|
|
className="container"
|
|
|
|
onCut={e => {
|
|
|
|
e.clipboardData.setData(
|
|
|
|
"text/plain",
|
|
|
|
JSON.stringify(elements.filter(element => element.isSelected))
|
|
|
|
);
|
2020-01-09 19:22:04 +04:00
|
|
|
elements = deleteSelectedElements(elements);
|
2020-01-05 15:10:42 +01:00
|
|
|
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");
|
2020-01-07 07:50:59 +05:00
|
|
|
this.addElementsFromPaste(paste);
|
2020-01-05 15:10:42 +01:00
|
|
|
e.preventDefault();
|
|
|
|
}}
|
|
|
|
>
|
|
|
|
<div className="sidePanel">
|
2020-01-07 15:06:22 +04:00
|
|
|
<PanelTools
|
|
|
|
activeTool={this.state.elementType}
|
|
|
|
onToolChange={value => {
|
|
|
|
this.setState({ elementType: value });
|
2020-01-09 19:22:04 +04:00
|
|
|
elements = clearSelection(elements);
|
2020-01-07 15:06:22 +04:00
|
|
|
document.documentElement.style.cursor =
|
|
|
|
value === "text" ? "text" : "crosshair";
|
|
|
|
this.forceUpdate();
|
|
|
|
}}
|
|
|
|
/>
|
2020-01-09 01:06:36 +04:00
|
|
|
<Panel title="Selection" hide={!someElementIsSelected(elements)}>
|
|
|
|
<PanelSelection
|
|
|
|
onBringForward={this.moveOneRight}
|
|
|
|
onBringToFront={this.moveAllRight}
|
|
|
|
onSendBackward={this.moveOneLeft}
|
|
|
|
onSendToBack={this.moveAllLeft}
|
|
|
|
/>
|
|
|
|
|
|
|
|
<PanelColor
|
|
|
|
title="Stroke Color"
|
|
|
|
onColorChange={this.changeStrokeColor}
|
|
|
|
colorValue={getSelectedAttribute(
|
|
|
|
elements,
|
|
|
|
element => element.strokeColor
|
2020-01-05 20:37:24 -03:00
|
|
|
)}
|
2020-01-09 01:06:36 +04:00
|
|
|
/>
|
|
|
|
|
|
|
|
{hasBackground(elements) && (
|
|
|
|
<>
|
|
|
|
<PanelColor
|
|
|
|
title="Background Color"
|
|
|
|
onColorChange={this.changeBackgroundColor}
|
|
|
|
colorValue={getSelectedAttribute(
|
|
|
|
elements,
|
|
|
|
element => element.backgroundColor
|
|
|
|
)}
|
|
|
|
/>
|
|
|
|
|
|
|
|
<h5>Fill</h5>
|
|
|
|
<ButtonSelect
|
|
|
|
options={[
|
|
|
|
{ value: "solid", text: "Solid" },
|
|
|
|
{ value: "hachure", text: "Hachure" },
|
|
|
|
{ value: "cross-hatch", text: "Cross-hatch" }
|
|
|
|
]}
|
|
|
|
value={getSelectedAttribute(
|
|
|
|
elements,
|
|
|
|
element => element.fillStyle
|
|
|
|
)}
|
|
|
|
onChange={value => {
|
2020-01-09 19:22:04 +04:00
|
|
|
this.changeProperty(element => ({
|
|
|
|
...element,
|
|
|
|
fillStyle: value
|
|
|
|
}));
|
2020-01-09 01:06:36 +04:00
|
|
|
}}
|
|
|
|
/>
|
|
|
|
</>
|
|
|
|
)}
|
|
|
|
|
|
|
|
{hasStroke(elements) && (
|
|
|
|
<>
|
|
|
|
<h5>Stroke Width</h5>
|
|
|
|
<ButtonSelect
|
|
|
|
options={[
|
|
|
|
{ value: 1, text: "Thin" },
|
|
|
|
{ value: 2, text: "Bold" },
|
|
|
|
{ value: 4, text: "Extra Bold" }
|
|
|
|
]}
|
|
|
|
value={getSelectedAttribute(
|
|
|
|
elements,
|
|
|
|
element => element.strokeWidth
|
|
|
|
)}
|
|
|
|
onChange={value => {
|
2020-01-09 19:22:04 +04:00
|
|
|
this.changeProperty(element => ({
|
|
|
|
...element,
|
|
|
|
strokeWidth: value
|
|
|
|
}));
|
2020-01-09 01:06:36 +04:00
|
|
|
}}
|
|
|
|
/>
|
|
|
|
|
|
|
|
<h5>Sloppiness</h5>
|
|
|
|
<ButtonSelect
|
|
|
|
options={[
|
|
|
|
{ value: 0, text: "Draftsman" },
|
|
|
|
{ value: 1, text: "Artist" },
|
|
|
|
{ value: 3, text: "Cartoonist" }
|
|
|
|
]}
|
|
|
|
value={getSelectedAttribute(
|
|
|
|
elements,
|
|
|
|
element => element.roughness
|
|
|
|
)}
|
|
|
|
onChange={value =>
|
2020-01-09 19:22:04 +04:00
|
|
|
this.changeProperty(element => ({
|
|
|
|
...element,
|
|
|
|
roughness: value
|
|
|
|
}))
|
2020-01-09 01:06:36 +04:00
|
|
|
}
|
|
|
|
/>
|
|
|
|
</>
|
|
|
|
)}
|
|
|
|
|
2020-01-09 02:29:41 +01:00
|
|
|
{hasText(elements) && (
|
|
|
|
<>
|
|
|
|
<h5>Font size</h5>
|
|
|
|
<ButtonSelect
|
|
|
|
options={[
|
2020-01-09 12:34:46 +01:00
|
|
|
{ value: 16, text: "Small" },
|
2020-01-09 02:29:41 +01:00
|
|
|
{ value: 20, text: "Medium" },
|
|
|
|
{ value: 28, text: "Large" },
|
|
|
|
{ value: 36, text: "Very Large" }
|
|
|
|
]}
|
|
|
|
value={getSelectedAttribute(
|
|
|
|
elements,
|
2020-01-09 12:34:46 +01:00
|
|
|
element =>
|
|
|
|
isTextElement(element) && +element.font.split("px ")[0]
|
2020-01-09 02:29:41 +01:00
|
|
|
)}
|
|
|
|
onChange={value =>
|
|
|
|
this.changeProperty(element => {
|
2020-01-09 12:34:46 +01:00
|
|
|
if (isTextElement(element)) {
|
|
|
|
element.font = `${value}px ${
|
|
|
|
element.font.split("px ")[1]
|
|
|
|
}`;
|
2020-01-09 02:29:41 +01:00
|
|
|
this.redrawTextBoundingBox(element);
|
|
|
|
}
|
2020-01-09 19:22:04 +04:00
|
|
|
|
|
|
|
return element;
|
2020-01-09 02:29:41 +01:00
|
|
|
})
|
|
|
|
}
|
|
|
|
/>
|
|
|
|
<h5>Font familly</h5>
|
2020-01-09 12:34:46 +01:00
|
|
|
<ButtonSelect
|
2020-01-09 02:29:41 +01:00
|
|
|
options={[
|
2020-01-09 12:34:46 +01:00
|
|
|
{ value: "Virgil", text: "Virgil" },
|
|
|
|
{ value: "Helvetica", text: "Helvetica" },
|
|
|
|
{ value: "Courier", text: "Courier" }
|
2020-01-09 02:29:41 +01:00
|
|
|
]}
|
|
|
|
value={getSelectedAttribute(
|
|
|
|
elements,
|
2020-01-09 12:34:46 +01:00
|
|
|
element =>
|
|
|
|
isTextElement(element) && element.font.split("px ")[1]
|
2020-01-09 02:29:41 +01:00
|
|
|
)}
|
|
|
|
onChange={value =>
|
|
|
|
this.changeProperty(element => {
|
2020-01-09 12:34:46 +01:00
|
|
|
if (isTextElement(element)) {
|
|
|
|
element.font = `${
|
|
|
|
element.font.split("px ")[0]
|
|
|
|
}px ${value}`;
|
2020-01-09 02:29:41 +01:00
|
|
|
this.redrawTextBoundingBox(element);
|
|
|
|
}
|
2020-01-09 19:22:04 +04:00
|
|
|
|
|
|
|
return element;
|
2020-01-09 02:29:41 +01:00
|
|
|
})
|
|
|
|
}
|
|
|
|
/>
|
|
|
|
</>
|
|
|
|
)}
|
|
|
|
|
2020-01-09 01:06:36 +04:00
|
|
|
<h5>Opacity</h5>
|
|
|
|
<input
|
|
|
|
type="range"
|
|
|
|
min="0"
|
|
|
|
max="100"
|
|
|
|
onChange={this.changeOpacity}
|
|
|
|
value={
|
|
|
|
getSelectedAttribute(elements, element => element.opacity) ||
|
|
|
|
0 /* Put the opacity at 0 if there are two conflicting ones */
|
|
|
|
}
|
|
|
|
/>
|
|
|
|
|
|
|
|
<button onClick={this.deleteSelectedElements}>
|
|
|
|
Delete selected
|
|
|
|
</button>
|
|
|
|
</Panel>
|
2020-01-07 15:06:22 +04:00
|
|
|
<PanelCanvas
|
|
|
|
onClearCanvas={this.clearCanvas}
|
|
|
|
onViewBackgroundColorChange={val =>
|
|
|
|
this.setState({ viewBackgroundColor: val })
|
|
|
|
}
|
|
|
|
viewBackgroundColor={this.state.viewBackgroundColor}
|
|
|
|
/>
|
|
|
|
<PanelExport
|
|
|
|
projectName={this.state.name}
|
|
|
|
onProjectNameChange={this.updateProjectName}
|
2020-01-09 02:00:59 +04:00
|
|
|
onExportAsPNG={() =>
|
|
|
|
exportAsPNG(elements, this.canvas!, this.state)
|
|
|
|
}
|
2020-01-07 15:06:22 +04:00
|
|
|
exportBackground={this.state.exportBackground}
|
|
|
|
onExportBackgroundChange={val =>
|
|
|
|
this.setState({ exportBackground: val })
|
|
|
|
}
|
|
|
|
onSaveScene={() => saveAsJSON(elements, this.state.name)}
|
|
|
|
onLoadScene={() =>
|
2020-01-09 19:22:04 +04:00
|
|
|
loadFromJSON().then(({ elements: newElements }) => {
|
|
|
|
elements = newElements;
|
|
|
|
this.forceUpdate();
|
|
|
|
})
|
2020-01-07 15:06:22 +04:00
|
|
|
}
|
|
|
|
/>
|
2020-01-05 15:10:42 +01:00
|
|
|
</div>
|
|
|
|
<canvas
|
|
|
|
id="canvas"
|
|
|
|
style={{
|
|
|
|
width: canvasWidth,
|
|
|
|
height: canvasHeight
|
|
|
|
}}
|
|
|
|
width={canvasWidth * window.devicePixelRatio}
|
|
|
|
height={canvasHeight * window.devicePixelRatio}
|
|
|
|
ref={canvas => {
|
2020-01-09 02:00:59 +04:00
|
|
|
if (this.canvas === null) {
|
|
|
|
this.canvas = canvas;
|
|
|
|
this.rc = rough.canvas(this.canvas!);
|
|
|
|
}
|
2020-01-05 15:10:42 +01:00
|
|
|
if (this.removeWheelEventListener) {
|
|
|
|
this.removeWheelEventListener();
|
|
|
|
this.removeWheelEventListener = undefined;
|
|
|
|
}
|
|
|
|
if (canvas) {
|
|
|
|
canvas.addEventListener("wheel", this.handleWheel, {
|
|
|
|
passive: false
|
|
|
|
});
|
|
|
|
this.removeWheelEventListener = () =>
|
|
|
|
canvas.removeEventListener("wheel", this.handleWheel);
|
|
|
|
|
|
|
|
// Whenever React sets the width/height of the canvas element,
|
|
|
|
// the context loses the scale transform. We need to re-apply it
|
|
|
|
if (
|
|
|
|
canvasWidth !== lastCanvasWidth ||
|
|
|
|
canvasHeight !== lastCanvasHeight
|
|
|
|
) {
|
|
|
|
lastCanvasWidth = canvasWidth;
|
|
|
|
lastCanvasHeight = canvasHeight;
|
|
|
|
canvas
|
|
|
|
.getContext("2d")!
|
|
|
|
.scale(window.devicePixelRatio, window.devicePixelRatio);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}}
|
2020-01-07 07:50:59 +05:00
|
|
|
onContextMenu={e => {
|
|
|
|
e.preventDefault();
|
|
|
|
|
2020-01-08 23:56:35 -03:00
|
|
|
const { x, y } = viewportCoordsToSceneCoords(e, this.state);
|
2020-01-07 07:50:59 +05:00
|
|
|
|
|
|
|
const element = getElementAtPosition(elements, x, y);
|
|
|
|
if (!element) {
|
|
|
|
ContextMenu.push({
|
|
|
|
options: [
|
|
|
|
navigator.clipboard && {
|
|
|
|
label: "Paste",
|
2020-01-09 12:34:46 +01:00
|
|
|
action: () => this.pasteFromClipboard()
|
2020-01-07 07:50:59 +05:00
|
|
|
}
|
|
|
|
],
|
|
|
|
top: e.clientY,
|
|
|
|
left: e.clientX
|
|
|
|
});
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!element.isSelected) {
|
2020-01-09 19:22:04 +04:00
|
|
|
elements = clearSelection(elements);
|
2020-01-07 07:50:59 +05:00
|
|
|
element.isSelected = true;
|
|
|
|
this.forceUpdate();
|
|
|
|
}
|
|
|
|
|
|
|
|
ContextMenu.push({
|
|
|
|
options: [
|
|
|
|
navigator.clipboard && {
|
|
|
|
label: "Copy",
|
|
|
|
action: this.copyToClipboard
|
|
|
|
},
|
|
|
|
navigator.clipboard && {
|
|
|
|
label: "Paste",
|
2020-01-09 12:34:46 +01:00
|
|
|
action: () => this.pasteFromClipboard()
|
2020-01-07 07:50:59 +05:00
|
|
|
},
|
2020-01-07 08:04:15 +01:00
|
|
|
{ label: "Copy Styles", action: this.copyStyles },
|
|
|
|
{ label: "Paste Styles", action: this.pasteStyles },
|
2020-01-07 07:50:59 +05:00
|
|
|
{ label: "Delete", action: this.deleteSelectedElements },
|
|
|
|
{ label: "Move Forward", action: this.moveOneRight },
|
|
|
|
{ label: "Send to Front", action: this.moveAllRight },
|
|
|
|
{ label: "Move Backwards", action: this.moveOneLeft },
|
|
|
|
{ label: "Send to Back", action: this.moveAllLeft }
|
|
|
|
],
|
|
|
|
top: e.clientY,
|
|
|
|
left: e.clientX
|
|
|
|
});
|
|
|
|
}}
|
2020-01-05 15:10:42 +01:00
|
|
|
onMouseDown={e => {
|
|
|
|
if (lastMouseUp !== null) {
|
|
|
|
// Unfortunately, sometimes we don't get a mouseup after a mousedown,
|
|
|
|
// this can happen when a contextual menu or alert is triggered. In order to avoid
|
|
|
|
// being in a weird state, we clean up on the next mousedown
|
|
|
|
lastMouseUp(e);
|
|
|
|
}
|
|
|
|
// only handle left mouse button
|
|
|
|
if (e.button !== 0) return;
|
|
|
|
// fixes mousemove causing selection of UI texts #32
|
|
|
|
e.preventDefault();
|
|
|
|
// 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-05 23:06:21 +05:00
|
|
|
// Handle scrollbars dragging
|
|
|
|
const {
|
|
|
|
isOverHorizontalScrollBar,
|
|
|
|
isOverVerticalScrollBar
|
|
|
|
} = isOverScrollBars(
|
2020-01-06 20:24:54 +04:00
|
|
|
elements,
|
2020-01-05 23:06:21 +05:00
|
|
|
e.clientX - CANVAS_WINDOW_OFFSET_LEFT,
|
|
|
|
e.clientY - CANVAS_WINDOW_OFFSET_TOP,
|
|
|
|
canvasWidth,
|
|
|
|
canvasHeight,
|
|
|
|
this.state.scrollX,
|
|
|
|
this.state.scrollY
|
|
|
|
);
|
|
|
|
|
2020-01-08 23:56:35 -03:00
|
|
|
const { x, y } = viewportCoordsToSceneCoords(e, this.state);
|
|
|
|
|
2020-01-05 15:10:42 +01:00
|
|
|
const element = newElement(
|
|
|
|
this.state.elementType,
|
|
|
|
x,
|
|
|
|
y,
|
|
|
|
this.state.currentItemStrokeColor,
|
2020-01-05 20:37:24 -03:00
|
|
|
this.state.currentItemBackgroundColor,
|
|
|
|
"hachure",
|
|
|
|
1,
|
|
|
|
1,
|
|
|
|
100
|
2020-01-05 15:10:42 +01:00
|
|
|
);
|
2020-01-08 23:56:35 -03:00
|
|
|
type ResizeTestType = ReturnType<typeof resizeTest>;
|
|
|
|
let resizeHandle: ResizeTestType = false;
|
2020-01-05 15:10:42 +01:00
|
|
|
let isDraggingElements = false;
|
|
|
|
let isResizingElements = false;
|
|
|
|
if (this.state.elementType === "selection") {
|
2020-01-08 23:56:35 -03:00
|
|
|
const resizeElement = getElementWithResizeHandler(
|
|
|
|
elements,
|
|
|
|
{ x, y },
|
|
|
|
this.state
|
|
|
|
);
|
2020-01-05 15:10:42 +01:00
|
|
|
|
|
|
|
this.setState({
|
2020-01-08 23:56:35 -03:00
|
|
|
resizingElement: resizeElement ? resizeElement.element : null
|
2020-01-05 15:10:42 +01:00
|
|
|
});
|
|
|
|
|
|
|
|
if (resizeElement) {
|
2020-01-08 23:56:35 -03:00
|
|
|
resizeHandle = resizeElement.resizeHandle;
|
2020-01-05 15:10:42 +01:00
|
|
|
document.documentElement.style.cursor = `${resizeHandle}-resize`;
|
|
|
|
isResizingElements = true;
|
|
|
|
} else {
|
2020-01-09 19:22:04 +04:00
|
|
|
const selected = getElementAtPosition(
|
|
|
|
elements.filter(el => el.isSelected),
|
|
|
|
x,
|
|
|
|
y
|
|
|
|
);
|
|
|
|
// clear selection if shift is not clicked
|
|
|
|
if (!selected && !e.shiftKey) {
|
|
|
|
elements = clearSelection(elements);
|
|
|
|
}
|
2020-01-06 20:24:54 +04:00
|
|
|
const hitElement = getElementAtPosition(elements, x, y);
|
2020-01-05 15:10:42 +01:00
|
|
|
|
|
|
|
// If we click on something
|
|
|
|
if (hitElement) {
|
2020-01-09 19:22:04 +04:00
|
|
|
// deselect if item is selected
|
|
|
|
// if shift is not clicked, this will always return true
|
|
|
|
// otherwise, it will trigger selection based on current
|
|
|
|
// state of the box
|
2020-01-08 17:03:13 +01:00
|
|
|
hitElement.isSelected = true;
|
2020-01-09 19:22:04 +04:00
|
|
|
|
|
|
|
// No matter what, we select it
|
2020-01-08 17:03:13 +01:00
|
|
|
// We duplicate the selected element if alt is pressed on Mouse down
|
|
|
|
if (e.altKey) {
|
2020-01-09 19:22:04 +04:00
|
|
|
elements = [
|
|
|
|
...elements,
|
2020-01-08 18:09:02 +01:00
|
|
|
...elements.reduce((duplicates, element) => {
|
|
|
|
if (element.isSelected) {
|
2020-01-09 19:22:04 +04:00
|
|
|
duplicates = duplicates.concat(
|
|
|
|
duplicateElement(element)
|
|
|
|
);
|
2020-01-08 18:09:02 +01:00
|
|
|
element.isSelected = false;
|
|
|
|
}
|
|
|
|
return duplicates;
|
|
|
|
}, [] as typeof elements)
|
2020-01-09 19:22:04 +04:00
|
|
|
];
|
2020-01-05 15:10:42 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-01-06 20:24:54 +04:00
|
|
|
isDraggingElements = someElementIsSelected(elements);
|
2020-01-05 15:10:42 +01:00
|
|
|
|
|
|
|
if (isDraggingElements) {
|
|
|
|
document.documentElement.style.cursor = "move";
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (isTextElement(element)) {
|
2020-01-09 01:09:09 +05:00
|
|
|
let textX = e.clientX;
|
|
|
|
let textY = e.clientY;
|
|
|
|
if (!e.altKey) {
|
|
|
|
const snappedToCenterPosition = this.getTextWysiwygSnappedToCenterPosition(
|
|
|
|
x,
|
|
|
|
y
|
|
|
|
);
|
|
|
|
if (snappedToCenterPosition) {
|
|
|
|
element.x = snappedToCenterPosition.elementCenterX;
|
|
|
|
element.y = snappedToCenterPosition.elementCenterY;
|
|
|
|
textX = snappedToCenterPosition.wysiwygX;
|
|
|
|
textY = snappedToCenterPosition.wysiwygY;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-01-07 22:21:05 +05:00
|
|
|
textWysiwyg({
|
|
|
|
initText: "",
|
2020-01-09 01:09:09 +05:00
|
|
|
x: textX,
|
|
|
|
y: textY,
|
2020-01-07 22:21:05 +05:00
|
|
|
strokeColor: this.state.currentItemStrokeColor,
|
|
|
|
font: this.state.currentItemFont,
|
|
|
|
onSubmit: text => {
|
|
|
|
addTextElement(element, text, this.state.currentItemFont);
|
2020-01-09 19:22:04 +04:00
|
|
|
elements = [...elements, { ...element, isSelected: true }];
|
2020-01-07 22:21:05 +05:00
|
|
|
this.setState({
|
|
|
|
draggingElement: null,
|
|
|
|
elementType: "selection"
|
|
|
|
});
|
|
|
|
}
|
|
|
|
});
|
|
|
|
return;
|
2020-01-05 15:10:42 +01:00
|
|
|
}
|
|
|
|
|
2020-01-06 19:50:37 -08:00
|
|
|
if (this.state.elementType === "text") {
|
2020-01-09 19:22:04 +04:00
|
|
|
elements = [...elements, { ...element, isSelected: true }];
|
2020-01-06 19:50:37 -08:00
|
|
|
this.setState({
|
|
|
|
draggingElement: null,
|
|
|
|
elementType: "selection"
|
|
|
|
});
|
|
|
|
} else {
|
2020-01-09 19:22:04 +04:00
|
|
|
elements = [...elements, element];
|
2020-01-06 19:50:37 -08:00
|
|
|
this.setState({ draggingElement: element });
|
|
|
|
}
|
2020-01-05 15:10:42 +01:00
|
|
|
|
|
|
|
let lastX = x;
|
|
|
|
let lastY = y;
|
|
|
|
|
2020-01-05 23:06:21 +05:00
|
|
|
if (isOverHorizontalScrollBar || isOverVerticalScrollBar) {
|
|
|
|
lastX = e.clientX - CANVAS_WINDOW_OFFSET_LEFT;
|
|
|
|
lastY = e.clientY - CANVAS_WINDOW_OFFSET_TOP;
|
|
|
|
}
|
|
|
|
|
2020-01-05 15:10:42 +01:00
|
|
|
const onMouseMove = (e: MouseEvent) => {
|
|
|
|
const target = e.target;
|
|
|
|
if (!(target instanceof HTMLElement)) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2020-01-05 23:06:21 +05:00
|
|
|
if (isOverHorizontalScrollBar) {
|
|
|
|
const x = e.clientX - CANVAS_WINDOW_OFFSET_LEFT;
|
|
|
|
const dx = x - lastX;
|
|
|
|
this.setState(state => ({ scrollX: state.scrollX - dx }));
|
|
|
|
lastX = x;
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (isOverVerticalScrollBar) {
|
|
|
|
const y = e.clientY - CANVAS_WINDOW_OFFSET_TOP;
|
|
|
|
const dy = y - lastY;
|
|
|
|
this.setState(state => ({ scrollY: state.scrollY - dy }));
|
|
|
|
lastY = y;
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2020-01-05 15:10:42 +01:00
|
|
|
if (isResizingElements && this.state.resizingElement) {
|
|
|
|
const el = this.state.resizingElement;
|
|
|
|
const selectedElements = elements.filter(el => el.isSelected);
|
|
|
|
if (selectedElements.length === 1) {
|
2020-01-08 23:56:35 -03:00
|
|
|
const { x, y } = viewportCoordsToSceneCoords(e, this.state);
|
|
|
|
|
2020-01-05 15:10:42 +01:00
|
|
|
selectedElements.forEach(element => {
|
|
|
|
switch (resizeHandle) {
|
|
|
|
case "nw":
|
|
|
|
element.width += element.x - lastX;
|
|
|
|
element.x = lastX;
|
2020-01-06 21:19:21 +01:00
|
|
|
if (e.shiftKey) {
|
|
|
|
element.y += element.height - element.width;
|
|
|
|
element.height = element.width;
|
|
|
|
} else {
|
|
|
|
element.height += element.y - lastY;
|
|
|
|
element.y = lastY;
|
|
|
|
}
|
2020-01-05 15:10:42 +01:00
|
|
|
break;
|
|
|
|
case "ne":
|
|
|
|
element.width = lastX - element.x;
|
2020-01-06 21:19:21 +01:00
|
|
|
if (e.shiftKey) {
|
|
|
|
element.y += element.height - element.width;
|
|
|
|
element.height = element.width;
|
|
|
|
} else {
|
|
|
|
element.height += element.y - lastY;
|
|
|
|
element.y = lastY;
|
|
|
|
}
|
2020-01-05 15:10:42 +01:00
|
|
|
break;
|
|
|
|
case "sw":
|
|
|
|
element.width += element.x - lastX;
|
|
|
|
element.x = lastX;
|
2020-01-06 21:19:21 +01:00
|
|
|
if (e.shiftKey) {
|
|
|
|
element.height = element.width;
|
|
|
|
} else {
|
|
|
|
element.height = lastY - element.y;
|
|
|
|
}
|
2020-01-05 15:10:42 +01:00
|
|
|
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;
|
|
|
|
});
|
|
|
|
lastX = x;
|
|
|
|
lastY = y;
|
|
|
|
// We don't want to save history when resizing an element
|
2020-01-06 21:58:48 +04:00
|
|
|
history.skipRecording();
|
2020-01-05 15:10:42 +01:00
|
|
|
this.forceUpdate();
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (isDraggingElements) {
|
|
|
|
const selectedElements = elements.filter(el => el.isSelected);
|
|
|
|
if (selectedElements.length) {
|
2020-01-08 23:56:35 -03:00
|
|
|
const { x, y } = viewportCoordsToSceneCoords(e, this.state);
|
|
|
|
|
2020-01-05 15:10:42 +01:00
|
|
|
selectedElements.forEach(element => {
|
|
|
|
element.x += x - lastX;
|
|
|
|
element.y += y - lastY;
|
|
|
|
});
|
|
|
|
lastX = x;
|
|
|
|
lastY = y;
|
|
|
|
// We don't want to save history when dragging an element to initially size it
|
2020-01-06 21:58:48 +04:00
|
|
|
history.skipRecording();
|
2020-01-05 15:10:42 +01:00
|
|
|
this.forceUpdate();
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// 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;
|
|
|
|
let width =
|
|
|
|
e.clientX -
|
|
|
|
CANVAS_WINDOW_OFFSET_LEFT -
|
|
|
|
draggingElement.x -
|
|
|
|
this.state.scrollX;
|
|
|
|
let height =
|
|
|
|
e.clientY -
|
|
|
|
CANVAS_WINDOW_OFFSET_TOP -
|
|
|
|
draggingElement.y -
|
|
|
|
this.state.scrollY;
|
|
|
|
draggingElement.width = width;
|
|
|
|
// Make a perfect square or circle when shift is enabled
|
2020-01-05 23:26:32 +05:00
|
|
|
draggingElement.height = e.shiftKey
|
|
|
|
? Math.abs(width) * Math.sign(height)
|
|
|
|
: height;
|
2020-01-05 15:10:42 +01:00
|
|
|
|
|
|
|
if (this.state.elementType === "selection") {
|
2020-01-09 19:22:04 +04:00
|
|
|
elements = setSelection(elements, draggingElement);
|
2020-01-05 15:10:42 +01:00
|
|
|
}
|
|
|
|
// We don't want to save history when moving an element
|
2020-01-06 21:58:48 +04:00
|
|
|
history.skipRecording();
|
2020-01-05 15:10:42 +01:00
|
|
|
this.forceUpdate();
|
|
|
|
};
|
|
|
|
|
|
|
|
const onMouseUp = (e: MouseEvent) => {
|
|
|
|
const { draggingElement, elementType } = this.state;
|
|
|
|
|
|
|
|
lastMouseUp = null;
|
|
|
|
window.removeEventListener("mousemove", onMouseMove);
|
|
|
|
window.removeEventListener("mouseup", onMouseUp);
|
|
|
|
|
|
|
|
resetCursor();
|
|
|
|
|
|
|
|
// if no element is clicked, clear the selection and redraw
|
|
|
|
if (draggingElement === null) {
|
2020-01-09 19:22:04 +04:00
|
|
|
elements = clearSelection(elements);
|
2020-01-05 15:10:42 +01:00
|
|
|
this.forceUpdate();
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (elementType === "selection") {
|
|
|
|
if (isDraggingElements) {
|
|
|
|
isDraggingElements = false;
|
|
|
|
}
|
2020-01-09 19:22:04 +04:00
|
|
|
elements = elements.slice(0, -1);
|
2020-01-05 15:10:42 +01:00
|
|
|
} else {
|
|
|
|
draggingElement.isSelected = true;
|
|
|
|
}
|
|
|
|
|
|
|
|
this.setState({
|
|
|
|
draggingElement: null,
|
|
|
|
elementType: "selection"
|
|
|
|
});
|
|
|
|
this.forceUpdate();
|
|
|
|
};
|
|
|
|
|
|
|
|
lastMouseUp = onMouseUp;
|
|
|
|
|
|
|
|
window.addEventListener("mousemove", onMouseMove);
|
|
|
|
window.addEventListener("mouseup", onMouseUp);
|
|
|
|
|
|
|
|
// We don't want to save history on mouseDown, only on mouseUp when it's fully configured
|
2020-01-06 21:58:48 +04:00
|
|
|
history.skipRecording();
|
2020-01-05 15:10:42 +01:00
|
|
|
this.forceUpdate();
|
|
|
|
}}
|
2020-01-05 22:38:19 -03:00
|
|
|
onDoubleClick={e => {
|
2020-01-08 23:56:35 -03:00
|
|
|
const { x, y } = viewportCoordsToSceneCoords(e, this.state);
|
|
|
|
|
2020-01-07 22:21:05 +05:00
|
|
|
const elementAtPosition = getElementAtPosition(elements, x, y);
|
2020-01-05 22:38:19 -03:00
|
|
|
|
|
|
|
const element = newElement(
|
|
|
|
"text",
|
|
|
|
x,
|
|
|
|
y,
|
|
|
|
this.state.currentItemStrokeColor,
|
|
|
|
this.state.currentItemBackgroundColor,
|
|
|
|
"hachure",
|
|
|
|
1,
|
|
|
|
1,
|
|
|
|
100
|
2020-01-07 22:21:05 +05:00
|
|
|
) as ExcalidrawTextElement;
|
|
|
|
|
|
|
|
let initText = "";
|
|
|
|
let textX = e.clientX;
|
|
|
|
let textY = e.clientY;
|
2020-01-09 01:09:09 +05:00
|
|
|
|
|
|
|
if (elementAtPosition && isTextElement(elementAtPosition)) {
|
2020-01-09 19:22:04 +04:00
|
|
|
elements = elements.filter(
|
|
|
|
element => element.id !== elementAtPosition.id
|
|
|
|
);
|
2020-01-09 01:09:09 +05:00
|
|
|
this.forceUpdate();
|
|
|
|
|
2020-01-07 22:21:05 +05:00
|
|
|
Object.assign(element, elementAtPosition);
|
|
|
|
// x and y will change after calling addTextElement function
|
|
|
|
element.x = elementAtPosition.x + elementAtPosition.width / 2;
|
2020-01-09 00:06:25 +05:00
|
|
|
element.y = elementAtPosition.y + elementAtPosition.height / 2;
|
2020-01-07 22:21:05 +05:00
|
|
|
initText = elementAtPosition.text;
|
|
|
|
textX =
|
|
|
|
this.state.scrollX +
|
|
|
|
elementAtPosition.x +
|
|
|
|
CANVAS_WINDOW_OFFSET_LEFT +
|
|
|
|
elementAtPosition.width / 2;
|
|
|
|
textY =
|
|
|
|
this.state.scrollY +
|
|
|
|
elementAtPosition.y +
|
|
|
|
CANVAS_WINDOW_OFFSET_TOP +
|
2020-01-09 00:06:25 +05:00
|
|
|
elementAtPosition.height / 2;
|
2020-01-09 01:09:09 +05:00
|
|
|
} else if (!e.altKey) {
|
|
|
|
const snappedToCenterPosition = this.getTextWysiwygSnappedToCenterPosition(
|
|
|
|
x,
|
|
|
|
y
|
|
|
|
);
|
|
|
|
|
|
|
|
if (snappedToCenterPosition) {
|
|
|
|
element.x = snappedToCenterPosition.elementCenterX;
|
|
|
|
element.y = snappedToCenterPosition.elementCenterY;
|
|
|
|
textX = snappedToCenterPosition.wysiwygX;
|
|
|
|
textY = snappedToCenterPosition.wysiwygY;
|
|
|
|
}
|
2020-01-06 19:50:37 -08:00
|
|
|
}
|
2020-01-05 22:38:19 -03:00
|
|
|
|
2020-01-07 22:21:05 +05:00
|
|
|
textWysiwyg({
|
|
|
|
initText,
|
|
|
|
x: textX,
|
|
|
|
y: textY,
|
|
|
|
strokeColor: element.strokeColor,
|
|
|
|
font: element.font || this.state.currentItemFont,
|
|
|
|
onSubmit: text => {
|
|
|
|
addTextElement(
|
|
|
|
element,
|
|
|
|
text,
|
|
|
|
element.font || this.state.currentItemFont
|
|
|
|
);
|
2020-01-09 19:22:04 +04:00
|
|
|
elements = [...elements, { ...element, isSelected: true }];
|
2020-01-07 22:21:05 +05:00
|
|
|
this.setState({
|
|
|
|
draggingElement: null,
|
|
|
|
elementType: "selection"
|
|
|
|
});
|
|
|
|
}
|
2020-01-05 22:38:19 -03:00
|
|
|
});
|
|
|
|
}}
|
2020-01-08 23:56:35 -03:00
|
|
|
onMouseMove={e => {
|
|
|
|
const hasDeselectedButton = Boolean(e.buttons);
|
|
|
|
if (hasDeselectedButton || this.state.elementType !== "selection") {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
const { x, y } = viewportCoordsToSceneCoords(e, this.state);
|
|
|
|
const resizeElement = getElementWithResizeHandler(
|
|
|
|
elements,
|
|
|
|
{ x, y },
|
|
|
|
this.state
|
|
|
|
);
|
|
|
|
if (resizeElement && resizeElement.resizeHandle) {
|
|
|
|
document.documentElement.style.cursor = `${resizeElement.resizeHandle}-resize`;
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
const hitElement = getElementAtPosition(elements, x, y);
|
|
|
|
if (hitElement) {
|
|
|
|
const resizeHandle = resizeTest(hitElement, x, y, {
|
|
|
|
scrollX: this.state.scrollX,
|
|
|
|
scrollY: this.state.scrollY
|
|
|
|
});
|
|
|
|
document.documentElement.style.cursor = resizeHandle
|
|
|
|
? `${resizeHandle}-resize`
|
|
|
|
: `move`;
|
|
|
|
} else {
|
|
|
|
document.documentElement.style.cursor = ``;
|
|
|
|
}
|
|
|
|
}}
|
2020-01-05 15:10:42 +01:00
|
|
|
/>
|
|
|
|
</div>
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
private handleWheel = (e: WheelEvent) => {
|
|
|
|
e.preventDefault();
|
|
|
|
const { deltaX, deltaY } = e;
|
|
|
|
this.setState(state => ({
|
|
|
|
scrollX: state.scrollX - deltaX,
|
|
|
|
scrollY: state.scrollY - deltaY
|
|
|
|
}));
|
|
|
|
};
|
|
|
|
|
2020-01-09 12:34:46 +01:00
|
|
|
private addElementsFromPaste = (paste: string) => {
|
2020-01-07 07:50:59 +05:00
|
|
|
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...
|
|
|
|
) {
|
2020-01-09 19:22:04 +04:00
|
|
|
elements = clearSelection(elements);
|
2020-01-07 07:50:59 +05:00
|
|
|
|
2020-01-09 12:34:46 +01:00
|
|
|
let subCanvasX1 = Infinity;
|
|
|
|
let subCanvasX2 = 0;
|
|
|
|
let subCanvasY1 = Infinity;
|
|
|
|
let subCanvasY2 = 0;
|
|
|
|
|
2020-01-09 19:22:04 +04:00
|
|
|
//const minX = Math.min(parsedElements.map(element => element.x));
|
|
|
|
//const minY = Math.min(parsedElements.map(element => element.y));
|
2020-01-09 12:34:46 +01:00
|
|
|
|
|
|
|
const distance = (x: number, y: number) => {
|
|
|
|
return Math.abs(x > y ? x - y : y - x);
|
|
|
|
};
|
|
|
|
|
|
|
|
parsedElements.forEach(parsedElement => {
|
|
|
|
const [x1, y1, x2, y2] = getElementAbsoluteCoords(parsedElement);
|
|
|
|
subCanvasX1 = Math.min(subCanvasX1, x1);
|
|
|
|
subCanvasY1 = Math.min(subCanvasY1, y1);
|
|
|
|
subCanvasX2 = Math.max(subCanvasX2, x2);
|
|
|
|
subCanvasY2 = Math.max(subCanvasY2, y2);
|
|
|
|
});
|
|
|
|
|
|
|
|
const elementsCenterX = distance(subCanvasX1, subCanvasX2) / 2;
|
|
|
|
const elementsCenterY = distance(subCanvasY1, subCanvasY2) / 2;
|
|
|
|
|
|
|
|
const dx =
|
|
|
|
this.state.cursorX -
|
|
|
|
this.state.scrollX -
|
|
|
|
CANVAS_WINDOW_OFFSET_LEFT -
|
|
|
|
elementsCenterX;
|
|
|
|
const dy =
|
|
|
|
this.state.cursorY -
|
|
|
|
this.state.scrollY -
|
|
|
|
CANVAS_WINDOW_OFFSET_TOP -
|
|
|
|
elementsCenterY;
|
2020-01-07 07:50:59 +05:00
|
|
|
|
2020-01-09 19:22:04 +04:00
|
|
|
elements = [
|
|
|
|
...elements,
|
|
|
|
...parsedElements.map(parsedElement => {
|
|
|
|
const duplicate = duplicateElement(parsedElement);
|
|
|
|
duplicate.x += dx;
|
|
|
|
duplicate.y += dy;
|
|
|
|
return duplicate;
|
|
|
|
})
|
|
|
|
];
|
2020-01-07 07:50:59 +05:00
|
|
|
this.forceUpdate();
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2020-01-09 01:09:09 +05:00
|
|
|
private getTextWysiwygSnappedToCenterPosition(x: number, y: number) {
|
|
|
|
const elementClickedInside = getElementContainingPosition(elements, x, y);
|
|
|
|
if (elementClickedInside) {
|
|
|
|
const elementCenterX =
|
|
|
|
elementClickedInside.x + elementClickedInside.width / 2;
|
|
|
|
const elementCenterY =
|
|
|
|
elementClickedInside.y + elementClickedInside.height / 2;
|
|
|
|
const distanceToCenter = Math.hypot(
|
|
|
|
x - elementCenterX,
|
|
|
|
y - elementCenterY
|
|
|
|
);
|
|
|
|
const isSnappedToCenter =
|
|
|
|
distanceToCenter < TEXT_TO_CENTER_SNAP_THRESHOLD;
|
|
|
|
if (isSnappedToCenter) {
|
|
|
|
const wysiwygX =
|
|
|
|
this.state.scrollX +
|
|
|
|
elementClickedInside.x +
|
|
|
|
CANVAS_WINDOW_OFFSET_LEFT +
|
|
|
|
elementClickedInside.width / 2;
|
|
|
|
const wysiwygY =
|
|
|
|
this.state.scrollY +
|
|
|
|
elementClickedInside.y +
|
|
|
|
CANVAS_WINDOW_OFFSET_TOP +
|
|
|
|
elementClickedInside.height / 2;
|
|
|
|
return { wysiwygX, wysiwygY, elementCenterX, elementCenterY };
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-01-05 15:10:42 +01:00
|
|
|
componentDidUpdate() {
|
2020-01-09 02:00:59 +04:00
|
|
|
renderScene(elements, this.rc!, this.canvas!, {
|
2020-01-05 15:10:42 +01:00
|
|
|
scrollX: this.state.scrollX,
|
|
|
|
scrollY: this.state.scrollY,
|
|
|
|
viewBackgroundColor: this.state.viewBackgroundColor
|
|
|
|
});
|
2020-01-07 20:18:20 +05:00
|
|
|
saveToLocalStorage(elements, this.state);
|
2020-01-06 21:58:48 +04:00
|
|
|
if (history.isRecording()) {
|
|
|
|
history.pushEntry(history.generateCurrentEntry(elements));
|
|
|
|
history.clearRedoStack();
|
2020-01-05 15:10:42 +01:00
|
|
|
}
|
2020-01-06 21:58:48 +04:00
|
|
|
history.resumeRecording();
|
2020-01-05 15:10:42 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
const rootElement = document.getElementById("root");
|
|
|
|
ReactDOM.render(<App />, rootElement);
|