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-13 11:04:28 -08:00
|
|
|
import rough from "roughjs/bin/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,
|
2020-01-21 00:16:22 +01:00
|
|
|
newTextElement,
|
2020-01-08 19:54:42 +01:00
|
|
|
duplicateElement,
|
|
|
|
resizeTest,
|
2020-01-16 22:16:11 +00:00
|
|
|
isInvisiblySmallElement,
|
2020-01-08 19:54:42 +01:00
|
|
|
isTextElement,
|
2020-01-09 12:34:46 +01:00
|
|
|
textWysiwyg,
|
2020-01-19 21:11:46 +00:00
|
|
|
getElementAbsoluteCoords,
|
|
|
|
getCursorForResizingElement
|
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,
|
2020-01-13 04:32:25 +05:00
|
|
|
getElementsWithinSelection,
|
2020-01-06 20:24:54 +04:00
|
|
|
isOverScrollBars,
|
|
|
|
restoreFromLocalStorage,
|
|
|
|
saveToLocalStorage,
|
|
|
|
getElementAtPosition,
|
2020-01-09 01:09:09 +05:00
|
|
|
createScene,
|
2020-01-15 20:42:02 +05:00
|
|
|
getElementContainingPosition,
|
|
|
|
hasBackground,
|
|
|
|
hasStroke,
|
|
|
|
hasText,
|
2020-01-20 00:56:19 -05:00
|
|
|
exportCanvas,
|
|
|
|
importFromBackend
|
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-21 00:16:22 +01:00
|
|
|
import { ExcalidrawElement } from "./element/types";
|
2020-01-06 13:33:22 +04:00
|
|
|
|
2020-01-21 00:16:22 +01:00
|
|
|
import { isInputLike, debounce, capitalizeString } from "./utils";
|
2020-01-19 13:21:33 -08:00
|
|
|
import { KEYS, isArrowKey } from "./keys";
|
2020-01-06 20:24:54 +04:00
|
|
|
|
2020-01-15 20:42:02 +05:00
|
|
|
import { findShapeByKey, shapesShortcutKeys, SHAPES } 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-12 07:10:15 -08:00
|
|
|
import { Action, ActionResult } from "./actions/types";
|
2020-01-11 20:34:21 -08:00
|
|
|
import { getDefaultAppState } from "./appState";
|
2020-01-15 20:42:02 +05:00
|
|
|
import { Island } from "./components/Island";
|
|
|
|
import Stack from "./components/Stack";
|
|
|
|
import { FixedSideContainer } from "./components/FixedSideContainer";
|
|
|
|
import { ToolIcon } from "./components/ToolIcon";
|
2020-01-20 15:52:19 -08:00
|
|
|
import { LockIcon } from "./components/LockIcon";
|
2020-01-15 20:42:02 +05:00
|
|
|
import { ExportDialog } from "./components/ExportDialog";
|
2020-01-21 01:14:10 +02:00
|
|
|
import { withTranslation } from "react-i18next";
|
|
|
|
import "./i18n";
|
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-15 20:42:02 +05:00
|
|
|
const CANVAS_WINDOW_OFFSET_LEFT = 0;
|
2020-01-05 15:10:42 +01:00
|
|
|
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-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-22 19:36:08 +06:00
|
|
|
const CURSOR_TYPE = {
|
|
|
|
TEXT: "text",
|
|
|
|
CROSSHAIR: "crosshair"
|
|
|
|
};
|
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-21 01:14:10 +02:00
|
|
|
export class App extends React.Component<any, AppState> {
|
2020-01-09 02:00:59 +04:00
|
|
|
canvas: HTMLCanvasElement | null = null;
|
|
|
|
rc: RoughCanvas | null = null;
|
|
|
|
|
2020-01-12 02:22:03 +04:00
|
|
|
actionManager: ActionManager = new ActionManager();
|
2020-01-12 07:10:15 -08:00
|
|
|
canvasOnlyActions: Array<Action>;
|
2020-01-12 02:22:03 +04:00
|
|
|
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);
|
2020-01-12 07:10:15 -08:00
|
|
|
|
|
|
|
this.canvasOnlyActions = [actionSelectAll];
|
2020-01-12 02:22:03 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
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-20 18:37:42 +01:00
|
|
|
private onUnload = () => {
|
|
|
|
this.saveDebounced();
|
|
|
|
this.saveDebounced.flush();
|
|
|
|
};
|
|
|
|
|
2020-01-20 00:56:19 -05:00
|
|
|
public async 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-20 18:37:42 +01:00
|
|
|
window.addEventListener("unload", this.onUnload, false);
|
2020-01-05 15:10:42 +01:00
|
|
|
|
2020-01-20 00:56:19 -05:00
|
|
|
let data;
|
|
|
|
const searchParams = new URLSearchParams(window.location.search);
|
2020-01-09 19:22:04 +04:00
|
|
|
|
2020-01-20 21:30:07 +02:00
|
|
|
if (searchParams.get("id") != null) {
|
|
|
|
data = await importFromBackend(searchParams.get("id"));
|
2020-01-20 00:56:19 -05:00
|
|
|
window.history.replaceState({}, "Excalidraw", window.location.origin);
|
|
|
|
} else {
|
|
|
|
data = restoreFromLocalStorage();
|
|
|
|
}
|
|
|
|
|
|
|
|
if (data.elements) {
|
|
|
|
elements = data.elements;
|
2020-01-09 19:22:04 +04:00
|
|
|
}
|
|
|
|
|
2020-01-20 00:56:19 -05:00
|
|
|
if (data.appState) {
|
|
|
|
this.setState(data.appState);
|
2020-01-09 19:22:04 +04:00
|
|
|
} 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-20 18:37:42 +01:00
|
|
|
window.removeEventListener("unload", this.onUnload, false);
|
2020-01-05 15:10:42 +01:00
|
|
|
}
|
|
|
|
|
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;
|
|
|
|
}
|
|
|
|
|
2020-01-22 19:36:08 +06:00
|
|
|
const shape = findShapeByKey(event.key);
|
|
|
|
|
2020-01-12 02:22:03 +04:00
|
|
|
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 &&
|
2020-01-19 07:12:49 +09:00
|
|
|
!event.metaKey &&
|
2020-01-20 00:27:00 +01:00
|
|
|
this.state.draggingElement === null
|
2020-01-11 19:42:34 -08:00
|
|
|
) {
|
2020-01-22 19:36:08 +06:00
|
|
|
if (shape === "text") {
|
|
|
|
document.documentElement.style.cursor = CURSOR_TYPE.TEXT;
|
|
|
|
} else {
|
|
|
|
document.documentElement.style.cursor = CURSOR_TYPE.CROSSHAIR;
|
|
|
|
}
|
|
|
|
this.setState({ elementType: shape });
|
2020-01-19 13:21:33 -08:00
|
|
|
} else if (event[KEYS.META] && 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-15 20:42:02 +05:00
|
|
|
private renderSelectedShapeActions(elements: readonly ExcalidrawElement[]) {
|
2020-01-21 01:14:10 +02:00
|
|
|
const { t } = this.props;
|
2020-01-19 23:32:24 +01:00
|
|
|
const { elementType, editingElement } = this.state;
|
2020-01-15 20:42:02 +05:00
|
|
|
const selectedElements = elements.filter(el => el.isSelected);
|
2020-01-19 00:45:35 +01:00
|
|
|
const hasSelectedElements = selectedElements.length > 0;
|
|
|
|
const isTextToolSelected = elementType === "text";
|
|
|
|
const isShapeToolSelected = elementType !== "selection";
|
2020-01-19 23:32:24 +01:00
|
|
|
const isEditingText = editingElement && editingElement.type === "text";
|
|
|
|
if (
|
|
|
|
!hasSelectedElements &&
|
|
|
|
!isShapeToolSelected &&
|
|
|
|
!isTextToolSelected &&
|
|
|
|
!isEditingText
|
|
|
|
) {
|
2020-01-15 20:42:02 +05:00
|
|
|
return null;
|
|
|
|
}
|
|
|
|
|
|
|
|
return (
|
|
|
|
<Island padding={4}>
|
|
|
|
<div className="panelColumn">
|
|
|
|
{this.actionManager.renderAction(
|
|
|
|
"changeStrokeColor",
|
|
|
|
elements,
|
|
|
|
this.state,
|
2020-01-21 01:14:10 +02:00
|
|
|
this.syncActionResult,
|
|
|
|
t
|
2020-01-15 20:42:02 +05:00
|
|
|
)}
|
|
|
|
|
2020-01-19 00:45:35 +01:00
|
|
|
{(hasBackground(elements) ||
|
|
|
|
(isShapeToolSelected && !isTextToolSelected)) && (
|
2020-01-15 20:42:02 +05:00
|
|
|
<>
|
|
|
|
{this.actionManager.renderAction(
|
|
|
|
"changeBackgroundColor",
|
|
|
|
elements,
|
|
|
|
this.state,
|
2020-01-21 01:14:10 +02:00
|
|
|
this.syncActionResult,
|
|
|
|
t
|
2020-01-15 20:42:02 +05:00
|
|
|
)}
|
|
|
|
|
|
|
|
{this.actionManager.renderAction(
|
|
|
|
"changeFillStyle",
|
|
|
|
elements,
|
|
|
|
this.state,
|
2020-01-21 01:14:10 +02:00
|
|
|
this.syncActionResult,
|
|
|
|
t
|
2020-01-15 20:42:02 +05:00
|
|
|
)}
|
|
|
|
<hr />
|
|
|
|
</>
|
|
|
|
)}
|
|
|
|
|
2020-01-19 00:45:35 +01:00
|
|
|
{(hasStroke(elements) ||
|
|
|
|
(isShapeToolSelected && !isTextToolSelected)) && (
|
2020-01-15 20:42:02 +05:00
|
|
|
<>
|
|
|
|
{this.actionManager.renderAction(
|
|
|
|
"changeStrokeWidth",
|
|
|
|
elements,
|
|
|
|
this.state,
|
2020-01-21 01:14:10 +02:00
|
|
|
this.syncActionResult,
|
|
|
|
t
|
2020-01-15 20:42:02 +05:00
|
|
|
)}
|
|
|
|
|
|
|
|
{this.actionManager.renderAction(
|
|
|
|
"changeSloppiness",
|
|
|
|
elements,
|
|
|
|
this.state,
|
2020-01-21 01:14:10 +02:00
|
|
|
this.syncActionResult,
|
|
|
|
t
|
2020-01-15 20:42:02 +05:00
|
|
|
)}
|
|
|
|
<hr />
|
|
|
|
</>
|
|
|
|
)}
|
|
|
|
|
2020-01-19 23:32:24 +01:00
|
|
|
{(hasText(elements) || isTextToolSelected || isEditingText) && (
|
2020-01-15 20:42:02 +05:00
|
|
|
<>
|
|
|
|
{this.actionManager.renderAction(
|
|
|
|
"changeFontSize",
|
|
|
|
elements,
|
|
|
|
this.state,
|
2020-01-21 01:14:10 +02:00
|
|
|
this.syncActionResult,
|
|
|
|
t
|
2020-01-15 20:42:02 +05:00
|
|
|
)}
|
|
|
|
|
|
|
|
{this.actionManager.renderAction(
|
|
|
|
"changeFontFamily",
|
|
|
|
elements,
|
|
|
|
this.state,
|
2020-01-21 01:14:10 +02:00
|
|
|
this.syncActionResult,
|
|
|
|
t
|
2020-01-15 20:42:02 +05:00
|
|
|
)}
|
|
|
|
<hr />
|
|
|
|
</>
|
|
|
|
)}
|
|
|
|
|
|
|
|
{this.actionManager.renderAction(
|
|
|
|
"changeOpacity",
|
|
|
|
elements,
|
|
|
|
this.state,
|
2020-01-21 01:14:10 +02:00
|
|
|
this.syncActionResult,
|
|
|
|
t
|
2020-01-15 20:42:02 +05:00
|
|
|
)}
|
|
|
|
|
|
|
|
{this.actionManager.renderAction(
|
|
|
|
"deleteSelectedElements",
|
|
|
|
elements,
|
|
|
|
this.state,
|
2020-01-21 01:14:10 +02:00
|
|
|
this.syncActionResult,
|
|
|
|
t
|
2020-01-15 20:42:02 +05:00
|
|
|
)}
|
|
|
|
</div>
|
|
|
|
</Island>
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
2020-01-20 15:52:19 -08:00
|
|
|
private renderShapeLock() {
|
|
|
|
const { elementLocked } = this.state;
|
|
|
|
return (
|
|
|
|
<LockIcon
|
|
|
|
checked={elementLocked}
|
|
|
|
onChange={() => this.setState({ elementLocked: !elementLocked })}
|
|
|
|
/>
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
2020-01-15 20:42:02 +05:00
|
|
|
private renderShapesSwitcher() {
|
2020-01-21 01:14:10 +02:00
|
|
|
const { t } = this.props;
|
|
|
|
|
2020-01-15 20:42:02 +05:00
|
|
|
return (
|
|
|
|
<>
|
2020-01-21 01:14:10 +02:00
|
|
|
{SHAPES.map(({ value, icon }, index) => {
|
|
|
|
const label = t(`toolBar.${value}`);
|
|
|
|
return (
|
|
|
|
<ToolIcon
|
|
|
|
key={value}
|
|
|
|
type="radio"
|
|
|
|
icon={icon}
|
|
|
|
checked={this.state.elementType === value}
|
|
|
|
name="editor-current-shape"
|
|
|
|
title={`${capitalizeString(label)} — ${
|
|
|
|
capitalizeString(label)[0]
|
|
|
|
}, ${index + 1}`}
|
|
|
|
onChange={() => {
|
|
|
|
this.setState({ elementType: value });
|
|
|
|
elements = clearSelection(elements);
|
|
|
|
document.documentElement.style.cursor =
|
2020-01-22 19:36:08 +06:00
|
|
|
value === "text" ? CURSOR_TYPE.TEXT : CURSOR_TYPE.CROSSHAIR;
|
2020-01-21 01:14:10 +02:00
|
|
|
this.forceUpdate();
|
|
|
|
}}
|
|
|
|
></ToolIcon>
|
|
|
|
);
|
|
|
|
})}
|
2020-01-20 15:52:19 -08:00
|
|
|
{this.renderShapeLock()}
|
2020-01-15 20:42:02 +05:00
|
|
|
</>
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
private renderCanvasActions() {
|
2020-01-21 01:14:10 +02:00
|
|
|
const { t } = this.props;
|
2020-01-15 20:42:02 +05:00
|
|
|
return (
|
|
|
|
<Stack.Col gap={4}>
|
2020-01-17 23:53:41 +05:30
|
|
|
<Stack.Row justifyContent={"space-between"}>
|
2020-01-15 20:42:02 +05:00
|
|
|
{this.actionManager.renderAction(
|
|
|
|
"loadScene",
|
|
|
|
elements,
|
|
|
|
this.state,
|
2020-01-21 01:14:10 +02:00
|
|
|
this.syncActionResult,
|
|
|
|
t
|
2020-01-15 20:42:02 +05:00
|
|
|
)}
|
|
|
|
{this.actionManager.renderAction(
|
|
|
|
"saveScene",
|
|
|
|
elements,
|
|
|
|
this.state,
|
2020-01-21 01:14:10 +02:00
|
|
|
this.syncActionResult,
|
|
|
|
t
|
2020-01-15 20:42:02 +05:00
|
|
|
)}
|
|
|
|
<ExportDialog
|
|
|
|
elements={elements}
|
|
|
|
appState={this.state}
|
|
|
|
actionManager={this.actionManager}
|
|
|
|
syncActionResult={this.syncActionResult}
|
2020-01-17 15:43:24 +01:00
|
|
|
onExportToPng={(exportedElements, scale) => {
|
2020-01-15 20:42:02 +05:00
|
|
|
if (this.canvas)
|
2020-01-17 15:43:24 +01:00
|
|
|
exportCanvas("png", exportedElements, this.canvas, {
|
|
|
|
exportBackground: this.state.exportBackground,
|
|
|
|
name: this.state.name,
|
|
|
|
viewBackgroundColor: this.state.viewBackgroundColor,
|
|
|
|
scale
|
|
|
|
});
|
2020-01-15 20:42:02 +05:00
|
|
|
}}
|
2020-01-17 15:43:24 +01:00
|
|
|
onExportToClipboard={(exportedElements, scale) => {
|
2020-01-15 20:42:02 +05:00
|
|
|
if (this.canvas)
|
2020-01-17 15:43:24 +01:00
|
|
|
exportCanvas("clipboard", exportedElements, this.canvas, {
|
|
|
|
exportBackground: this.state.exportBackground,
|
|
|
|
name: this.state.name,
|
|
|
|
viewBackgroundColor: this.state.viewBackgroundColor,
|
|
|
|
scale
|
|
|
|
});
|
2020-01-15 20:42:02 +05:00
|
|
|
}}
|
2020-01-20 00:56:19 -05:00
|
|
|
onExportToBackend={exportedElements => {
|
|
|
|
if (this.canvas)
|
|
|
|
exportCanvas(
|
|
|
|
"backend",
|
|
|
|
exportedElements,
|
|
|
|
this.canvas,
|
|
|
|
this.state
|
|
|
|
);
|
|
|
|
}}
|
2020-01-15 20:42:02 +05:00
|
|
|
/>
|
|
|
|
{this.actionManager.renderAction(
|
|
|
|
"clearCanvas",
|
|
|
|
elements,
|
|
|
|
this.state,
|
2020-01-21 01:14:10 +02:00
|
|
|
this.syncActionResult,
|
|
|
|
t
|
2020-01-15 20:42:02 +05:00
|
|
|
)}
|
|
|
|
</Stack.Row>
|
|
|
|
{this.actionManager.renderAction(
|
|
|
|
"changeViewBackgroundColor",
|
|
|
|
elements,
|
|
|
|
this.state,
|
2020-01-21 01:14:10 +02:00
|
|
|
this.syncActionResult,
|
|
|
|
t
|
2020-01-15 20:42:02 +05:00
|
|
|
)}
|
|
|
|
</Stack.Col>
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
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;
|
2020-01-21 01:14:10 +02:00
|
|
|
const { t } = this.props;
|
2020-01-05 15:10:42 +01:00
|
|
|
|
|
|
|
return (
|
2020-01-11 21:39:16 -08:00
|
|
|
<div className="container">
|
2020-01-15 20:42:02 +05:00
|
|
|
<FixedSideContainer side="top">
|
|
|
|
<div className="App-menu App-menu_top">
|
|
|
|
<Stack.Col gap={4} align="end">
|
|
|
|
<div className="App-right-menu">
|
|
|
|
<Island padding={4}>{this.renderCanvasActions()}</Island>
|
|
|
|
</div>
|
|
|
|
<div className="App-right-menu">
|
|
|
|
{this.renderSelectedShapeActions(elements)}
|
|
|
|
</div>
|
|
|
|
</Stack.Col>
|
|
|
|
<Stack.Col gap={4} align="start">
|
|
|
|
<Island padding={1}>
|
|
|
|
<Stack.Row gap={1}>{this.renderShapesSwitcher()}</Stack.Row>
|
|
|
|
</Island>
|
|
|
|
</Stack.Col>
|
|
|
|
<div />
|
|
|
|
</div>
|
|
|
|
</FixedSideContainer>
|
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 && {
|
2020-01-21 01:14:10 +02:00
|
|
|
label: t("labels.paste"),
|
2020-01-09 12:34:46 +01:00
|
|
|
action: () => this.pasteFromClipboard()
|
2020-01-12 07:10:15 -08:00
|
|
|
},
|
|
|
|
...this.actionManager.getContextMenuItems(
|
|
|
|
elements,
|
|
|
|
this.state,
|
|
|
|
this.syncActionResult,
|
2020-01-21 01:14:10 +02:00
|
|
|
action => this.canvasOnlyActions.includes(action),
|
|
|
|
t
|
2020-01-12 07:10:15 -08:00
|
|
|
)
|
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 && {
|
2020-01-21 01:14:10 +02:00
|
|
|
label: t("labels.copy"),
|
2020-01-07 07:50:59 +05:00
|
|
|
action: this.copyToClipboard
|
|
|
|
},
|
|
|
|
navigator.clipboard && {
|
2020-01-21 01:14:10 +02:00
|
|
|
label: t("labels.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,
|
2020-01-12 07:10:15 -08:00
|
|
|
this.syncActionResult,
|
2020-01-21 01:14:10 +02:00
|
|
|
action => !this.canvasOnlyActions.includes(action),
|
|
|
|
t
|
2020-01-12 02:22:03 +04:00
|
|
|
)
|
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);
|
|
|
|
}
|
2020-01-16 00:21:39 +01:00
|
|
|
|
|
|
|
// pan canvas on wheel button drag
|
|
|
|
if (e.button === 1) {
|
|
|
|
let { clientX: lastX, clientY: lastY } = e;
|
|
|
|
const onMouseMove = (e: MouseEvent) => {
|
|
|
|
document.documentElement.style.cursor = `grabbing`;
|
|
|
|
let deltaX = lastX - e.clientX;
|
|
|
|
let deltaY = lastY - e.clientY;
|
|
|
|
lastX = e.clientX;
|
|
|
|
lastY = e.clientY;
|
|
|
|
this.setState(state => ({
|
|
|
|
scrollX: state.scrollX - deltaX,
|
|
|
|
scrollY: state.scrollY - deltaY
|
|
|
|
}));
|
|
|
|
};
|
|
|
|
const onMouseUp = (lastMouseUp = (e: MouseEvent) => {
|
|
|
|
lastMouseUp = null;
|
|
|
|
resetCursor();
|
|
|
|
window.removeEventListener("mousemove", onMouseMove);
|
|
|
|
window.removeEventListener("mouseup", onMouseUp);
|
|
|
|
});
|
|
|
|
window.addEventListener("mousemove", onMouseMove, {
|
|
|
|
passive: true
|
|
|
|
});
|
|
|
|
window.addEventListener("mouseup", onMouseUp);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2020-01-05 15:10:42 +01:00
|
|
|
// 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-21 00:16:22 +01:00
|
|
|
let element = newElement(
|
2020-01-05 15:10:42 +01:00
|
|
|
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-21 00:16:22 +01:00
|
|
|
if (isTextElement(element)) {
|
|
|
|
element = newTextElement(element, "", this.state.currentItemFont);
|
|
|
|
}
|
|
|
|
|
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-19 21:11:46 +00:00
|
|
|
document.documentElement.style.cursor = getCursorForResizingElement(
|
|
|
|
resizeElement
|
|
|
|
);
|
2020-01-05 15:10:42 +01:00
|
|
|
isResizingElements = true;
|
|
|
|
} else {
|
2020-01-13 04:32:25 +05:00
|
|
|
hitElement = getElementAtPosition(elements, x, y);
|
2020-01-09 19:22:04 +04:00
|
|
|
// clear selection if shift is not clicked
|
2020-01-13 04:32:25 +05:00
|
|
|
if (!hitElement?.isSelected && !e.shiftKey) {
|
2020-01-09 19:22:04 +04:00
|
|
|
elements = clearSelection(elements);
|
|
|
|
}
|
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 => {
|
2020-01-21 00:16:22 +01:00
|
|
|
if (text) {
|
|
|
|
elements = [
|
|
|
|
...elements,
|
|
|
|
{
|
|
|
|
...newTextElement(
|
|
|
|
element,
|
|
|
|
text,
|
|
|
|
this.state.currentItemFont
|
|
|
|
),
|
|
|
|
isSelected: true
|
|
|
|
}
|
|
|
|
];
|
|
|
|
}
|
2020-01-07 22:21:05 +05:00
|
|
|
this.setState({
|
|
|
|
draggingElement: null,
|
2020-01-19 23:32:24 +01:00
|
|
|
editingElement: null,
|
2020-01-07 22:21:05 +05:00
|
|
|
elementType: "selection"
|
|
|
|
});
|
|
|
|
}
|
|
|
|
});
|
2020-01-19 23:32:24 +01:00
|
|
|
this.setState({
|
|
|
|
elementType: "selection",
|
|
|
|
editingElement: element
|
|
|
|
});
|
2020-01-07 22:21:05 +05:00
|
|
|
return;
|
2020-01-05 15:10:42 +01:00
|
|
|
}
|
|
|
|
|
2020-01-21 00:16:22 +01:00
|
|
|
elements = [...elements, element];
|
|
|
|
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-12 14:05:08 -03:00
|
|
|
let deltaX = 0;
|
|
|
|
let deltaY = 0;
|
2020-01-19 18:43:51 -03:00
|
|
|
const element = selectedElements[0];
|
|
|
|
switch (resizeHandle) {
|
|
|
|
case "nw":
|
|
|
|
deltaX = lastX - x;
|
|
|
|
element.width += deltaX;
|
|
|
|
element.x -= deltaX;
|
|
|
|
if (e.shiftKey) {
|
|
|
|
element.y += element.height - element.width;
|
|
|
|
element.height = element.width;
|
|
|
|
} else {
|
|
|
|
const deltaY = lastY - y;
|
|
|
|
element.height += deltaY;
|
|
|
|
element.y -= deltaY;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
case "ne":
|
|
|
|
element.width += x - lastX;
|
|
|
|
if (e.shiftKey) {
|
|
|
|
element.y += element.height - element.width;
|
|
|
|
element.height = element.width;
|
|
|
|
} else {
|
2020-01-12 14:05:08 -03:00
|
|
|
deltaY = lastY - y;
|
|
|
|
element.height += deltaY;
|
|
|
|
element.y -= deltaY;
|
2020-01-19 18:43:51 -03:00
|
|
|
}
|
|
|
|
break;
|
|
|
|
case "sw":
|
|
|
|
deltaX = lastX - x;
|
|
|
|
element.width += deltaX;
|
|
|
|
element.x -= deltaX;
|
|
|
|
if (e.shiftKey) {
|
|
|
|
element.height = element.width;
|
|
|
|
} else {
|
2020-01-12 14:05:08 -03:00
|
|
|
element.height += y - lastY;
|
2020-01-19 18:43:51 -03:00
|
|
|
}
|
|
|
|
break;
|
|
|
|
case "se":
|
|
|
|
element.width += x - lastX;
|
|
|
|
if (e.shiftKey) {
|
|
|
|
element.height = element.width;
|
|
|
|
} else {
|
|
|
|
element.height += y - lastY;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
case "n":
|
|
|
|
deltaY = lastY - y;
|
|
|
|
element.height += deltaY;
|
|
|
|
element.y -= deltaY;
|
|
|
|
break;
|
|
|
|
case "w":
|
|
|
|
deltaX = lastX - x;
|
|
|
|
element.width += deltaX;
|
|
|
|
element.x -= deltaX;
|
|
|
|
break;
|
|
|
|
case "s":
|
|
|
|
element.height += y - lastY;
|
|
|
|
break;
|
|
|
|
case "e":
|
|
|
|
element.width += x - lastX;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
document.documentElement.style.cursor = getCursorForResizingElement(
|
|
|
|
{ element, resizeHandle }
|
|
|
|
);
|
|
|
|
el.x = element.x;
|
|
|
|
el.y = element.y;
|
|
|
|
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-13 04:32:25 +05:00
|
|
|
draggingElement.height =
|
|
|
|
e.shiftKey && this.state.elementType !== "selection"
|
|
|
|
? 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-13 04:32:25 +05:00
|
|
|
if (!e.shiftKey) {
|
|
|
|
elements = clearSelection(elements);
|
|
|
|
}
|
|
|
|
const elementsWithinSelection = getElementsWithinSelection(
|
|
|
|
elements,
|
|
|
|
draggingElement
|
|
|
|
);
|
|
|
|
elementsWithinSelection.forEach(element => {
|
|
|
|
element.isSelected = true;
|
|
|
|
});
|
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) => {
|
2020-01-16 22:16:11 +00:00
|
|
|
const {
|
|
|
|
draggingElement,
|
|
|
|
resizingElement,
|
2020-01-20 15:52:19 -08:00
|
|
|
elementType,
|
|
|
|
elementLocked
|
2020-01-16 22:16:11 +00:00
|
|
|
} = this.state;
|
2020-01-05 15:10:42 +01:00
|
|
|
|
|
|
|
lastMouseUp = null;
|
|
|
|
window.removeEventListener("mousemove", onMouseMove);
|
|
|
|
window.removeEventListener("mouseup", onMouseUp);
|
|
|
|
|
2020-01-16 16:27:18 +00:00
|
|
|
if (
|
|
|
|
elementType !== "selection" &&
|
|
|
|
draggingElement &&
|
2020-01-16 22:16:11 +00:00
|
|
|
isInvisiblySmallElement(draggingElement)
|
2020-01-16 16:27:18 +00:00
|
|
|
) {
|
|
|
|
// remove invisible element which was added in onMouseDown
|
|
|
|
elements = elements.slice(0, -1);
|
|
|
|
this.setState({
|
|
|
|
draggingElement: null
|
|
|
|
});
|
|
|
|
this.forceUpdate();
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2020-01-16 22:16:11 +00:00
|
|
|
if (resizingElement && isInvisiblySmallElement(resizingElement)) {
|
|
|
|
elements = elements.filter(el => el.id !== resizingElement.id);
|
|
|
|
}
|
|
|
|
|
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-20 15:52:19 -08:00
|
|
|
} else if (!elementLocked) {
|
2020-01-05 15:10:42 +01:00
|
|
|
draggingElement.isSelected = true;
|
|
|
|
}
|
|
|
|
|
2020-01-20 15:52:19 -08:00
|
|
|
if (!elementLocked) {
|
|
|
|
resetCursor();
|
|
|
|
|
|
|
|
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
|
|
|
|
2020-01-21 00:16:22 +01:00
|
|
|
const element =
|
|
|
|
elementAtPosition && isTextElement(elementAtPosition)
|
|
|
|
? elementAtPosition
|
|
|
|
: newTextElement(
|
|
|
|
newElement(
|
|
|
|
"text",
|
|
|
|
x,
|
|
|
|
y,
|
|
|
|
this.state.currentItemStrokeColor,
|
|
|
|
this.state.currentItemBackgroundColor,
|
|
|
|
"hachure",
|
|
|
|
1,
|
|
|
|
1,
|
|
|
|
100
|
|
|
|
),
|
|
|
|
"", // default text
|
|
|
|
this.state.currentItemFont // default font
|
|
|
|
);
|
2020-01-07 22:21:05 +05:00
|
|
|
|
2020-01-19 23:32:24 +01:00
|
|
|
this.setState({ editingElement: element });
|
|
|
|
|
2020-01-07 22:21:05 +05:00
|
|
|
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
|
|
|
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-21 00:16:22 +01:00
|
|
|
|
|
|
|
// x and y will change after calling newTextElement function
|
|
|
|
element.x = elementAtPosition.x + elementAtPosition.width / 2;
|
|
|
|
element.y = elementAtPosition.y + 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({
|
2020-01-21 00:16:22 +01:00
|
|
|
initText: element.text,
|
2020-01-07 22:21:05 +05:00
|
|
|
x: textX,
|
|
|
|
y: textY,
|
|
|
|
strokeColor: element.strokeColor,
|
2020-01-21 00:16:22 +01:00
|
|
|
font: element.font,
|
2020-01-07 22:21:05 +05:00
|
|
|
onSubmit: text => {
|
2020-01-21 00:16:22 +01:00
|
|
|
if (text) {
|
|
|
|
elements = [
|
|
|
|
...elements,
|
|
|
|
{
|
|
|
|
// we need to recreate the element to update dimensions &
|
|
|
|
// position
|
|
|
|
...newTextElement(element, text, element.font),
|
|
|
|
isSelected: true
|
|
|
|
}
|
|
|
|
];
|
|
|
|
}
|
2020-01-07 22:21:05 +05:00
|
|
|
this.setState({
|
|
|
|
draggingElement: null,
|
2020-01-19 23:32:24 +01:00
|
|
|
editingElement: null,
|
2020-01-07 22:21:05 +05:00
|
|
|
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);
|
2020-01-12 17:24:11 -03:00
|
|
|
const selectedElements = elements.filter(e => e.isSelected).length;
|
|
|
|
if (selectedElements === 1) {
|
|
|
|
const resizeElement = getElementWithResizeHandler(
|
|
|
|
elements,
|
|
|
|
{ x, y },
|
|
|
|
this.state
|
|
|
|
);
|
|
|
|
if (resizeElement && resizeElement.resizeHandle) {
|
2020-01-19 21:11:46 +00:00
|
|
|
document.documentElement.style.cursor = getCursorForResizingElement(
|
|
|
|
resizeElement
|
|
|
|
);
|
2020-01-12 17:24:11 -03:00
|
|
|
return;
|
|
|
|
}
|
2020-01-08 23:56:35 -03:00
|
|
|
}
|
|
|
|
const hitElement = getElementAtPosition(elements, x, y);
|
2020-01-12 17:24:11 -03:00
|
|
|
document.documentElement.style.cursor = hitElement ? "move" : "";
|
2020-01-08 23:56:35 -03:00
|
|
|
}}
|
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
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-01-21 01:14:10 +02:00
|
|
|
const AppWithTrans = withTranslation()(App);
|
|
|
|
|
2020-01-05 15:10:42 +01:00
|
|
|
const rootElement = document.getElementById("root");
|
2020-01-21 15:50:25 +01:00
|
|
|
|
|
|
|
class TopErrorBoundary extends React.Component {
|
|
|
|
state = { hasError: false, stack: "", localStorage: "" };
|
|
|
|
|
|
|
|
static getDerivedStateFromError(error: any) {
|
|
|
|
console.error(error);
|
|
|
|
return {
|
|
|
|
hasError: true,
|
|
|
|
localStorage: JSON.stringify({ ...localStorage }),
|
|
|
|
stack: error.stack
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|
|
|
|
private selectTextArea(event: React.MouseEvent<HTMLTextAreaElement>) {
|
|
|
|
(event.target as HTMLTextAreaElement).select();
|
|
|
|
}
|
|
|
|
|
|
|
|
private async createGithubIssue() {
|
|
|
|
let body = "";
|
|
|
|
try {
|
|
|
|
const templateStr = (await import("./bug-issue-template")).default;
|
|
|
|
if (typeof templateStr === "string") {
|
|
|
|
body = encodeURIComponent(templateStr);
|
|
|
|
}
|
|
|
|
} catch {}
|
|
|
|
|
|
|
|
window.open(
|
|
|
|
`https://github.com/excalidraw/excalidraw/issues/new?body=${body}`
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
render() {
|
|
|
|
if (this.state.hasError) {
|
|
|
|
return (
|
|
|
|
<div className="ErrorSplash">
|
|
|
|
<div className="ErrorSplash-messageContainer">
|
|
|
|
<div className="ErrorSplash-paragraph bigger">
|
|
|
|
Encountered an error. Please{" "}
|
|
|
|
<button onClick={() => window.location.reload()}>
|
|
|
|
reload the page
|
|
|
|
</button>
|
|
|
|
.
|
|
|
|
</div>
|
|
|
|
<div className="ErrorSplash-paragraph">
|
|
|
|
If reloading doesn't work. Try{" "}
|
|
|
|
<button
|
|
|
|
onClick={() => {
|
|
|
|
localStorage.clear();
|
|
|
|
window.location.reload();
|
|
|
|
}}
|
|
|
|
>
|
|
|
|
clearing the canvas
|
|
|
|
</button>
|
|
|
|
.<br />
|
|
|
|
<div className="smaller">
|
|
|
|
(This will unfortunately result in loss of work.)
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<div>
|
|
|
|
<div className="ErrorSplash-paragraph">
|
|
|
|
Before doing so, we'd appreciate if you opened an issue on our{" "}
|
|
|
|
<button onClick={this.createGithubIssue}>bug tracker</button>.
|
|
|
|
Please include the following error stack trace & localStorage
|
|
|
|
content (provided it's not private):
|
|
|
|
</div>
|
|
|
|
<div className="ErrorSplash-paragraph">
|
|
|
|
<div className="ErrorSplash-details">
|
|
|
|
<label>Error stack trace:</label>
|
|
|
|
<textarea
|
|
|
|
rows={10}
|
|
|
|
onClick={this.selectTextArea}
|
|
|
|
defaultValue={this.state.stack}
|
|
|
|
/>
|
|
|
|
<label>LocalStorage content:</label>
|
|
|
|
<textarea
|
|
|
|
rows={5}
|
|
|
|
onClick={this.selectTextArea}
|
|
|
|
defaultValue={this.state.localStorage}
|
|
|
|
/>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
return this.props.children;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
ReactDOM.render(
|
|
|
|
<TopErrorBoundary>
|
|
|
|
<AppWithTrans />
|
|
|
|
</TopErrorBoundary>,
|
|
|
|
rootElement
|
|
|
|
);
|