2021-09-29 20:23:06 +00:00
|
|
|
// Copyright 2021 Signal Messenger, LLC
|
|
|
|
// SPDX-License-Identifier: AGPL-3.0-only
|
|
|
|
|
|
|
|
import { useEffect } from 'react';
|
|
|
|
import { get } from 'lodash';
|
|
|
|
|
2021-09-29 22:21:51 +00:00
|
|
|
import * as KeyboardLayout from '../services/keyboardLayout';
|
|
|
|
|
2021-09-29 20:23:06 +00:00
|
|
|
type KeyboardShortcutHandlerType = (ev: KeyboardEvent) => boolean;
|
|
|
|
|
|
|
|
function isCmdOrCtrl(ev: KeyboardEvent): boolean {
|
|
|
|
const { ctrlKey, metaKey } = ev;
|
|
|
|
const commandKey = get(window, 'platform') === 'darwin' && metaKey;
|
|
|
|
const controlKey = get(window, 'platform') !== 'darwin' && ctrlKey;
|
|
|
|
return commandKey || controlKey;
|
|
|
|
}
|
|
|
|
|
|
|
|
export function getStartRecordingShortcut(
|
|
|
|
startAudioRecording: () => unknown
|
|
|
|
): KeyboardShortcutHandlerType {
|
|
|
|
return ev => {
|
2021-09-29 22:21:51 +00:00
|
|
|
const { shiftKey } = ev;
|
|
|
|
|
|
|
|
const key = KeyboardLayout.lookup(ev);
|
2021-09-29 20:23:06 +00:00
|
|
|
|
|
|
|
if (isCmdOrCtrl(ev) && shiftKey && (key === 'v' || key === 'V')) {
|
|
|
|
startAudioRecording();
|
|
|
|
ev.preventDefault();
|
|
|
|
ev.stopPropagation();
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
return false;
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|
|
|
|
export function useKeyboardShortcuts(
|
|
|
|
...eventHandlers: Array<KeyboardShortcutHandlerType>
|
|
|
|
): void {
|
|
|
|
useEffect(() => {
|
|
|
|
function handleKeydown(ev: KeyboardEvent): void {
|
|
|
|
eventHandlers.some(eventHandler => eventHandler(ev));
|
|
|
|
}
|
|
|
|
|
|
|
|
document.addEventListener('keydown', handleKeydown);
|
|
|
|
return () => {
|
|
|
|
document.removeEventListener('keydown', handleKeydown);
|
|
|
|
};
|
|
|
|
}, [eventHandlers]);
|
|
|
|
}
|