forked from refined-github/refined-github
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathhotkey.tsx
More file actions
22 lines (18 loc) · 728 Bytes
/
hotkey.tsx
File metadata and controls
22 lines (18 loc) · 728 Bytes
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 const 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(',');
}
};