Feature: register hotkey in main window (#60)

* feat: enhance hotkey registration and initialization process

* fix: jsr test (cherrypicked from another branch)

* fix: fix nuxt tailwind version, the latest verison has bug

* update pnpm lock
This commit is contained in:
Huakun Shen 2025-01-13 19:42:07 -05:00 committed by GitHub
parent d73ae6542c
commit 0b1658228b
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 16 additions and 9 deletions

View File

@ -1,6 +1,6 @@
import { getAllWindows } from "@tauri-apps/api/window"
import { isRegistered, register, unregister } from "@tauri-apps/plugin-global-shortcut"
import { debug, info } from "@tauri-apps/plugin-log"
import { debug, info, warn } from "@tauri-apps/plugin-log"
import { sendNotificationWithPermission } from "./notification"
/**
@ -16,7 +16,7 @@ export function mapKeyToTauriKey(key: string): string {
export async function registerAppHotkey(hotkeyStr: string) {
if (await isRegistered(hotkeyStr)) {
debug(`Hotkey (${hotkeyStr}) already registered`)
warn(`Hotkey (${hotkeyStr}) already registered`)
await unregister(hotkeyStr)
}
info(`Registering hotkey: ${hotkeyStr}`)

View File

@ -1,5 +1,8 @@
import { appConfig } from "@/stores"
import { getCurrentWindow } from "@tauri-apps/api/window"
import { info } from "@tauri-apps/plugin-log"
import { dev } from "$app/environment"
import { mapKeyToTauriKey, registerAppHotkey } from "./hotkey"
/**
* Initialize the app
@ -19,11 +22,15 @@ export function init() {
}
export function initMainWindow() {
// const window = getCurrentWindow()
// if (window.label === "main") {
// window.onCloseRequested((event) => {
// event.preventDefault()
// window.hide()
// })
// }
/* -------------------------------------------------------------------------- */
/* Register App Hotkey */
/* -------------------------------------------------------------------------- */
const triggerHotkey = appConfig.get().triggerHotkey
if (triggerHotkey && triggerHotkey.length > 0) {
const hotkeyStr = triggerHotkey.map(mapKeyToTauriKey).join("+")
info(`Registering hotkey: ${hotkeyStr}`)
registerAppHotkey(hotkeyStr)
} else {
console.log("No hotkey found in confi")
}
}