mirror of
https://github.com/vector-im/element-call.git
synced 2024-11-21 00:28:08 +08:00
93 lines
2.4 KiB
TypeScript
93 lines
2.4 KiB
TypeScript
|
/*
|
||
|
Copyright 2022-2023 New Vector Ltd
|
||
|
|
||
|
Licensed under the Apache License, Version 2.0 (the "License");
|
||
|
you may not use this file except in compliance with the License.
|
||
|
You may obtain a copy of the License at
|
||
|
|
||
|
http://www.apache.org/licenses/LICENSE-2.0
|
||
|
|
||
|
Unless required by applicable law or agreed to in writing, software
|
||
|
distributed under the License is distributed on an "AS IS" BASIS,
|
||
|
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||
|
See the License for the specific language governing permissions and
|
||
|
limitations under the License.
|
||
|
*/
|
||
|
|
||
|
import { useCallback, useState } from "react";
|
||
|
|
||
|
import { getSetting } from "./settings/useSetting";
|
||
|
import { useEventTarget } from "./useEvents";
|
||
|
|
||
|
export function useKeyboardShortcuts(
|
||
|
enabled: boolean,
|
||
|
toggleMicrophoneMuted: () => void,
|
||
|
toggleLocalVideoMuted: () => void,
|
||
|
setMicrophoneMuted: (muted: boolean) => void
|
||
|
) {
|
||
|
const [spacebarHeld, setSpacebarHeld] = useState(false);
|
||
|
|
||
|
useEventTarget(
|
||
|
window,
|
||
|
"keydown",
|
||
|
useCallback(
|
||
|
(event: KeyboardEvent) => {
|
||
|
if (!enabled) return;
|
||
|
// Check if keyboard shortcuts are enabled
|
||
|
const keyboardShortcuts = getSetting("keyboard-shortcuts", true);
|
||
|
if (!keyboardShortcuts) {
|
||
|
return;
|
||
|
}
|
||
|
|
||
|
if (event.key === "m") {
|
||
|
toggleMicrophoneMuted();
|
||
|
} else if (event.key == "v") {
|
||
|
toggleLocalVideoMuted();
|
||
|
} else if (event.key === " ") {
|
||
|
setSpacebarHeld(true);
|
||
|
setMicrophoneMuted(false);
|
||
|
}
|
||
|
},
|
||
|
[
|
||
|
enabled,
|
||
|
toggleLocalVideoMuted,
|
||
|
toggleMicrophoneMuted,
|
||
|
setMicrophoneMuted,
|
||
|
setSpacebarHeld,
|
||
|
]
|
||
|
)
|
||
|
);
|
||
|
|
||
|
useEventTarget(
|
||
|
window,
|
||
|
"keyup",
|
||
|
useCallback(
|
||
|
(event: KeyboardEvent) => {
|
||
|
if (!enabled) return;
|
||
|
// Check if keyboard shortcuts are enabled
|
||
|
const keyboardShortcuts = getSetting("keyboard-shortcuts", true);
|
||
|
if (!keyboardShortcuts) {
|
||
|
return;
|
||
|
}
|
||
|
|
||
|
if (event.key === " ") {
|
||
|
setSpacebarHeld(false);
|
||
|
setMicrophoneMuted(true);
|
||
|
}
|
||
|
},
|
||
|
[enabled, setMicrophoneMuted, setSpacebarHeld]
|
||
|
)
|
||
|
);
|
||
|
|
||
|
useEventTarget(
|
||
|
window,
|
||
|
"blur",
|
||
|
useCallback(() => {
|
||
|
if (spacebarHeld) {
|
||
|
setSpacebarHeld(false);
|
||
|
setMicrophoneMuted(true);
|
||
|
}
|
||
|
}, [setMicrophoneMuted, setSpacebarHeld, spacebarHeld])
|
||
|
);
|
||
|
}
|