mirror of
https://github.com/MODSetter/SurfSense.git
synced 2026-05-04 05:12:38 +02:00
- Introduced a new "General Assist" shortcut, allowing users to open SurfSense from anywhere. - Updated shortcut management to include the new general assist functionality in both the desktop and web applications. - Enhanced the UI to reflect changes in shortcut labels and descriptions for better clarity. - Improved the Electron API to support the new shortcut configuration.
77 lines
2.1 KiB
TypeScript
77 lines
2.1 KiB
TypeScript
import { app, globalShortcut, Menu, nativeImage, Tray } from 'electron';
|
|
import path from 'path';
|
|
import { getMainWindow, createMainWindow } from './window';
|
|
import { getShortcuts } from './shortcuts';
|
|
|
|
let tray: Tray | null = null;
|
|
let currentShortcut: string | null = null;
|
|
|
|
function getTrayIcon(): nativeImage {
|
|
const iconName = process.platform === 'win32' ? 'icon.ico' : 'icon.png';
|
|
const iconPath = app.isPackaged
|
|
? path.join(process.resourcesPath, 'assets', iconName)
|
|
: path.join(__dirname, '..', 'assets', iconName);
|
|
const img = nativeImage.createFromPath(iconPath);
|
|
return img.resize({ width: 16, height: 16 });
|
|
}
|
|
|
|
function showMainWindow(): void {
|
|
let win = getMainWindow();
|
|
if (!win || win.isDestroyed()) {
|
|
win = createMainWindow('/dashboard');
|
|
} else {
|
|
win.show();
|
|
win.focus();
|
|
}
|
|
}
|
|
|
|
function registerShortcut(accelerator: string): void {
|
|
if (currentShortcut) {
|
|
globalShortcut.unregister(currentShortcut);
|
|
currentShortcut = null;
|
|
}
|
|
if (!accelerator) return;
|
|
try {
|
|
const ok = globalShortcut.register(accelerator, showMainWindow);
|
|
if (ok) {
|
|
currentShortcut = accelerator;
|
|
} else {
|
|
console.warn(`[tray] Failed to register General Assist shortcut: ${accelerator}`);
|
|
}
|
|
} catch (err) {
|
|
console.error(`[tray] Error registering General Assist shortcut:`, err);
|
|
}
|
|
}
|
|
|
|
export async function createTray(): Promise<void> {
|
|
if (tray) return;
|
|
|
|
tray = new Tray(getTrayIcon());
|
|
tray.setToolTip('SurfSense');
|
|
|
|
const contextMenu = Menu.buildFromTemplate([
|
|
{ label: 'Open SurfSense', click: showMainWindow },
|
|
{ type: 'separator' },
|
|
{ label: 'Quit', click: () => { app.exit(0); } },
|
|
]);
|
|
|
|
tray.setContextMenu(contextMenu);
|
|
tray.on('double-click', showMainWindow);
|
|
|
|
const shortcuts = await getShortcuts();
|
|
registerShortcut(shortcuts.generalAssist);
|
|
}
|
|
|
|
export async function reregisterGeneralAssist(): Promise<void> {
|
|
const shortcuts = await getShortcuts();
|
|
registerShortcut(shortcuts.generalAssist);
|
|
}
|
|
|
|
export function destroyTray(): void {
|
|
if (currentShortcut) {
|
|
globalShortcut.unregister(currentShortcut);
|
|
currentShortcut = null;
|
|
}
|
|
tray?.destroy();
|
|
tray = null;
|
|
}
|