blob: fac94972c2ba1657e3d196578253b3b3245fafa2 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
import React from 'dom-chef';
export function registerHotkey(hotkey: string, action: VoidFunction | string): Deinit {
const element = typeof action === 'string'
? <a hidden href={action} data-hotkey={hotkey}/>
: <button hidden type="button" data-hotkey={hotkey} onClick={action}/>;
document.body.append(element);
return () => {
element.remove();
};
}
/** Safely add a hotkey to an element, preserving any existing ones and avoiding duplicates */
export function addHotkey(button: HTMLAnchorElement | HTMLButtonElement | undefined, hotkey: string): void {
if (button) {
const hotkeys = new Set(button.dataset.hotkey?.split(','));
hotkeys.add(hotkey);
button.dataset.hotkey = [...hotkeys].join(',');
}
}
|