d2b698093c
* feat: hide copy-as-png shortcut from help dialog if not supported * fix: support firefox if clipboard.write supported * show shrotcut in firefox and instead show error message how to enable the flag support * widen to TypeError because minification * show copy-as-png on firefox even if it will throw
96 lines
1.7 KiB
TypeScript
96 lines
1.7 KiB
TypeScript
import { isDarwin } from "./constants";
|
|
|
|
export const CODES = {
|
|
EQUAL: "Equal",
|
|
MINUS: "Minus",
|
|
NUM_ADD: "NumpadAdd",
|
|
NUM_SUBTRACT: "NumpadSubtract",
|
|
NUM_ZERO: "Numpad0",
|
|
BRACKET_RIGHT: "BracketRight",
|
|
BRACKET_LEFT: "BracketLeft",
|
|
ONE: "Digit1",
|
|
TWO: "Digit2",
|
|
NINE: "Digit9",
|
|
QUOTE: "Quote",
|
|
ZERO: "Digit0",
|
|
SLASH: "Slash",
|
|
C: "KeyC",
|
|
D: "KeyD",
|
|
H: "KeyH",
|
|
V: "KeyV",
|
|
Z: "KeyZ",
|
|
R: "KeyR",
|
|
} as const;
|
|
|
|
export const KEYS = {
|
|
ARROW_DOWN: "ArrowDown",
|
|
ARROW_LEFT: "ArrowLeft",
|
|
ARROW_RIGHT: "ArrowRight",
|
|
ARROW_UP: "ArrowUp",
|
|
PAGE_UP: "PageUp",
|
|
PAGE_DOWN: "PageDown",
|
|
BACKSPACE: "Backspace",
|
|
ALT: "Alt",
|
|
CTRL_OR_CMD: isDarwin ? "metaKey" : "ctrlKey",
|
|
DELETE: "Delete",
|
|
ENTER: "Enter",
|
|
ESCAPE: "Escape",
|
|
QUESTION_MARK: "?",
|
|
SPACE: " ",
|
|
TAB: "Tab",
|
|
CHEVRON_LEFT: "<",
|
|
CHEVRON_RIGHT: ">",
|
|
PERIOD: ".",
|
|
COMMA: ",",
|
|
|
|
A: "a",
|
|
C: "c",
|
|
D: "d",
|
|
E: "e",
|
|
F: "f",
|
|
G: "g",
|
|
H: "h",
|
|
I: "i",
|
|
L: "l",
|
|
O: "o",
|
|
P: "p",
|
|
Q: "q",
|
|
R: "r",
|
|
S: "s",
|
|
T: "t",
|
|
V: "v",
|
|
X: "x",
|
|
Y: "y",
|
|
Z: "z",
|
|
K: "k",
|
|
|
|
0: "0",
|
|
1: "1",
|
|
2: "2",
|
|
3: "3",
|
|
4: "4",
|
|
5: "5",
|
|
6: "6",
|
|
7: "7",
|
|
8: "8",
|
|
9: "9",
|
|
} as const;
|
|
|
|
export type Key = keyof typeof KEYS;
|
|
|
|
export const isArrowKey = (key: string) =>
|
|
key === KEYS.ARROW_LEFT ||
|
|
key === KEYS.ARROW_RIGHT ||
|
|
key === KEYS.ARROW_DOWN ||
|
|
key === KEYS.ARROW_UP;
|
|
|
|
export const shouldResizeFromCenter = (event: MouseEvent | KeyboardEvent) =>
|
|
event.altKey;
|
|
|
|
export const shouldMaintainAspectRatio = (event: MouseEvent | KeyboardEvent) =>
|
|
event.shiftKey;
|
|
|
|
export const shouldRotateWithDiscreteAngle = (
|
|
event: MouseEvent | KeyboardEvent | React.PointerEvent<HTMLCanvasElement>,
|
|
) => event.shiftKey;
|