tldraw
Version:
A tiny little drawing editor.
164 lines (163 loc) • 5.08 kB
JavaScript
import {
isAccelKey,
preventDefault,
useEditor,
useValue
} from "@tldraw/editor";
import hotkeys from "hotkeys-js";
import { useEffect } from "react";
import { useActions } from "../context/actions.mjs";
import { useReadonly } from "./useReadonly.mjs";
import { useTools } from "./useTools.mjs";
const SKIP_KBDS = [
// we set these in useNativeClipboardEvents instead
"copy",
"cut",
"paste",
// There's also an upload asset action, so we don't want to set the kbd twice
"asset"
];
function useKeyboardShortcuts() {
const editor = useEditor();
const isReadonlyMode = useReadonly();
const actions = useActions();
const tools = useTools();
const isFocused = useValue("is focused", () => editor.getInstanceState().isFocused, [editor]);
useEffect(() => {
if (!isFocused) return;
const disposables = new Array();
const container = editor.getContainer();
const hot = (keys, callback) => {
hotkeys(keys, { element: container.ownerDocument.body }, callback);
disposables.push(() => {
hotkeys.unbind(keys, callback);
});
};
const hotUp = (keys, callback) => {
hotkeys(
keys,
{ element: container.ownerDocument.body, keyup: true, keydown: false },
callback
);
disposables.push(() => {
hotkeys.unbind(keys, callback);
});
};
for (const action of Object.values(actions)) {
if (!action.kbd) continue;
if (isReadonlyMode && !action.readonlyOk) continue;
if (SKIP_KBDS.includes(action.id)) continue;
hot(getHotkeysStringFromKbd(action.kbd), (event) => {
if (areShortcutsDisabled(editor) && !action.isRequiredA11yAction) return;
preventDefault(event);
action.onSelect("kbd");
});
}
for (const tool of Object.values(tools)) {
if (!tool.kbd || !tool.readonlyOk && editor.getIsReadonly()) {
continue;
}
if (SKIP_KBDS.includes(tool.id)) continue;
hot(getHotkeysStringFromKbd(tool.kbd), (event) => {
if (areShortcutsDisabled(editor)) return;
preventDefault(event);
tool.onSelect("kbd");
});
}
hot(",", (e) => {
if (areShortcutsDisabled(editor)) return;
if (editor.inputs.keys.has("Comma")) return;
preventDefault(e);
editor.focus();
editor.inputs.keys.add("Comma");
const { x, y, z } = editor.inputs.getCurrentPagePoint();
const screenpoints = editor.pageToScreen({ x, y });
const info = {
type: "pointer",
name: "pointer_down",
point: { x: screenpoints.x, y: screenpoints.y, z },
shiftKey: e.shiftKey,
altKey: e.altKey,
ctrlKey: e.metaKey || e.ctrlKey,
metaKey: e.metaKey,
accelKey: isAccelKey(e),
pointerId: 0,
button: 0,
isPen: editor.getInstanceState().isPenMode,
target: "canvas"
};
editor.dispatch(info);
});
hotUp(",", (e) => {
if (areShortcutsDisabled(editor)) return;
if (!editor.inputs.keys.has("Comma")) return;
editor.inputs.keys.delete("Comma");
const { x, y, z } = editor.inputs.getCurrentScreenPoint();
const info = {
type: "pointer",
name: "pointer_up",
point: { x, y, z },
shiftKey: e.shiftKey,
altKey: e.altKey,
ctrlKey: e.metaKey || e.ctrlKey,
metaKey: e.metaKey,
accelKey: isAccelKey(e),
pointerId: 0,
button: 0,
isPen: editor.getInstanceState().isPenMode,
target: "canvas"
};
editor.dispatch(info);
});
return () => {
disposables.forEach((d) => d());
};
}, [actions, tools, isReadonlyMode, editor, isFocused]);
}
function areShortcutsDisabled(editor) {
return editor.menus.hasAnyOpenMenus() || editor.getEditingShapeId() !== null || editor.getCrashingError() || !editor.user.getAreKeyboardShortcutsEnabled();
}
function getHotkeysStringFromKbd(kbd) {
return getKeys(kbd).map((kbd2) => {
let str = "";
const shift = kbd2.includes("!");
const alt = kbd2.includes("?");
const cmd = kbd2.includes("$");
const k = kbd2.replace(/[!?$]/g, "");
if (shift && alt && cmd) {
str = `cmd+shift+alt+${k},ctrl+shift+alt+${k}`;
} else if (shift && cmd) {
str = `cmd+shift+${k},ctrl+shift+${k}`;
} else if (alt && cmd) {
str = `cmd+alt+${k},ctrl+alt+${k}`;
} else if (alt && shift) {
str = `shift+alt+${k}`;
} else if (shift) {
str = `shift+${k}`;
} else if (alt) {
str = `alt+${k}`;
} else if (cmd) {
str = `cmd+${k},ctrl+${k}`;
} else {
str = k;
}
return str;
}).join(",");
}
function getKeys(key) {
if (typeof key !== "string") key = "";
key = key.replace(/\s/g, "");
const keys = key.split(",");
let index = keys.lastIndexOf("");
for (; index >= 0; ) {
keys[index - 1] += ",";
keys.splice(index, 1);
index = keys.lastIndexOf("");
}
return keys;
}
export {
areShortcutsDisabled,
useKeyboardShortcuts
};
//# sourceMappingURL=useKeyboardShortcuts.mjs.map