123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580 |
- import React from "react";
- import socketIOClient from "socket.io-client";
- import rough from "roughjs/bin/rough";
- import { RoughCanvas } from "roughjs/bin/canvas";
- import { FlooredNumber } from "../types";
- import {
- newElement,
- newTextElement,
- duplicateElement,
- resizeTest,
- isInvisiblySmallElement,
- isTextElement,
- textWysiwyg,
- getCommonBounds,
- getCursorForResizingElement,
- getPerfectElementSize,
- normalizeDimensions,
- getElementMap,
- getDrawingVersion,
- getSyncableElements,
- newLinearElement,
- ResizeArrowFnType,
- resizeElements,
- getElementWithResizeHandler,
- canResizeMutlipleElements,
- getResizeHandlerFromCoords,
- } from "../element";
- import {
- deleteSelectedElements,
- getElementsWithinSelection,
- isOverScrollBars,
- getElementAtPosition,
- getElementContainingPosition,
- getNormalizedZoom,
- getSelectedElements,
- globalSceneState,
- isSomeElementSelected,
- calculateScrollCenter,
- } from "../scene";
- import {
- decryptAESGEM,
- encryptAESGEM,
- saveToLocalStorage,
- loadScene,
- loadFromBlob,
- SOCKET_SERVER,
- SocketUpdateDataSource,
- exportCanvas,
- } from "../data";
- import { renderScene } from "../renderer";
- import { AppState, GestureEvent, Gesture } from "../types";
- import { ExcalidrawElement, ExcalidrawTextElement } from "../element/types";
- import { distance2d, isPathALoop } from "../math";
- import {
- isWritableElement,
- isInputLike,
- isToolIcon,
- debounce,
- distance,
- resetCursor,
- viewportCoordsToSceneCoords,
- sceneCoordsToViewportCoords,
- setCursorForShape,
- } from "../utils";
- import { KEYS, isArrowKey } from "../keys";
- import { findShapeByKey, shapesShortcutKeys } from "../shapes";
- import { createHistory, SceneHistory } from "../history";
- import ContextMenu from "./ContextMenu";
- import { ActionManager } from "../actions/manager";
- import "../actions";
- import { actions } from "../actions/register";
- import { ActionResult } from "../actions/types";
- import { getDefaultAppState } from "../appState";
- import { t } from "../i18n";
- import {
- copyToAppClipboard,
- getClipboardContent,
- probablySupportsClipboardBlob,
- probablySupportsClipboardWriteText,
- } from "../clipboard";
- import { normalizeScroll } from "../scene";
- import { getCenter, getDistance } from "../gesture";
- import { createUndoAction, createRedoAction } from "../actions/actionHistory";
- import {
- CURSOR_TYPE,
- ELEMENT_SHIFT_TRANSLATE_AMOUNT,
- ELEMENT_TRANSLATE_AMOUNT,
- POINTER_BUTTON,
- DRAGGING_THRESHOLD,
- TEXT_TO_CENTER_SNAP_THRESHOLD,
- LINE_CONFIRM_THRESHOLD,
- } from "../constants";
- import { LayerUI } from "./LayerUI";
- import { ScrollBars, SceneState } from "../scene/types";
- import { generateCollaborationLink, getCollaborationLinkData } from "../data";
- import { mutateElement, newElementWith } from "../element/mutateElement";
- import { invalidateShapeForElement } from "../renderer/renderElement";
- import { unstable_batchedUpdates } from "react-dom";
- import { SceneStateCallbackRemover } from "../scene/globalScene";
- import { isLinearElement } from "../element/typeChecks";
- import { actionFinalize } from "../actions";
- /**
- * @param func handler taking at most single parameter (event).
- */
- function withBatchedUpdates<
- TFunction extends ((event: any) => void) | (() => void)
- >(func: Parameters<TFunction>["length"] extends 0 | 1 ? TFunction : never) {
- return (
- ((event) => {
- unstable_batchedUpdates(func as TFunction, event);
- }) as TFunction
- );
- }
- const { history } = createHistory();
- let didTapTwice: boolean = false;
- let tappedTwiceTimer = 0;
- let cursorX = 0;
- let cursorY = 0;
- let isHoldingSpace: boolean = false;
- let isPanning: boolean = false;
- let isDraggingScrollBar: boolean = false;
- let currentScrollBars: ScrollBars = { horizontal: null, vertical: null };
- let lastPointerUp: ((event: any) => void) | null = null;
- const gesture: Gesture = {
- pointers: new Map(),
- lastCenter: null,
- initialDistance: null,
- initialScale: null,
- };
- class Portal {
- socket: SocketIOClient.Socket | null = null;
- socketInitialized: boolean = false; // we don't want the socket to emit any updates until it is fully initalized
- roomID: string | null = null;
- roomKey: string | null = null;
- open(socket: SocketIOClient.Socket, id: string, key: string) {
- this.socket = socket;
- this.roomID = id;
- this.roomKey = key;
- }
- close() {
- if (!this.socket) {
- return;
- }
- this.socket.close();
- this.socket = null;
- this.roomID = null;
- this.roomKey = null;
- }
- isOpen() {
- return this.socketInitialized && this.socket && this.roomID && this.roomKey;
- }
- async _broadcastSocketData(
- data: SocketUpdateDataSource[keyof SocketUpdateDataSource] & {
- _brand: "socketUpdateData";
- },
- volatile: boolean = false,
- ) {
- if (this.isOpen()) {
- const json = JSON.stringify(data);
- const encoded = new TextEncoder().encode(json);
- const encrypted = await encryptAESGEM(encoded, this.roomKey!);
- this.socket!.emit(
- volatile ? "server-volatile-broadcast" : "server-broadcast",
- this.roomID,
- encrypted.data,
- encrypted.iv,
- );
- }
- }
- }
- export class App extends React.Component<any, AppState> {
- canvas: HTMLCanvasElement | null = null;
- rc: RoughCanvas | null = null;
- portal: Portal = new Portal();
- lastBroadcastedOrReceivedSceneVersion: number = -1;
- removeSceneCallback: SceneStateCallbackRemover | null = null;
- actionManager: ActionManager;
- canvasOnlyActions = ["selectAll"];
- public state: AppState = {
- ...getDefaultAppState(),
- isLoading: true,
- };
- constructor(props: any) {
- super(props);
- this.actionManager = new ActionManager(
- this.syncActionResult,
- () => this.state,
- () => globalSceneState.getElementsIncludingDeleted(),
- );
- this.actionManager.registerAll(actions);
- this.actionManager.registerAction(createUndoAction(history));
- this.actionManager.registerAction(createRedoAction(history));
- }
- public render() {
- const canvasDOMWidth = window.innerWidth;
- const canvasDOMHeight = window.innerHeight;
- const canvasScale = window.devicePixelRatio;
- const canvasWidth = canvasDOMWidth * canvasScale;
- const canvasHeight = canvasDOMHeight * canvasScale;
- return (
- <div className="container">
- <LayerUI
- canvas={this.canvas}
- appState={this.state}
- setAppState={this.setAppState}
- actionManager={this.actionManager}
- elements={globalSceneState.getElements()}
- onRoomCreate={this.openPortal}
- onRoomDestroy={this.closePortal}
- onLockToggle={this.toggleLock}
- />
- <main>
- <canvas
- id="canvas"
- style={{
- width: canvasDOMWidth,
- height: canvasDOMHeight,
- }}
- width={canvasWidth}
- height={canvasHeight}
- ref={this.handleCanvasRef}
- onContextMenu={this.handleCanvasContextMenu}
- onPointerDown={this.handleCanvasPointerDown}
- onDoubleClick={this.handleCanvasDoubleClick}
- onPointerMove={this.handleCanvasPointerMove}
- onPointerUp={this.removePointer}
- onPointerCancel={this.removePointer}
- onDrop={this.handleCanvasOnDrop}
- >
- {t("labels.drawingCanvas")}
- </canvas>
- </main>
- </div>
- );
- }
- private syncActionResult = withBatchedUpdates((res: ActionResult) => {
- if (this.unmounted) {
- return;
- }
- if (res.elements) {
- globalSceneState.replaceAllElements(res.elements);
- if (res.commitToHistory) {
- history.resumeRecording();
- }
- }
- if (res.appState) {
- if (res.commitToHistory) {
- history.resumeRecording();
- }
- this.setState((state) => ({
- ...res.appState,
- isCollaborating: state.isCollaborating,
- collaborators: state.collaborators,
- }));
- }
- });
- // Lifecycle
- private onBlur = withBatchedUpdates(() => {
- isHoldingSpace = false;
- this.saveDebounced();
- this.saveDebounced.flush();
- });
- private onUnload = () => {
- this.destroySocketClient();
- this.onBlur();
- };
- private disableEvent: EventHandlerNonNull = (event) => {
- event.preventDefault();
- };
- private initializeScene = async () => {
- const searchParams = new URLSearchParams(window.location.search);
- const id = searchParams.get("id");
- const jsonMatch = window.location.hash.match(
- /^#json=([0-9]+),([a-zA-Z0-9_-]+)$/,
- );
- const isCollaborationScene = getCollaborationLinkData(window.location.href);
- if (!isCollaborationScene) {
- let scene: ResolutionType<typeof loadScene> | undefined;
- // Backwards compatibility with legacy url format
- if (id) {
- scene = await loadScene(id);
- } else if (jsonMatch) {
- scene = await loadScene(jsonMatch[1], jsonMatch[2]);
- } else {
- scene = await loadScene(null);
- }
- if (scene) {
- this.syncActionResult(scene);
- }
- }
- // rerender text elements on font load to fix #637
- try {
- await Promise.race([
- document.fonts?.ready?.then(() => {
- globalSceneState.getElementsIncludingDeleted().forEach((element) => {
- if (isTextElement(element)) {
- invalidateShapeForElement(element);
- }
- });
- }),
- // if fonts don't load in 1s for whatever reason, don't block the UI
- new Promise((resolve) => setTimeout(resolve, 1000)),
- ]);
- } catch (error) {
- console.error(error);
- }
- if (this.state.isLoading) {
- this.setState({ isLoading: false });
- }
- // run this last else the `isLoading` state
- if (isCollaborationScene) {
- this.initializeSocketClient({ showLoadingState: true });
- }
- };
- private unmounted = false;
- public async componentDidMount() {
- if (
- process.env.NODE_ENV === "test" ||
- process.env.NODE_ENV === "development"
- ) {
- const setState = this.setState.bind(this);
- Object.defineProperties(window.h, {
- state: {
- configurable: true,
- get: () => {
- return this.state;
- },
- },
- setState: {
- configurable: true,
- value: (...args: Parameters<typeof setState>) => {
- return this.setState(...args);
- },
- },
- app: {
- configurable: true,
- value: this,
- },
- });
- }
- this.removeSceneCallback = globalSceneState.addCallback(
- this.onSceneUpdated,
- );
- document.addEventListener("copy", this.onCopy);
- document.addEventListener("paste", this.pasteFromClipboard);
- document.addEventListener("cut", this.onCut);
- document.addEventListener("keydown", this.onKeyDown, false);
- document.addEventListener("keyup", this.onKeyUp, { passive: true });
- document.addEventListener("mousemove", this.updateCurrentCursorPosition);
- window.addEventListener("resize", this.onResize, false);
- window.addEventListener("unload", this.onUnload, false);
- window.addEventListener("blur", this.onBlur, false);
- window.addEventListener("dragover", this.disableEvent, false);
- window.addEventListener("drop", this.disableEvent, false);
- // Safari-only desktop pinch zoom
- document.addEventListener(
- "gesturestart",
- this.onGestureStart as any,
- false,
- );
- document.addEventListener(
- "gesturechange",
- this.onGestureChange as any,
- false,
- );
- document.addEventListener("gestureend", this.onGestureEnd as any, false);
- window.addEventListener("beforeunload", this.beforeUnload);
- this.initializeScene();
- }
- public componentWillUnmount() {
- this.unmounted = true;
- this.removeSceneCallback!();
- document.removeEventListener("copy", this.onCopy);
- document.removeEventListener("paste", this.pasteFromClipboard);
- document.removeEventListener("cut", this.onCut);
- document.removeEventListener("keydown", this.onKeyDown, false);
- document.removeEventListener(
- "mousemove",
- this.updateCurrentCursorPosition,
- false,
- );
- document.removeEventListener("keyup", this.onKeyUp);
- window.removeEventListener("resize", this.onResize, false);
- window.removeEventListener("unload", this.onUnload, false);
- window.removeEventListener("blur", this.onBlur, false);
- window.removeEventListener("dragover", this.disableEvent, false);
- window.removeEventListener("drop", this.disableEvent, false);
- document.removeEventListener(
- "gesturestart",
- this.onGestureStart as any,
- false,
- );
- document.removeEventListener(
- "gesturechange",
- this.onGestureChange as any,
- false,
- );
- document.removeEventListener("gestureend", this.onGestureEnd as any, false);
- window.removeEventListener("beforeunload", this.beforeUnload);
- }
- private onResize = withBatchedUpdates(() => {
- globalSceneState
- .getElementsIncludingDeleted()
- .forEach((element) => invalidateShapeForElement(element));
- this.setState({});
- });
- private beforeUnload = withBatchedUpdates((event: BeforeUnloadEvent) => {
- if (
- this.state.isCollaborating &&
- globalSceneState.getElements().length > 0
- ) {
- event.preventDefault();
- // NOTE: modern browsers no longer allow showing a custom message here
- event.returnValue = "";
- }
- });
- componentDidUpdate() {
- if (this.state.isCollaborating && !this.portal.socket) {
- this.initializeSocketClient({ showLoadingState: true });
- }
- const cursorButton: {
- [id: string]: string | undefined;
- } = {};
- const pointerViewportCoords: SceneState["remotePointerViewportCoords"] = {};
- const remoteSelectedElementIds: SceneState["remoteSelectedElementIds"] = {};
- const pointerUsernames: { [id: string]: string } = {};
- this.state.collaborators.forEach((user, socketID) => {
- if (user.selectedElementIds) {
- for (const id of Object.keys(user.selectedElementIds)) {
- if (!(id in remoteSelectedElementIds)) {
- remoteSelectedElementIds[id] = [];
- }
- remoteSelectedElementIds[id].push(socketID);
- }
- }
- if (!user.pointer) {
- return;
- }
- if (user.username) {
- pointerUsernames[socketID] = user.username;
- }
- pointerViewportCoords[socketID] = sceneCoordsToViewportCoords(
- {
- sceneX: user.pointer.x,
- sceneY: user.pointer.y,
- },
- this.state,
- this.canvas,
- window.devicePixelRatio,
- );
- cursorButton[socketID] = user.button;
- });
- const elements = globalSceneState.getElements();
- const { atLeastOneVisibleElement, scrollBars } = renderScene(
- elements.filter((element) => {
- // don't render text element that's being currently edited (it's
- // rendered on remote only)
- return (
- !this.state.editingElement ||
- this.state.editingElement.type !== "text" ||
- element.id !== this.state.editingElement.id
- );
- }),
- this.state,
- this.state.selectionElement,
- window.devicePixelRatio,
- this.rc!,
- this.canvas!,
- {
- scrollX: this.state.scrollX,
- scrollY: this.state.scrollY,
- viewBackgroundColor: this.state.viewBackgroundColor,
- zoom: this.state.zoom,
- remotePointerViewportCoords: pointerViewportCoords,
- remotePointerButton: cursorButton,
- remoteSelectedElementIds: remoteSelectedElementIds,
- remotePointerUsernames: pointerUsernames,
- shouldCacheIgnoreZoom: this.state.shouldCacheIgnoreZoom,
- },
- {
- renderOptimizations: true,
- },
- );
- if (scrollBars) {
- currentScrollBars = scrollBars;
- }
- const scrolledOutside = !atLeastOneVisibleElement && elements.length > 0;
- if (this.state.scrolledOutside !== scrolledOutside) {
- this.setState({ scrolledOutside: scrolledOutside });
- }
- this.saveDebounced();
- if (
- getDrawingVersion(globalSceneState.getElementsIncludingDeleted()) >
- this.lastBroadcastedOrReceivedSceneVersion
- ) {
- this.broadcastScene("SCENE_UPDATE");
- }
- history.record(this.state, globalSceneState.getElementsIncludingDeleted());
- }
- // Copy/paste
- private onCut = withBatchedUpdates((event: ClipboardEvent) => {
- if (isWritableElement(event.target)) {
- return;
- }
- this.copyAll();
- const { elements: nextElements, appState } = deleteSelectedElements(
- globalSceneState.getElementsIncludingDeleted(),
- this.state,
- );
- globalSceneState.replaceAllElements(nextElements);
- history.resumeRecording();
- this.setState({ ...appState });
- event.preventDefault();
- });
- private onCopy = withBatchedUpdates((event: ClipboardEvent) => {
- if (isWritableElement(event.target)) {
- return;
- }
- this.copyAll();
- event.preventDefault();
- });
- private copyAll = () => {
- copyToAppClipboard(globalSceneState.getElements(), this.state);
- };
- private copyToClipboardAsPng = () => {
- const elements = globalSceneState.getElements();
- const selectedElements = getSelectedElements(elements, this.state);
- exportCanvas(
- "clipboard",
- selectedElements.length ? selectedElements : elements,
- this.state,
- this.canvas!,
- this.state,
- );
- };
- private copyToClipboardAsSvg = () => {
- const selectedElements = getSelectedElements(
- globalSceneState.getElements(),
- this.state,
- );
- exportCanvas(
- "clipboard-svg",
- selectedElements.length
- ? selectedElements
- : globalSceneState.getElements(),
- this.state,
- this.canvas!,
- this.state,
- );
- };
- private onTapStart = (event: TouchEvent) => {
- if (!didTapTwice) {
- didTapTwice = true;
- clearTimeout(tappedTwiceTimer);
- tappedTwiceTimer = window.setTimeout(() => (didTapTwice = false), 300);
- return;
- }
- // insert text only if we tapped twice with a single finger
- // event.touches.length === 1 will also prevent inserting text when user's zooming
- if (didTapTwice && event.touches.length === 1) {
- const [touch] = event.touches;
- // @ts-ignore
- this.handleCanvasDoubleClick({
- clientX: touch.clientX,
- clientY: touch.clientY,
- });
- didTapTwice = false;
- clearTimeout(tappedTwiceTimer);
- }
- event.preventDefault();
- };
- private pasteFromClipboard = withBatchedUpdates(
- async (event: ClipboardEvent | null) => {
- // #686
- const target = document.activeElement;
- const elementUnderCursor = document.elementFromPoint(cursorX, cursorY);
- if (
- // if no ClipboardEvent supplied, assume we're pasting via contextMenu
- // thus these checks don't make sense
- event &&
- (!(elementUnderCursor instanceof HTMLCanvasElement) ||
- isWritableElement(target))
- ) {
- return;
- }
- const data = await getClipboardContent(event);
- if (data.elements) {
- this.addElementsFromPaste(data.elements);
- } else if (data.text) {
- this.addTextFromPaste(data.text);
- }
- this.selectShapeTool("selection");
- event?.preventDefault();
- },
- );
- private addElementsFromPaste = (
- clipboardElements: readonly ExcalidrawElement[],
- ) => {
- const [minX, minY, maxX, maxY] = getCommonBounds(clipboardElements);
- const elementsCenterX = distance(minX, maxX) / 2;
- const elementsCenterY = distance(minY, maxY) / 2;
- const { x, y } = viewportCoordsToSceneCoords(
- { clientX: cursorX, clientY: cursorY },
- this.state,
- this.canvas,
- window.devicePixelRatio,
- );
- const dx = x - elementsCenterX;
- const dy = y - elementsCenterY;
- const newElements = clipboardElements.map((element) =>
- duplicateElement(element, {
- x: element.x + dx - minX,
- y: element.y + dy - minY,
- }),
- );
- globalSceneState.replaceAllElements([
- ...globalSceneState.getElementsIncludingDeleted(),
- ...newElements,
- ]);
- history.resumeRecording();
- this.setState({
- selectedElementIds: newElements.reduce((map, element) => {
- map[element.id] = true;
- return map;
- }, {} as any),
- });
- };
- private addTextFromPaste(text: any) {
- const { x, y } = viewportCoordsToSceneCoords(
- { clientX: cursorX, clientY: cursorY },
- this.state,
- this.canvas,
- window.devicePixelRatio,
- );
- const element = newTextElement({
- x: x,
- y: y,
- strokeColor: this.state.currentItemStrokeColor,
- backgroundColor: this.state.currentItemBackgroundColor,
- fillStyle: this.state.currentItemFillStyle,
- strokeWidth: this.state.currentItemStrokeWidth,
- roughness: this.state.currentItemRoughness,
- opacity: this.state.currentItemOpacity,
- text: text,
- font: this.state.currentItemFont,
- textAlign: this.state.currentItemTextAlign,
- });
- globalSceneState.replaceAllElements([
- ...globalSceneState.getElementsIncludingDeleted(),
- element,
- ]);
- this.setState({ selectedElementIds: { [element.id]: true } });
- history.resumeRecording();
- }
- // Collaboration
- setAppState = (obj: any) => {
- this.setState(obj);
- };
- removePointer = (event: React.PointerEvent<HTMLElement>) => {
- gesture.pointers.delete(event.pointerId);
- };
- openPortal = async () => {
- window.history.pushState(
- {},
- "Excalidraw",
- await generateCollaborationLink(),
- );
- this.initializeSocketClient({ showLoadingState: false });
- };
- closePortal = () => {
- window.history.pushState({}, "Excalidraw", window.location.origin);
- this.destroySocketClient();
- };
- toggleLock = () => {
- this.setState((prevState) => ({
- elementLocked: !prevState.elementLocked,
- elementType: prevState.elementLocked
- ? "selection"
- : prevState.elementType,
- }));
- };
- private destroySocketClient = () => {
- this.setState({
- isCollaborating: false,
- collaborators: new Map(),
- });
- this.portal.close();
- };
- private initializeSocketClient = (opts: { showLoadingState: boolean }) => {
- if (this.portal.socket) {
- return;
- }
- const roomMatch = getCollaborationLinkData(window.location.href);
- if (roomMatch) {
- const initialize = () => {
- this.portal.socketInitialized = true;
- clearTimeout(initializationTimer);
- if (this.state.isLoading && !this.unmounted) {
- this.setState({ isLoading: false });
- }
- };
- // fallback in case you're not alone in the room but still don't receive
- // initial SCENE_UPDATE message
- const initializationTimer = setTimeout(initialize, 5000);
- const updateScene = (
- decryptedData: SocketUpdateDataSource["SCENE_INIT" | "SCENE_UPDATE"],
- { scrollToContent = false }: { scrollToContent?: boolean } = {},
- ) => {
- const { elements: remoteElements } = decryptedData.payload;
- if (scrollToContent) {
- this.setState({
- ...this.state,
- ...calculateScrollCenter(
- remoteElements.filter((element) => {
- return !element.isDeleted;
- }),
- ),
- });
- }
- // Perform reconciliation - in collaboration, if we encounter
- // elements with more staler versions than ours, ignore them
- // and keep ours.
- if (
- globalSceneState.getElementsIncludingDeleted() == null ||
- globalSceneState.getElementsIncludingDeleted().length === 0
- ) {
- globalSceneState.replaceAllElements(remoteElements);
- } else {
- // create a map of ids so we don't have to iterate
- // over the array more than once.
- const localElementMap = getElementMap(
- globalSceneState.getElementsIncludingDeleted(),
- );
- // Reconcile
- const newElements = remoteElements
- .reduce((elements, element) => {
- // if the remote element references one that's currently
- // edited on local, skip it (it'll be added in the next
- // step)
- if (
- element.id === this.state.editingElement?.id ||
- element.id === this.state.resizingElement?.id ||
- element.id === this.state.draggingElement?.id
- ) {
- return elements;
- }
- if (
- localElementMap.hasOwnProperty(element.id) &&
- localElementMap[element.id].version > element.version
- ) {
- elements.push(localElementMap[element.id]);
- delete localElementMap[element.id];
- } else if (
- localElementMap.hasOwnProperty(element.id) &&
- localElementMap[element.id].version === element.version &&
- localElementMap[element.id].versionNonce !==
- element.versionNonce
- ) {
- // resolve conflicting edits deterministically by taking the one with the lowest versionNonce
- if (
- localElementMap[element.id].versionNonce <
- element.versionNonce
- ) {
- elements.push(localElementMap[element.id]);
- } else {
- // it should be highly unlikely that the two versionNonces are the same. if we are
- // really worried about this, we can replace the versionNonce with the socket id.
- elements.push(element);
- }
- delete localElementMap[element.id];
- } else {
- elements.push(element);
- delete localElementMap[element.id];
- }
- return elements;
- }, [] as Mutable<typeof remoteElements>)
- // add local elements that weren't deleted or on remote
- .concat(...Object.values(localElementMap));
- // Avoid broadcasting to the rest of the collaborators the scene
- // we just received!
- // Note: this needs to be set before replaceAllElements as it
- // syncronously calls render.
- this.lastBroadcastedOrReceivedSceneVersion = getDrawingVersion(
- newElements,
- );
- globalSceneState.replaceAllElements(newElements);
- }
- // We haven't yet implemented multiplayer undo functionality, so we clear the undo stack
- // when we receive any messages from another peer. This UX can be pretty rough -- if you
- // undo, a user makes a change, and then try to redo, your element(s) will be lost. However,
- // right now we think this is the right tradeoff.
- history.clear();
- if (this.portal.socketInitialized === false) {
- initialize();
- }
- };
- this.portal.open(
- socketIOClient(SOCKET_SERVER),
- roomMatch[1],
- roomMatch[2],
- );
- this.portal.socket!.on("init-room", () => {
- this.portal.socket &&
- this.portal.socket.emit("join-room", this.portal.roomID);
- });
- this.portal.socket!.on(
- "client-broadcast",
- async (encryptedData: ArrayBuffer, iv: Uint8Array) => {
- if (!this.portal.roomKey) {
- return;
- }
- const decryptedData = await decryptAESGEM(
- encryptedData,
- this.portal.roomKey,
- iv,
- );
- switch (decryptedData.type) {
- case "INVALID_RESPONSE":
- return;
- case "SCENE_INIT": {
- if (!this.portal.socketInitialized) {
- updateScene(decryptedData, { scrollToContent: true });
- }
- break;
- }
- case "SCENE_UPDATE":
- updateScene(decryptedData);
- break;
- case "MOUSE_LOCATION": {
- const {
- socketID,
- pointerCoords,
- button,
- username,
- selectedElementIds,
- } = decryptedData.payload;
- this.setState((state) => {
- if (!state.collaborators.has(socketID)) {
- state.collaborators.set(socketID, {});
- }
- const user = state.collaborators.get(socketID)!;
- user.pointer = pointerCoords;
- user.button = button;
- user.selectedElementIds = selectedElementIds;
- user.username = username;
- state.collaborators.set(socketID, user);
- return state;
- });
- break;
- }
- }
- },
- );
- this.portal.socket!.on("first-in-room", () => {
- if (this.portal.socket) {
- this.portal.socket.off("first-in-room");
- }
- initialize();
- });
- this.portal.socket!.on("room-user-change", (clients: string[]) => {
- this.setState((state) => {
- const collaborators: typeof state.collaborators = new Map();
- for (const socketID of clients) {
- if (state.collaborators.has(socketID)) {
- collaborators.set(socketID, state.collaborators.get(socketID)!);
- } else {
- collaborators.set(socketID, {});
- }
- }
- return {
- ...state,
- collaborators,
- };
- });
- });
- this.portal.socket!.on("new-user", async (_socketID: string) => {
- this.broadcastScene("SCENE_INIT");
- });
- this.setState({
- isCollaborating: true,
- isLoading: opts.showLoadingState ? true : this.state.isLoading,
- });
- }
- };
- private broadcastMouseLocation = (payload: {
- pointerCoords: SocketUpdateDataSource["MOUSE_LOCATION"]["payload"]["pointerCoords"];
- button: SocketUpdateDataSource["MOUSE_LOCATION"]["payload"]["button"];
- }) => {
- if (this.portal.socket?.id) {
- const data: SocketUpdateDataSource["MOUSE_LOCATION"] = {
- type: "MOUSE_LOCATION",
- payload: {
- socketID: this.portal.socket.id,
- pointerCoords: payload.pointerCoords,
- button: payload.button || "up",
- selectedElementIds: this.state.selectedElementIds,
- username: this.state.username,
- },
- };
- return this.portal._broadcastSocketData(
- data as typeof data & { _brand: "socketUpdateData" },
- true, // volatile
- );
- }
- };
- private broadcastScene = (sceneType: "SCENE_INIT" | "SCENE_UPDATE") => {
- const data: SocketUpdateDataSource[typeof sceneType] = {
- type: sceneType,
- payload: {
- elements: getSyncableElements(
- globalSceneState.getElementsIncludingDeleted(),
- ),
- },
- };
- this.lastBroadcastedOrReceivedSceneVersion = Math.max(
- this.lastBroadcastedOrReceivedSceneVersion,
- getDrawingVersion(globalSceneState.getElementsIncludingDeleted()),
- );
- return this.portal._broadcastSocketData(
- data as typeof data & { _brand: "socketUpdateData" },
- );
- };
- private onSceneUpdated = () => {
- this.setState({});
- };
- private updateCurrentCursorPosition = withBatchedUpdates(
- (event: MouseEvent) => {
- cursorX = event.x;
- cursorY = event.y;
- },
- );
- // Input handling
- private onKeyDown = withBatchedUpdates((event: KeyboardEvent) => {
- if (
- (isWritableElement(event.target) && event.key !== KEYS.ESCAPE) ||
- // case: using arrows to move between buttons
- (isArrowKey(event.key) && isInputLike(event.target))
- ) {
- return;
- }
- if (event.key === KEYS.QUESTION_MARK) {
- this.setState({
- showShortcutsDialog: true,
- });
- }
- if (event.code === "KeyC" && event.altKey && event.shiftKey) {
- this.copyToClipboardAsPng();
- event.preventDefault();
- return;
- }
- if (this.actionManager.handleKeyDown(event)) {
- return;
- }
- const shape = findShapeByKey(event.key);
- if (isArrowKey(event.key)) {
- const step = event.shiftKey
- ? ELEMENT_SHIFT_TRANSLATE_AMOUNT
- : ELEMENT_TRANSLATE_AMOUNT;
- globalSceneState.replaceAllElements(
- globalSceneState.getElementsIncludingDeleted().map((el) => {
- if (this.state.selectedElementIds[el.id]) {
- const update: { x?: number; y?: number } = {};
- if (event.key === KEYS.ARROW_LEFT) {
- update.x = el.x - step;
- } else if (event.key === KEYS.ARROW_RIGHT) {
- update.x = el.x + step;
- } else if (event.key === KEYS.ARROW_UP) {
- update.y = el.y - step;
- } else if (event.key === KEYS.ARROW_DOWN) {
- update.y = el.y + step;
- }
- return newElementWith(el, update);
- }
- return el;
- }),
- );
- event.preventDefault();
- } else if (event.key === KEYS.ENTER) {
- const selectedElements = getSelectedElements(
- globalSceneState.getElements(),
- this.state,
- );
- if (
- selectedElements.length === 1 &&
- !isLinearElement(selectedElements[0])
- ) {
- const selectedElement = selectedElements[0];
- const x = selectedElement.x + selectedElement.width / 2;
- const y = selectedElement.y + selectedElement.height / 2;
- this.startTextEditing({
- x: x,
- y: y,
- });
- event.preventDefault();
- return;
- }
- } else if (
- !event.ctrlKey &&
- !event.altKey &&
- !event.metaKey &&
- this.state.draggingElement === null
- ) {
- if (shapesShortcutKeys.includes(event.key.toLowerCase())) {
- this.selectShapeTool(shape);
- } else if (event.key === "q") {
- this.toggleLock();
- }
- }
- if (event.key === KEYS.SPACE && gesture.pointers.size === 0) {
- isHoldingSpace = true;
- document.documentElement.style.cursor = CURSOR_TYPE.GRABBING;
- }
- });
- private onKeyUp = withBatchedUpdates((event: KeyboardEvent) => {
- if (event.key === KEYS.SPACE) {
- if (this.state.elementType === "selection") {
- resetCursor();
- } else {
- setCursorForShape(this.state.elementType);
- this.setState({ selectedElementIds: {} });
- }
- isHoldingSpace = false;
- }
- });
- private selectShapeTool(elementType: AppState["elementType"]) {
- if (!isHoldingSpace) {
- setCursorForShape(elementType);
- }
- if (isToolIcon(document.activeElement)) {
- document.activeElement.blur();
- }
- if (elementType !== "selection") {
- this.setState({ elementType, selectedElementIds: {} });
- } else {
- this.setState({ elementType });
- }
- }
- private onGestureStart = withBatchedUpdates((event: GestureEvent) => {
- event.preventDefault();
- gesture.initialScale = this.state.zoom;
- });
- private onGestureChange = withBatchedUpdates((event: GestureEvent) => {
- event.preventDefault();
- this.setState({
- zoom: getNormalizedZoom(gesture.initialScale! * event.scale),
- });
- });
- private onGestureEnd = withBatchedUpdates((event: GestureEvent) => {
- event.preventDefault();
- gesture.initialScale = null;
- });
- private setElements = (elements: readonly ExcalidrawElement[]) => {
- globalSceneState.replaceAllElements(elements);
- };
- private handleTextWysiwyg(
- element: ExcalidrawTextElement,
- {
- x,
- y,
- isExistingElement = false,
- }: { x: number; y: number; isExistingElement?: boolean },
- ) {
- const resetSelection = () => {
- this.setState({
- draggingElement: null,
- editingElement: null,
- });
- };
- // deselect all other elements when inserting text
- this.setState({ selectedElementIds: {} });
- const deleteElement = () => {
- globalSceneState.replaceAllElements([
- ...globalSceneState.getElementsIncludingDeleted().map((_element) => {
- if (_element.id === element.id) {
- return newElementWith(_element, { isDeleted: true });
- }
- return _element;
- }),
- ]);
- };
- const updateElement = (text: string) => {
- globalSceneState.replaceAllElements([
- ...globalSceneState.getElementsIncludingDeleted().map((_element) => {
- if (_element.id === element.id) {
- return newTextElement({
- ...(_element as ExcalidrawTextElement),
- x: element.x,
- y: element.y,
- text,
- });
- }
- return _element;
- }),
- ]);
- };
- textWysiwyg({
- x,
- y,
- initText: element.text,
- strokeColor: element.strokeColor,
- opacity: element.opacity,
- font: element.font,
- angle: element.angle,
- textAlign: element.textAlign,
- zoom: this.state.zoom,
- onChange: withBatchedUpdates((text) => {
- if (text) {
- updateElement(text);
- } else {
- deleteElement();
- }
- }),
- onSubmit: withBatchedUpdates((text) => {
- updateElement(text);
- this.setState((prevState) => ({
- selectedElementIds: {
- ...prevState.selectedElementIds,
- [element.id]: true,
- },
- }));
- if (this.state.elementLocked) {
- setCursorForShape(this.state.elementType);
- }
- history.resumeRecording();
- resetSelection();
- }),
- onCancel: withBatchedUpdates(() => {
- deleteElement();
- if (isExistingElement) {
- history.resumeRecording();
- }
- resetSelection();
- }),
- });
- // do an initial update to re-initialize element position since we were
- // modifying element's x/y for sake of editor (case: syncing to remote)
- updateElement(element.text);
- }
- private startTextEditing = ({
- x,
- y,
- clientX,
- clientY,
- centerIfPossible = true,
- }: {
- x: number;
- y: number;
- clientX?: number;
- clientY?: number;
- centerIfPossible?: boolean;
- }) => {
- const elementAtPosition = getElementAtPosition(
- globalSceneState.getElements(),
- this.state,
- x,
- y,
- this.state.zoom,
- );
- const element =
- elementAtPosition && isTextElement(elementAtPosition)
- ? elementAtPosition
- : newTextElement({
- x: x,
- y: y,
- strokeColor: this.state.currentItemStrokeColor,
- backgroundColor: this.state.currentItemBackgroundColor,
- fillStyle: this.state.currentItemFillStyle,
- strokeWidth: this.state.currentItemStrokeWidth,
- roughness: this.state.currentItemRoughness,
- opacity: this.state.currentItemOpacity,
- text: "",
- font: this.state.currentItemFont,
- textAlign: this.state.currentItemTextAlign,
- });
- this.setState({ editingElement: element });
- let textX = clientX || x;
- let textY = clientY || y;
- let isExistingTextElement = false;
- if (elementAtPosition && isTextElement(elementAtPosition)) {
- isExistingTextElement = true;
- const centerElementX = elementAtPosition.x + elementAtPosition.width / 2;
- const centerElementY = elementAtPosition.y + elementAtPosition.height / 2;
- const {
- x: centerElementXInViewport,
- y: centerElementYInViewport,
- } = sceneCoordsToViewportCoords(
- { sceneX: centerElementX, sceneY: centerElementY },
- this.state,
- this.canvas,
- window.devicePixelRatio,
- );
- textX = centerElementXInViewport;
- textY = centerElementYInViewport;
- // x and y will change after calling newTextElement function
- mutateElement(element, {
- x: centerElementX,
- y: centerElementY,
- });
- } else {
- globalSceneState.replaceAllElements([
- ...globalSceneState.getElementsIncludingDeleted(),
- element,
- ]);
- if (centerIfPossible) {
- const snappedToCenterPosition = this.getTextWysiwygSnappedToCenterPosition(
- x,
- y,
- this.state,
- this.canvas,
- window.devicePixelRatio,
- );
- if (snappedToCenterPosition) {
- mutateElement(element, {
- x: snappedToCenterPosition.elementCenterX,
- y: snappedToCenterPosition.elementCenterY,
- });
- textX = snappedToCenterPosition.wysiwygX;
- textY = snappedToCenterPosition.wysiwygY;
- }
- }
- }
- this.setState({
- editingElement: element,
- });
- this.handleTextWysiwyg(element, {
- x: textX,
- y: textY,
- isExistingElement: isExistingTextElement,
- });
- };
- private handleCanvasDoubleClick = (
- event: React.MouseEvent<HTMLCanvasElement>,
- ) => {
- // case: double-clicking with arrow/line tool selected would both create
- // text and enter multiElement mode
- if (this.state.multiElement) {
- return;
- }
- resetCursor();
- const { x, y } = viewportCoordsToSceneCoords(
- event,
- this.state,
- this.canvas,
- window.devicePixelRatio,
- );
- this.startTextEditing({
- x: x,
- y: y,
- clientX: event.clientX,
- clientY: event.clientY,
- centerIfPossible: !event.altKey,
- });
- };
- private handleCanvasPointerMove = (
- event: React.PointerEvent<HTMLCanvasElement>,
- ) => {
- this.savePointer(event.clientX, event.clientY, this.state.cursorButton);
- if (gesture.pointers.has(event.pointerId)) {
- gesture.pointers.set(event.pointerId, {
- x: event.clientX,
- y: event.clientY,
- });
- }
- if (gesture.pointers.size === 2) {
- const center = getCenter(gesture.pointers);
- const deltaX = center.x - gesture.lastCenter!.x;
- const deltaY = center.y - gesture.lastCenter!.y;
- gesture.lastCenter = center;
- const distance = getDistance(Array.from(gesture.pointers.values()));
- const scaleFactor = distance / gesture.initialDistance!;
- this.setState({
- scrollX: normalizeScroll(this.state.scrollX + deltaX / this.state.zoom),
- scrollY: normalizeScroll(this.state.scrollY + deltaY / this.state.zoom),
- zoom: getNormalizedZoom(gesture.initialScale! * scaleFactor),
- shouldCacheIgnoreZoom: true,
- });
- this.resetShouldCacheIgnoreZoomDebounced();
- } else {
- gesture.lastCenter = gesture.initialDistance = gesture.initialScale = null;
- }
- if (isHoldingSpace || isPanning || isDraggingScrollBar) {
- return;
- }
- const {
- isOverHorizontalScrollBar,
- isOverVerticalScrollBar,
- } = isOverScrollBars(currentScrollBars, event.clientX, event.clientY);
- const isOverScrollBar =
- isOverVerticalScrollBar || isOverHorizontalScrollBar;
- if (!this.state.draggingElement && !this.state.multiElement) {
- if (isOverScrollBar) {
- resetCursor();
- } else {
- setCursorForShape(this.state.elementType);
- }
- }
- const { x, y } = viewportCoordsToSceneCoords(
- event,
- this.state,
- this.canvas,
- window.devicePixelRatio,
- );
- if (this.state.multiElement) {
- const { multiElement } = this.state;
- const { x: rx, y: ry } = multiElement;
- const { points, lastCommittedPoint } = multiElement;
- const lastPoint = points[points.length - 1];
- setCursorForShape(this.state.elementType);
- if (lastPoint === lastCommittedPoint) {
- // if we haven't yet created a temp point and we're beyond commit-zone
- // threshold, add a point
- if (
- distance2d(x - rx, y - ry, lastPoint[0], lastPoint[1]) >=
- LINE_CONFIRM_THRESHOLD
- ) {
- mutateElement(multiElement, {
- points: [...points, [x - rx, y - ry]],
- });
- } else {
- document.documentElement.style.cursor = CURSOR_TYPE.POINTER;
- // in this branch, we're inside the commit zone, and no uncommitted
- // point exists. Thus do nothing (don't add/remove points).
- }
- } else {
- // cursor moved inside commit zone, and there's uncommitted point,
- // thus remove it
- if (
- points.length > 2 &&
- lastCommittedPoint &&
- distance2d(
- x - rx,
- y - ry,
- lastCommittedPoint[0],
- lastCommittedPoint[1],
- ) < LINE_CONFIRM_THRESHOLD
- ) {
- document.documentElement.style.cursor = CURSOR_TYPE.POINTER;
- mutateElement(multiElement, {
- points: points.slice(0, -1),
- });
- } else {
- if (isPathALoop(points)) {
- document.documentElement.style.cursor = CURSOR_TYPE.POINTER;
- }
- // update last uncommitted point
- mutateElement(multiElement, {
- points: [...points.slice(0, -1), [x - rx, y - ry]],
- });
- }
- }
- return;
- }
- const hasDeselectedButton = Boolean(event.buttons);
- if (
- hasDeselectedButton ||
- (this.state.elementType !== "selection" &&
- this.state.elementType !== "text")
- ) {
- return;
- }
- const elements = globalSceneState.getElements();
- const selectedElements = getSelectedElements(elements, this.state);
- if (selectedElements.length === 1 && !isOverScrollBar) {
- const elementWithResizeHandler = getElementWithResizeHandler(
- elements,
- this.state,
- { x, y },
- this.state.zoom,
- event.pointerType,
- );
- if (elementWithResizeHandler && elementWithResizeHandler.resizeHandle) {
- document.documentElement.style.cursor = getCursorForResizingElement(
- elementWithResizeHandler,
- );
- return;
- }
- } else if (selectedElements.length > 1 && !isOverScrollBar) {
- if (canResizeMutlipleElements(selectedElements)) {
- const resizeHandle = getResizeHandlerFromCoords(
- getCommonBounds(selectedElements),
- { x, y },
- this.state.zoom,
- event.pointerType,
- );
- if (resizeHandle) {
- document.documentElement.style.cursor = getCursorForResizingElement({
- resizeHandle,
- });
- return;
- }
- }
- }
- const hitElement = getElementAtPosition(
- elements,
- this.state,
- x,
- y,
- this.state.zoom,
- );
- if (this.state.elementType === "text") {
- document.documentElement.style.cursor = isTextElement(hitElement)
- ? CURSOR_TYPE.TEXT
- : CURSOR_TYPE.CROSSHAIR;
- } else {
- document.documentElement.style.cursor =
- hitElement && !isOverScrollBar ? "move" : "";
- }
- };
- private handleCanvasPointerDown = (
- event: React.PointerEvent<HTMLCanvasElement>,
- ) => {
- if (lastPointerUp !== null) {
- // Unfortunately, sometimes we don't get a pointerup after a pointerdown,
- // 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 pointerdown
- lastPointerUp(event);
- }
- if (isPanning) {
- return;
- }
- this.setState({
- lastPointerDownWith: event.pointerType,
- cursorButton: "down",
- });
- this.savePointer(event.clientX, event.clientY, "down");
- // pan canvas on wheel button drag or space+drag
- if (
- gesture.pointers.size === 0 &&
- (event.button === POINTER_BUTTON.WHEEL ||
- (event.button === POINTER_BUTTON.MAIN && isHoldingSpace))
- ) {
- isPanning = true;
- document.documentElement.style.cursor = CURSOR_TYPE.GRABBING;
- let { clientX: lastX, clientY: lastY } = event;
- const onPointerMove = withBatchedUpdates((event: PointerEvent) => {
- const deltaX = lastX - event.clientX;
- const deltaY = lastY - event.clientY;
- lastX = event.clientX;
- lastY = event.clientY;
- this.setState({
- scrollX: normalizeScroll(
- this.state.scrollX - deltaX / this.state.zoom,
- ),
- scrollY: normalizeScroll(
- this.state.scrollY - deltaY / this.state.zoom,
- ),
- });
- });
- const teardown = withBatchedUpdates(
- (lastPointerUp = () => {
- lastPointerUp = null;
- isPanning = false;
- if (!isHoldingSpace) {
- setCursorForShape(this.state.elementType);
- }
- this.setState({
- cursorButton: "up",
- });
- this.savePointer(event.clientX, event.clientY, "up");
- window.removeEventListener("pointermove", onPointerMove);
- window.removeEventListener("pointerup", teardown);
- window.removeEventListener("blur", teardown);
- }),
- );
- window.addEventListener("blur", teardown);
- window.addEventListener("pointermove", onPointerMove, {
- passive: true,
- });
- window.addEventListener("pointerup", teardown);
- return;
- }
- // only handle left mouse button or touch
- if (
- event.button !== POINTER_BUTTON.MAIN &&
- event.button !== POINTER_BUTTON.TOUCH
- ) {
- return;
- }
- gesture.pointers.set(event.pointerId, {
- x: event.clientX,
- y: event.clientY,
- });
- if (gesture.pointers.size === 2) {
- gesture.lastCenter = getCenter(gesture.pointers);
- gesture.initialScale = this.state.zoom;
- gesture.initialDistance = getDistance(
- Array.from(gesture.pointers.values()),
- );
- }
- // fixes pointermove causing selection of UI texts #32
- event.preventDefault();
- // Preventing the event above disables default behavior
- // of defocusing potentially focused element, which is what we
- // want when clicking inside the canvas.
- if (document.activeElement instanceof HTMLElement) {
- document.activeElement.blur();
- }
- // don't select while panning
- if (gesture.pointers.size > 1) {
- return;
- }
- // Handle scrollbars dragging
- const {
- isOverHorizontalScrollBar,
- isOverVerticalScrollBar,
- } = isOverScrollBars(currentScrollBars, event.clientX, event.clientY);
- const { x, y } = viewportCoordsToSceneCoords(
- event,
- this.state,
- this.canvas,
- window.devicePixelRatio,
- );
- let lastX = x;
- let lastY = y;
- if (
- (isOverHorizontalScrollBar || isOverVerticalScrollBar) &&
- !this.state.multiElement
- ) {
- isDraggingScrollBar = true;
- lastX = event.clientX;
- lastY = event.clientY;
- const onPointerMove = withBatchedUpdates((event: PointerEvent) => {
- const target = event.target;
- if (!(target instanceof HTMLElement)) {
- return;
- }
- if (isOverHorizontalScrollBar) {
- const x = event.clientX;
- const dx = x - lastX;
- this.setState({
- scrollX: normalizeScroll(this.state.scrollX - dx / this.state.zoom),
- });
- lastX = x;
- return;
- }
- if (isOverVerticalScrollBar) {
- const y = event.clientY;
- const dy = y - lastY;
- this.setState({
- scrollY: normalizeScroll(this.state.scrollY - dy / this.state.zoom),
- });
- lastY = y;
- }
- });
- const onPointerUp = withBatchedUpdates(() => {
- isDraggingScrollBar = false;
- setCursorForShape(this.state.elementType);
- lastPointerUp = null;
- this.setState({
- cursorButton: "up",
- });
- this.savePointer(event.clientX, event.clientY, "up");
- window.removeEventListener("pointermove", onPointerMove);
- window.removeEventListener("pointerup", onPointerUp);
- });
- lastPointerUp = onPointerUp;
- window.addEventListener("pointermove", onPointerMove);
- window.addEventListener("pointerup", onPointerUp);
- return;
- }
- const originX = x;
- const originY = y;
- type ResizeTestType = ReturnType<typeof resizeTest>;
- let resizeHandle: ResizeTestType = false;
- const setResizeHandle = (nextResizeHandle: ResizeTestType) => {
- resizeHandle = nextResizeHandle;
- };
- let isResizingElements = false;
- let draggingOccurred = false;
- let hitElement: ExcalidrawElement | null = null;
- let hitElementWasAddedToSelection = false;
- if (this.state.elementType === "selection") {
- const elements = globalSceneState.getElements();
- const selectedElements = getSelectedElements(elements, this.state);
- if (selectedElements.length === 1) {
- const elementWithResizeHandler = getElementWithResizeHandler(
- elements,
- this.state,
- { x, y },
- this.state.zoom,
- event.pointerType,
- );
- if (elementWithResizeHandler) {
- this.setState({
- resizingElement: elementWithResizeHandler
- ? elementWithResizeHandler.element
- : null,
- });
- resizeHandle = elementWithResizeHandler.resizeHandle;
- document.documentElement.style.cursor = getCursorForResizingElement(
- elementWithResizeHandler,
- );
- isResizingElements = true;
- }
- } else if (selectedElements.length > 1) {
- if (canResizeMutlipleElements(selectedElements)) {
- resizeHandle = getResizeHandlerFromCoords(
- getCommonBounds(selectedElements),
- { x, y },
- this.state.zoom,
- event.pointerType,
- );
- if (resizeHandle) {
- document.documentElement.style.cursor = getCursorForResizingElement(
- {
- resizeHandle,
- },
- );
- isResizingElements = true;
- }
- }
- }
- if (!isResizingElements) {
- hitElement = getElementAtPosition(
- elements,
- this.state,
- x,
- y,
- this.state.zoom,
- );
- // clear selection if shift is not clicked
- if (
- !(hitElement && this.state.selectedElementIds[hitElement.id]) &&
- !event.shiftKey
- ) {
- this.setState({ selectedElementIds: {} });
- }
- // If we click on something
- if (hitElement) {
- // 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
- if (!this.state.selectedElementIds[hitElement.id]) {
- this.setState((prevState) => ({
- selectedElementIds: {
- ...prevState.selectedElementIds,
- [hitElement!.id]: true,
- },
- }));
- globalSceneState.replaceAllElements(
- globalSceneState.getElementsIncludingDeleted(),
- );
- hitElementWasAddedToSelection = true;
- }
- // We duplicate the selected element if alt is pressed on pointer down
- if (event.altKey) {
- // Move the currently selected elements to the top of the z index stack, and
- // put the duplicates where the selected elements used to be.
- const nextElements = [];
- const elementsToAppend = [];
- for (const element of globalSceneState.getElementsIncludingDeleted()) {
- if (
- this.state.selectedElementIds[element.id] ||
- (element.id === hitElement.id && hitElementWasAddedToSelection)
- ) {
- nextElements.push(duplicateElement(element));
- elementsToAppend.push(element);
- } else {
- nextElements.push(element);
- }
- }
- globalSceneState.replaceAllElements([
- ...nextElements,
- ...elementsToAppend,
- ]);
- }
- }
- }
- } else {
- this.setState({ selectedElementIds: {} });
- }
- if (this.state.elementType === "text") {
- // if we're currently still editing text, clicking outside
- // should only finalize it, not create another (irrespective
- // of state.elementLocked)
- if (this.state.editingElement?.type === "text") {
- return;
- }
- const { x, y } = viewportCoordsToSceneCoords(
- event,
- this.state,
- this.canvas,
- window.devicePixelRatio,
- );
- this.startTextEditing({
- x: x,
- y: y,
- clientX: event.clientX,
- clientY: event.clientY,
- centerIfPossible: !event.altKey,
- });
- resetCursor();
- if (!this.state.elementLocked) {
- this.setState({
- elementType: "selection",
- });
- }
- return;
- } else if (
- this.state.elementType === "arrow" ||
- this.state.elementType === "line"
- ) {
- if (this.state.multiElement) {
- const { multiElement } = this.state;
- // finalize if completing a loop
- if (multiElement.type === "line" && isPathALoop(multiElement.points)) {
- mutateElement(multiElement, {
- lastCommittedPoint:
- multiElement.points[multiElement.points.length - 1],
- });
- this.actionManager.executeAction(actionFinalize);
- return;
- }
- const { x: rx, y: ry, lastCommittedPoint } = multiElement;
- // clicking inside commit zone → finalize arrow
- if (
- multiElement.points.length > 1 &&
- lastCommittedPoint &&
- distance2d(
- x - rx,
- y - ry,
- lastCommittedPoint[0],
- lastCommittedPoint[1],
- ) < LINE_CONFIRM_THRESHOLD
- ) {
- this.actionManager.executeAction(actionFinalize);
- return;
- }
- this.setState((prevState) => ({
- selectedElementIds: {
- ...prevState.selectedElementIds,
- [multiElement.id]: true,
- },
- }));
- // clicking outside commit zone → update reference for last committed
- // point
- mutateElement(multiElement, {
- lastCommittedPoint:
- multiElement.points[multiElement.points.length - 1],
- });
- document.documentElement.style.cursor = CURSOR_TYPE.POINTER;
- } else {
- const element = newLinearElement({
- type: this.state.elementType,
- x: x,
- y: y,
- strokeColor: this.state.currentItemStrokeColor,
- backgroundColor: this.state.currentItemBackgroundColor,
- fillStyle: this.state.currentItemFillStyle,
- strokeWidth: this.state.currentItemStrokeWidth,
- roughness: this.state.currentItemRoughness,
- opacity: this.state.currentItemOpacity,
- });
- this.setState((prevState) => ({
- selectedElementIds: {
- ...prevState.selectedElementIds,
- [element.id]: false,
- },
- }));
- mutateElement(element, {
- points: [...element.points, [0, 0]],
- });
- globalSceneState.replaceAllElements([
- ...globalSceneState.getElementsIncludingDeleted(),
- element,
- ]);
- this.setState({
- draggingElement: element,
- editingElement: element,
- });
- }
- } else {
- const element = newElement({
- type: this.state.elementType,
- x: x,
- y: y,
- strokeColor: this.state.currentItemStrokeColor,
- backgroundColor: this.state.currentItemBackgroundColor,
- fillStyle: this.state.currentItemFillStyle,
- strokeWidth: this.state.currentItemStrokeWidth,
- roughness: this.state.currentItemRoughness,
- opacity: this.state.currentItemOpacity,
- });
- if (element.type === "selection") {
- this.setState({
- selectionElement: element,
- draggingElement: element,
- });
- } else {
- globalSceneState.replaceAllElements([
- ...globalSceneState.getElementsIncludingDeleted(),
- element,
- ]);
- this.setState({
- multiElement: null,
- draggingElement: element,
- editingElement: element,
- });
- }
- }
- let resizeArrowFn: ResizeArrowFnType | null = null;
- const setResizeArrrowFn = (fn: ResizeArrowFnType) => {
- resizeArrowFn = fn;
- };
- const onPointerMove = withBatchedUpdates((event: PointerEvent) => {
- const target = event.target;
- if (!(target instanceof HTMLElement)) {
- return;
- }
- if (isOverHorizontalScrollBar) {
- const x = event.clientX;
- const dx = x - lastX;
- this.setState({
- scrollX: normalizeScroll(this.state.scrollX - dx / this.state.zoom),
- });
- lastX = x;
- return;
- }
- if (isOverVerticalScrollBar) {
- const y = event.clientY;
- const dy = y - lastY;
- this.setState({
- scrollY: normalizeScroll(this.state.scrollY - dy / this.state.zoom),
- });
- lastY = y;
- return;
- }
- const { x, y } = viewportCoordsToSceneCoords(
- event,
- this.state,
- this.canvas,
- window.devicePixelRatio,
- );
- // for arrows, don't start dragging until a given threshold
- // to ensure we don't create a 2-point arrow by mistake when
- // user clicks mouse in a way that it moves a tiny bit (thus
- // triggering pointermove)
- if (
- !draggingOccurred &&
- (this.state.elementType === "arrow" ||
- this.state.elementType === "line")
- ) {
- if (distance2d(x, y, originX, originY) < DRAGGING_THRESHOLD) {
- return;
- }
- }
- const resized =
- isResizingElements &&
- resizeElements(
- resizeHandle,
- setResizeHandle,
- this.state,
- this.setAppState,
- resizeArrowFn,
- setResizeArrrowFn,
- event,
- x,
- y,
- lastX,
- lastY,
- );
- if (resized) {
- lastX = x;
- lastY = y;
- return;
- }
- if (hitElement && this.state.selectedElementIds[hitElement.id]) {
- // Marking that click was used for dragging to check
- // if elements should be deselected on pointerup
- draggingOccurred = true;
- const selectedElements = getSelectedElements(
- globalSceneState.getElements(),
- this.state,
- );
- if (selectedElements.length > 0) {
- const { x, y } = viewportCoordsToSceneCoords(
- event,
- this.state,
- this.canvas,
- window.devicePixelRatio,
- );
- selectedElements.forEach((element) => {
- mutateElement(element, {
- x: element.x + x - lastX,
- y: element.y + y - lastY,
- });
- });
- lastX = x;
- lastY = y;
- return;
- }
- }
- // It is very important to read this.state within each move event,
- // otherwise we would read a stale one!
- const draggingElement = this.state.draggingElement;
- if (!draggingElement) {
- return;
- }
- let width = distance(originX, x);
- let height = distance(originY, y);
- if (isLinearElement(draggingElement)) {
- draggingOccurred = true;
- const points = draggingElement.points;
- let dx = x - draggingElement.x;
- let dy = y - draggingElement.y;
- if (event.shiftKey && points.length === 2) {
- ({ width: dx, height: dy } = getPerfectElementSize(
- this.state.elementType,
- dx,
- dy,
- ));
- }
- if (points.length === 1) {
- mutateElement(draggingElement, { points: [...points, [dx, dy]] });
- } else if (points.length > 1) {
- mutateElement(draggingElement, {
- points: [...points.slice(0, -1), [dx, dy]],
- });
- }
- } else {
- if (event.shiftKey) {
- ({ width, height } = getPerfectElementSize(
- this.state.elementType,
- width,
- y < originY ? -height : height,
- ));
- if (height < 0) {
- height = -height;
- }
- }
- mutateElement(draggingElement, {
- x: x < originX ? originX - width : originX,
- y: y < originY ? originY - height : originY,
- width: width,
- height: height,
- });
- }
- if (this.state.elementType === "selection") {
- const elements = globalSceneState.getElements();
- if (!event.shiftKey && isSomeElementSelected(elements, this.state)) {
- this.setState({ selectedElementIds: {} });
- }
- const elementsWithinSelection = getElementsWithinSelection(
- elements,
- draggingElement,
- );
- this.setState((prevState) => ({
- selectedElementIds: {
- ...prevState.selectedElementIds,
- ...elementsWithinSelection.reduce((map, element) => {
- map[element.id] = true;
- return map;
- }, {} as any),
- },
- }));
- }
- });
- const onPointerUp = withBatchedUpdates((childEvent: PointerEvent) => {
- const {
- draggingElement,
- resizingElement,
- multiElement,
- elementType,
- elementLocked,
- } = this.state;
- this.setState({
- isResizing: false,
- isRotating: false,
- resizingElement: null,
- selectionElement: null,
- cursorButton: "up",
- editingElement: multiElement ? this.state.editingElement : null,
- });
- this.savePointer(childEvent.clientX, childEvent.clientY, "up");
- resizeArrowFn = null;
- lastPointerUp = null;
- window.removeEventListener("pointermove", onPointerMove);
- window.removeEventListener("pointerup", onPointerUp);
- if (isLinearElement(draggingElement)) {
- if (draggingElement!.points.length > 1) {
- history.resumeRecording();
- }
- if (!draggingOccurred && draggingElement && !multiElement) {
- const { x, y } = viewportCoordsToSceneCoords(
- childEvent,
- this.state,
- this.canvas,
- window.devicePixelRatio,
- );
- mutateElement(draggingElement, {
- points: [
- ...draggingElement.points,
- [x - draggingElement.x, y - draggingElement.y],
- ],
- });
- this.setState({
- multiElement: draggingElement,
- editingElement: this.state.draggingElement,
- });
- } else if (draggingOccurred && !multiElement) {
- if (!elementLocked) {
- resetCursor();
- this.setState((prevState) => ({
- draggingElement: null,
- elementType: "selection",
- selectedElementIds: {
- ...prevState.selectedElementIds,
- [this.state.draggingElement!.id]: true,
- },
- }));
- } else {
- this.setState((prevState) => ({
- draggingElement: null,
- selectedElementIds: {
- ...prevState.selectedElementIds,
- [this.state.draggingElement!.id]: true,
- },
- }));
- }
- }
- return;
- }
- if (
- elementType !== "selection" &&
- draggingElement &&
- isInvisiblySmallElement(draggingElement)
- ) {
- // remove invisible element which was added in onPointerDown
- globalSceneState.replaceAllElements(
- globalSceneState.getElementsIncludingDeleted().slice(0, -1),
- );
- this.setState({
- draggingElement: null,
- });
- return;
- }
- normalizeDimensions(draggingElement);
- if (resizingElement) {
- history.resumeRecording();
- }
- if (resizingElement && isInvisiblySmallElement(resizingElement)) {
- globalSceneState.replaceAllElements(
- globalSceneState
- .getElementsIncludingDeleted()
- .filter((el) => el.id !== resizingElement.id),
- );
- }
- // If click occurred 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 occurred and elements were dragged or some element
- // was added to selection (on pointerdown phase) we need to keep
- // selection unchanged
- if (hitElement && !draggingOccurred && !hitElementWasAddedToSelection) {
- if (childEvent.shiftKey) {
- this.setState((prevState) => ({
- selectedElementIds: {
- ...prevState.selectedElementIds,
- [hitElement!.id]: false,
- },
- }));
- } else {
- this.setState((_prevState) => ({
- selectedElementIds: { [hitElement!.id]: true },
- }));
- }
- }
- if (draggingElement === null) {
- // if no element is clicked, clear the selection and redraw
- this.setState({ selectedElementIds: {} });
- return;
- }
- if (!elementLocked) {
- this.setState((prevState) => ({
- selectedElementIds: {
- ...prevState.selectedElementIds,
- [draggingElement.id]: true,
- },
- }));
- }
- if (
- elementType !== "selection" ||
- isSomeElementSelected(globalSceneState.getElements(), this.state)
- ) {
- history.resumeRecording();
- }
- if (!elementLocked) {
- resetCursor();
- this.setState({
- draggingElement: null,
- elementType: "selection",
- });
- } else {
- this.setState({
- draggingElement: null,
- });
- }
- });
- lastPointerUp = onPointerUp;
- window.addEventListener("pointermove", onPointerMove);
- window.addEventListener("pointerup", onPointerUp);
- };
- private handleCanvasRef = (canvas: HTMLCanvasElement) => {
- // canvas is null when unmounting
- if (canvas !== null) {
- this.canvas = canvas;
- this.rc = rough.canvas(this.canvas);
- this.canvas.addEventListener("wheel", this.handleWheel, {
- passive: false,
- });
- this.canvas.addEventListener("touchstart", this.onTapStart);
- } else {
- this.canvas?.removeEventListener("wheel", this.handleWheel);
- this.canvas?.removeEventListener("touchstart", this.onTapStart);
- }
- };
- private handleCanvasOnDrop = (event: React.DragEvent<HTMLCanvasElement>) => {
- const file = event.dataTransfer?.files[0];
- if (
- file?.type === "application/json" ||
- file?.name.endsWith(".excalidraw")
- ) {
- this.setState({ isLoading: true });
- loadFromBlob(file)
- .then(({ elements, appState }) =>
- this.syncActionResult({
- elements,
- appState: {
- ...(appState || this.state),
- isLoading: false,
- },
- commitToHistory: false,
- }),
- )
- .catch((error) => {
- this.setState({ isLoading: false, errorMessage: error });
- });
- } else {
- this.setState({
- isLoading: false,
- errorMessage: t("alerts.couldNotLoadInvalidFile"),
- });
- }
- };
- private handleCanvasContextMenu = (
- event: React.PointerEvent<HTMLCanvasElement>,
- ) => {
- event.preventDefault();
- const { x, y } = viewportCoordsToSceneCoords(
- event,
- this.state,
- this.canvas,
- window.devicePixelRatio,
- );
- const elements = globalSceneState.getElements();
- const element = getElementAtPosition(
- elements,
- this.state,
- x,
- y,
- this.state.zoom,
- );
- if (!element) {
- ContextMenu.push({
- options: [
- navigator.clipboard && {
- label: t("labels.paste"),
- action: () => this.pasteFromClipboard(null),
- },
- probablySupportsClipboardBlob &&
- elements.length > 0 && {
- label: t("labels.copyAsPng"),
- action: this.copyToClipboardAsPng,
- },
- probablySupportsClipboardWriteText &&
- elements.length > 0 && {
- label: t("labels.copyAsSvg"),
- action: this.copyToClipboardAsSvg,
- },
- ...this.actionManager.getContextMenuItems((action) =>
- this.canvasOnlyActions.includes(action.name),
- ),
- ],
- top: event.clientY,
- left: event.clientX,
- });
- return;
- }
- if (!this.state.selectedElementIds[element.id]) {
- this.setState({ selectedElementIds: { [element.id]: true } });
- }
- ContextMenu.push({
- options: [
- navigator.clipboard && {
- label: t("labels.copy"),
- action: this.copyAll,
- },
- navigator.clipboard && {
- label: t("labels.paste"),
- action: () => this.pasteFromClipboard(null),
- },
- probablySupportsClipboardBlob && {
- label: t("labels.copyAsPng"),
- action: this.copyToClipboardAsPng,
- },
- probablySupportsClipboardWriteText && {
- label: t("labels.copyAsSvg"),
- action: this.copyToClipboardAsSvg,
- },
- ...this.actionManager.getContextMenuItems(
- (action) => !this.canvasOnlyActions.includes(action.name),
- ),
- ],
- top: event.clientY,
- left: event.clientX,
- });
- };
- private handleWheel = withBatchedUpdates((event: WheelEvent) => {
- event.preventDefault();
- const { deltaX, deltaY } = event;
- // note that event.ctrlKey is necessary to handle pinch zooming
- if (event.metaKey || event.ctrlKey) {
- const sign = Math.sign(deltaY);
- const MAX_STEP = 10;
- let delta = Math.abs(deltaY);
- if (delta > MAX_STEP) {
- delta = MAX_STEP;
- }
- delta *= sign;
- this.setState(({ zoom }) => ({
- zoom: getNormalizedZoom(zoom - delta / 100),
- }));
- return;
- }
- this.setState(({ zoom, scrollX, scrollY }) => ({
- scrollX: normalizeScroll(scrollX - deltaX / zoom),
- scrollY: normalizeScroll(scrollY - deltaY / zoom),
- }));
- });
- private getTextWysiwygSnappedToCenterPosition(
- x: number,
- y: number,
- state: {
- scrollX: FlooredNumber;
- scrollY: FlooredNumber;
- zoom: number;
- },
- canvas: HTMLCanvasElement | null,
- scale: number,
- ) {
- const elementClickedInside = getElementContainingPosition(
- globalSceneState.getElementsIncludingDeleted(),
- 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 { x: wysiwygX, y: wysiwygY } = sceneCoordsToViewportCoords(
- { sceneX: elementCenterX, sceneY: elementCenterY },
- state,
- canvas,
- scale,
- );
- return { wysiwygX, wysiwygY, elementCenterX, elementCenterY };
- }
- }
- }
- private savePointer = (x: number, y: number, button: "up" | "down") => {
- if (!x || !y) {
- return;
- }
- const pointerCoords = viewportCoordsToSceneCoords(
- { clientX: x, clientY: y },
- this.state,
- this.canvas,
- window.devicePixelRatio,
- );
- if (isNaN(pointerCoords.x) || isNaN(pointerCoords.y)) {
- // sometimes the pointer goes off screen
- return;
- }
- this.portal.socket &&
- this.broadcastMouseLocation({
- pointerCoords,
- button,
- });
- };
- private resetShouldCacheIgnoreZoomDebounced = debounce(() => {
- this.setState({ shouldCacheIgnoreZoom: false });
- }, 300);
- private saveDebounced = debounce(() => {
- saveToLocalStorage(
- globalSceneState.getElementsIncludingDeleted(),
- this.state,
- );
- }, 300);
- }
- // -----------------------------------------------------------------------------
- // TEST HOOKS
- // -----------------------------------------------------------------------------
- declare global {
- interface Window {
- h: {
- elements: readonly ExcalidrawElement[];
- state: AppState;
- setState: React.Component<any, AppState>["setState"];
- history: SceneHistory;
- app: InstanceType<typeof App>;
- };
- }
- }
- if (process.env.NODE_ENV === "test" || process.env.NODE_ENV === "development") {
- window.h = {} as Window["h"];
- Object.defineProperties(window.h, {
- elements: {
- get() {
- return globalSceneState.getElementsIncludingDeleted();
- },
- set(elements: ExcalidrawElement[]) {
- return globalSceneState.replaceAllElements(elements);
- },
- },
- history: {
- get() {
- return history;
- },
- },
- });
- }
- // -----------------------------------------------------------------------------
|