summaryrefslogtreecommitdiff
path: root/source/github-helpers/hotkey.tsx
blob: 771f39075a0fc1ce23af3253c59ded330ed4db3b (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 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(',');
	}
};