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
|
|
|
|
2020-01-08 19:54:42 +01:00
|
|
|
import {
|
|
|
|
newElement,
|
|
|
|
duplicateElement,
|
|
|
|
resizeTest,
|
|
|
|
isTextElement,
|
2020-01-09 12:34:46 +01:00
|
|
|
textWysiwyg,
|
2020-01-12 02:22:03 +04:00
|
|
|
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,
|
|
|
|
deleteSelectedElements,
|
|
|
|
setSelection,
|
|
|
|
isOverScrollBars,
|
|
|
|
restoreFromLocalStorage,
|
|
|
|
saveToLocalStorage,
|
|
|
|
getElementAtPosition,
|
2020-01-09 01:09:09 +05:00
|
|
|
createScene,
|
2020-01-10 18:00:19 +04:00
|
|
|
getElementContainingPosition
|
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-11 20:34:21 -08:00
|
|
|
import { isInputLike, measureText, debounce } 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-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-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-12 02:22:03 +04:00
|
|
|
import {
|
|
|
|
ActionManager,
|
|
|
|
actionDeleteSelected,
|
|
|
|
actionSendBackward,
|
|
|
|
actionBringForward,
|
|
|
|
actionSendToBack,
|
|
|
|
actionBringToFront,
|
|
|
|
actionSelectAll,
|
|
|
|
actionChangeStrokeColor,
|
|
|
|
actionChangeBackgroundColor,
|
|
|
|
actionChangeOpacity,
|
|
|
|
actionChangeStrokeWidth,
|
|
|
|
actionChangeFillStyle,
|
|
|
|
actionChangeSloppiness,
|
|
|
|
actionChangeFontSize,
|
|
|
|
actionChangeFontFamily,
|
|
|
|
actionChangeViewBackgroundColor,
|
|
|
|
actionClearCanvas,
|
|
|
|
actionChangeProjectName,
|
|
|
|
actionChangeExportBackground,
|
|
|
|
actionLoadScene,
|
|
|
|
actionSaveScene,
|
|
|
|
actionCopyStyles,
|
|
|
|
actionPasteStyles
|
|
|
|
} from "./actions";
|
2020-01-10 18:00:19 +04:00
|
|
|
import { SidePanel } from "./components/SidePanel";
|
2020-01-12 02:22:03 +04:00
|
|
|
import { ActionResult } from "./actions/types";
|
2020-01-11 20:34:21 -08:00
|
|
|
import { getDefaultAppState } from "./appState";
|
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
|
|
|
|
2020-01-05 15:10:42 +01:00
|
|
|
const CANVAS_WINDOW_OFFSET_LEFT = 250;
|
|
|
|
const CANVAS_WINDOW_OFFSET_TOP = 0;
|
|
|
|
|
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-12 02:22:03 +04:00
|
|
|
actionManager: ActionManager = new ActionManager();
|
|
|
|
constructor(props: any) {
|
|
|
|
super(props);
|
|
|
|
this.actionManager.registerAction(actionDeleteSelected);
|
|
|
|
this.actionManager.registerAction(actionSendToBack);
|
|
|
|
this.actionManager.registerAction(actionBringToFront);
|
|
|
|
this.actionManager.registerAction(actionSendBackward);
|
|
|
|
this.actionManager.registerAction(actionBringForward);
|
|
|
|
this.actionManager.registerAction(actionSelectAll);
|
|
|
|
|
|
|
|
this.actionManager.registerAction(actionChangeStrokeColor);
|
|
|
|
this.actionManager.registerAction(actionChangeBackgroundColor);
|
|
|
|
this.actionManager.registerAction(actionChangeFillStyle);
|
|
|
|
this.actionManager.registerAction(actionChangeStrokeWidth);
|
|
|
|
this.actionManager.registerAction(actionChangeOpacity);
|
|
|
|
this.actionManager.registerAction(actionChangeSloppiness);
|
|
|
|
this.actionManager.registerAction(actionChangeFontSize);
|
|
|
|
this.actionManager.registerAction(actionChangeFontFamily);
|
|
|
|
|
|
|
|
this.actionManager.registerAction(actionChangeViewBackgroundColor);
|
|
|
|
this.actionManager.registerAction(actionClearCanvas);
|
|
|
|
|
|
|
|
this.actionManager.registerAction(actionChangeProjectName);
|
|
|
|
this.actionManager.registerAction(actionChangeExportBackground);
|
|
|
|
this.actionManager.registerAction(actionSaveScene);
|
|
|
|
this.actionManager.registerAction(actionLoadScene);
|
|
|
|
|
|
|
|
this.actionManager.registerAction(actionCopyStyles);
|
|
|
|
this.actionManager.registerAction(actionPasteStyles);
|
|
|
|
}
|
|
|
|
|
|
|
|
private syncActionResult = (res: ActionResult) => {
|
|
|
|
if (res.elements !== undefined) {
|
|
|
|
elements = res.elements;
|
|
|
|
this.forceUpdate();
|
|
|
|
}
|
|
|
|
|
|
|
|
if (res.appState !== undefined) {
|
|
|
|
this.setState({ ...res.appState });
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2020-01-11 21:39:16 -08:00
|
|
|
private onCut = (e: ClipboardEvent) => {
|
|
|
|
if (isInputLike(e.target)) return;
|
|
|
|
e.clipboardData?.setData(
|
|
|
|
"text/plain",
|
|
|
|
JSON.stringify(
|
|
|
|
elements
|
|
|
|
.filter(element => element.isSelected)
|
|
|
|
.map(({ shape, ...el }) => el)
|
|
|
|
)
|
|
|
|
);
|
|
|
|
elements = deleteSelectedElements(elements);
|
|
|
|
this.forceUpdate();
|
|
|
|
e.preventDefault();
|
|
|
|
};
|
|
|
|
private onCopy = (e: ClipboardEvent) => {
|
|
|
|
if (isInputLike(e.target)) return;
|
|
|
|
e.clipboardData?.setData(
|
|
|
|
"text/plain",
|
|
|
|
JSON.stringify(
|
|
|
|
elements
|
|
|
|
.filter(element => element.isSelected)
|
|
|
|
.map(({ shape, ...el }) => el)
|
|
|
|
)
|
|
|
|
);
|
|
|
|
e.preventDefault();
|
|
|
|
};
|
|
|
|
private onPaste = (e: ClipboardEvent) => {
|
|
|
|
if (isInputLike(e.target)) return;
|
|
|
|
const paste = e.clipboardData?.getData("text") || "";
|
|
|
|
this.addElementsFromPaste(paste);
|
|
|
|
e.preventDefault();
|
|
|
|
};
|
|
|
|
|
2020-01-05 15:10:42 +01:00
|
|
|
public componentDidMount() {
|
2020-01-11 21:39:16 -08:00
|
|
|
document.addEventListener("copy", this.onCopy);
|
|
|
|
document.addEventListener("paste", this.onPaste);
|
|
|
|
document.addEventListener("cut", this.onCut);
|
|
|
|
|
2020-01-05 15:10:42 +01:00
|
|
|
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() {
|
2020-01-11 21:39:16 -08:00
|
|
|
document.removeEventListener("copy", this.onCopy);
|
|
|
|
document.removeEventListener("paste", this.onPaste);
|
|
|
|
document.removeEventListener("cut", this.onCut);
|
|
|
|
|
2020-01-05 15:10:42 +01:00
|
|
|
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);
|
|
|
|
}
|
|
|
|
|
2020-01-11 20:34:21 -08:00
|
|
|
public state: AppState = getDefaultAppState();
|
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 (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();
|
2020-01-09 17:37:08 +01:00
|
|
|
this.setState({ elementType: "selection" });
|
2020-01-09 16:30:18 +01:00
|
|
|
if (window.document.activeElement instanceof HTMLElement) {
|
2020-01-09 17:37:08 +01:00
|
|
|
window.document.activeElement.blur();
|
2020-01-09 16:30:18 +01:00
|
|
|
}
|
2020-01-05 15:10:42 +01:00
|
|
|
event.preventDefault();
|
2020-01-09 16:30:18 +01:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
if (isInputLike(event.target)) return;
|
|
|
|
|
2020-01-12 02:22:03 +04:00
|
|
|
const data = this.actionManager.handleKeyDown(event, elements, this.state);
|
|
|
|
this.syncActionResult(data);
|
|
|
|
|
2020-01-11 16:06:25 -08:00
|
|
|
if (data.elements !== undefined || data.appState !== undefined) {
|
2020-01-12 02:22:03 +04:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (isArrowKey(event.key)) {
|
2020-01-05 15:10:42 +01:00
|
|
|
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();
|
2020-01-11 19:42:34 -08:00
|
|
|
} else if (
|
|
|
|
shapesShortcutKeys.includes(event.key.toLowerCase()) &&
|
|
|
|
!event.ctrlKey &&
|
|
|
|
!event.shiftKey &&
|
|
|
|
!event.altKey &&
|
|
|
|
!event.metaKey
|
|
|
|
) {
|
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-12 12:19:24 +01:00
|
|
|
const data = history.redoOnce();
|
2020-01-09 19:22:04 +04:00
|
|
|
if (data !== null) {
|
|
|
|
elements = data;
|
|
|
|
}
|
2020-01-06 00:58:54 -03:00
|
|
|
} else {
|
|
|
|
// undo action
|
2020-01-11 20:45:56 -08:00
|
|
|
const data = history.undoOnce();
|
2020-01-09 19:22:04 +04:00
|
|
|
if (data !== null) {
|
|
|
|
elements = data;
|
|
|
|
}
|
2020-01-05 15:10:42 +01:00
|
|
|
}
|
|
|
|
this.forceUpdate();
|
|
|
|
event.preventDefault();
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
private removeWheelEventListener: (() => void) | undefined;
|
|
|
|
|
2020-01-07 07:50:59 +05:00
|
|
|
private copyToClipboard = () => {
|
|
|
|
if (navigator.clipboard) {
|
|
|
|
const text = JSON.stringify(
|
2020-01-12 04:00:00 +04:00
|
|
|
elements
|
|
|
|
.filter(element => element.isSelected)
|
|
|
|
.map(({ shape, ...el }) => el)
|
2020-01-07 07:50:59 +05:00
|
|
|
);
|
|
|
|
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-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 (
|
2020-01-11 21:39:16 -08:00
|
|
|
<div className="container">
|
2020-01-10 18:00:19 +04:00
|
|
|
<SidePanel
|
2020-01-12 02:22:03 +04:00
|
|
|
actionManager={this.actionManager}
|
|
|
|
syncActionResult={this.syncActionResult}
|
|
|
|
appState={{ ...this.state }}
|
2020-01-10 18:00:19 +04:00
|
|
|
elements={elements}
|
|
|
|
onToolChange={value => {
|
|
|
|
this.setState({ elementType: value });
|
|
|
|
elements = clearSelection(elements);
|
|
|
|
document.documentElement.style.cursor =
|
|
|
|
value === "text" ? "text" : "crosshair";
|
|
|
|
this.forceUpdate();
|
|
|
|
}}
|
|
|
|
canvas={this.canvas!}
|
|
|
|
/>
|
2020-01-05 15:10:42 +01:00
|
|
|
<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-12 02:22:03 +04:00
|
|
|
...this.actionManager.getContextMenuItems(
|
|
|
|
elements,
|
|
|
|
this.state,
|
|
|
|
this.syncActionResult
|
|
|
|
)
|
2020-01-07 07:50:59 +05:00
|
|
|
],
|
|
|
|
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-12 04:00:00 +04: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 isResizingElements = false;
|
2020-01-11 02:45:58 +05:00
|
|
|
let draggingOccured = false;
|
|
|
|
let hitElement: ExcalidrawElement | null = null;
|
|
|
|
let elementIsAddedToSelection = false;
|
2020-01-05 15:10:42 +01:00
|
|
|
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-11 02:45:58 +05:00
|
|
|
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-11 02:45:58 +05:00
|
|
|
if (!hitElement.isSelected) {
|
|
|
|
hitElement.isSelected = true;
|
|
|
|
elementIsAddedToSelection = true;
|
|
|
|
}
|
2020-01-09 19:22:04 +04:00
|
|
|
|
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 = [
|
2020-01-11 19:35:06 -08:00
|
|
|
...elements.map(element => ({
|
|
|
|
...element,
|
|
|
|
isSelected: false
|
|
|
|
})),
|
|
|
|
...elements
|
|
|
|
.filter(element => element.isSelected)
|
|
|
|
.map(element => {
|
|
|
|
const newElement = duplicateElement(element);
|
|
|
|
newElement.isSelected = true;
|
|
|
|
return newElement;
|
|
|
|
})
|
2020-01-09 19:22:04 +04:00
|
|
|
];
|
2020-01-05 15:10:42 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2020-01-11 02:45:58 +05:00
|
|
|
} else {
|
|
|
|
elements = clearSelection(elements);
|
2020-01-05 15:10:42 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
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"
|
|
|
|
});
|
|
|
|
}
|
|
|
|
});
|
2020-01-11 21:00:55 -08:00
|
|
|
this.setState({ elementType: "selection" });
|
2020-01-07 22:21:05 +05:00
|
|
|
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;
|
2020-01-12 04:00:00 +04:00
|
|
|
el.shape = null;
|
2020-01-05 15:10:42 +01:00
|
|
|
});
|
|
|
|
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;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-01-11 02:45:58 +05:00
|
|
|
if (hitElement?.isSelected) {
|
|
|
|
// Marking that click was used for dragging to check
|
|
|
|
// if elements should be deselected on mouseup
|
|
|
|
draggingOccured = true;
|
2020-01-05 15:10:42 +01:00
|
|
|
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;
|
2020-01-12 04:00:00 +04:00
|
|
|
|
2020-01-05 15:10:42 +01:00
|
|
|
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-12 04:00:00 +04:00
|
|
|
draggingElement.shape = null;
|
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();
|
|
|
|
|
2020-01-11 02:45:58 +05:00
|
|
|
// If click occured on already selected element
|
|
|
|
// it is needed to remove selection from other elements
|
|
|
|
// or if SHIFT or META key pressed remove selection
|
|
|
|
// from hitted element
|
|
|
|
//
|
|
|
|
// If click occured and elements were dragged or some element
|
|
|
|
// was added to selection (on mousedown phase) we need to keep
|
|
|
|
// selection unchanged
|
|
|
|
if (
|
|
|
|
hitElement &&
|
|
|
|
!draggingOccured &&
|
|
|
|
!elementIsAddedToSelection
|
|
|
|
) {
|
|
|
|
if (e.shiftKey) {
|
|
|
|
hitElement.isSelected = false;
|
|
|
|
} else {
|
|
|
|
elements = clearSelection(elements);
|
|
|
|
hitElement.isSelected = true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-01-05 15:10:42 +01:00
|
|
|
if (draggingElement === null) {
|
2020-01-11 02:45:58 +05:00
|
|
|
// if no element is clicked, clear the selection and redraw
|
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") {
|
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"
|
|
|
|
});
|
2020-01-10 18:01:00 +03:00
|
|
|
|
|
|
|
history.resumeRecording();
|
2020-01-05 15:10:42 +01:00
|
|
|
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 18:43:24 +01: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);
|
2020-01-09 18:43:24 +01:00
|
|
|
duplicate.x += dx - minX;
|
|
|
|
duplicate.y += dy - minY;
|
2020-01-09 19:22:04 +04:00
|
|
|
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-11 20:15:41 -08:00
|
|
|
private saveDebounced = debounce(() => {
|
|
|
|
saveToLocalStorage(elements, this.state);
|
|
|
|
}, 300);
|
|
|
|
|
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-11 20:15:41 -08:00
|
|
|
this.saveDebounced();
|
2020-01-06 21:58:48 +04:00
|
|
|
if (history.isRecording()) {
|
|
|
|
history.pushEntry(history.generateCurrentEntry(elements));
|
2020-01-05 15:10:42 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
const rootElement = document.getElementById("root");
|
|
|
|
ReactDOM.render(<App />, rootElement);
|