import { globalShortcut } from "electron"; import settings, { SettingsData } from "./settings"; import { emitCameraToggle, emitMuteToggle } from "./ipc"; import { createAndShowNotification } from "./notification"; export function setShortcutsEnabled(enabled: boolean) { if (enabled) { loadShortcuts(); } else { globalShortcut.unregisterAll(); } } export function loadShortcuts() { globalShortcut.unregisterAll(); const shortcuts = settings.get("shortcuts"); // // mute key if (shortcuts?.mute_toggle && shortcuts.mute_toggle.length > 0) { globalShortcut.register(shortcuts.mute_toggle, () => { emitMuteToggle(); createAndShowNotification({ body: "Toggled mute" }); // TODO }); } if (shortcuts?.camera_toggle && shortcuts.camera_toggle.length > 0) { globalShortcut.register(shortcuts.camera_toggle, () => { emitCameraToggle(); createAndShowNotification({ body: "Toggled camera" }); // TODO }); } } export function saveShortcut(shortcut: keyof SettingsData["shortcuts"], key: string | null) { const shortcuts = settings.get("shortcuts") || {}; shortcuts[shortcut] = key; settings.set("shortcuts", shortcuts); loadShortcuts(); }