mirror of
https://github.com/kunkunsh/kunkun.git
synced 2025-04-04 14:46:42 +00:00
Enhance clipboard and database management in initialization process
- Added logging to `cleanClipboard` to indicate the number of clipboard entries older than a specified number of days. - Introduced a new utility function `vacuumSqlite` for database maintenance, which is now called during app initialization. - Updated the `init` function to await the completion of `cleanClipboard` and `vacuumSqlite` for better error handling and flow control. - Ensured that the console attachment in `onMount` is awaited for proper synchronization.
This commit is contained in:
parent
211b131efd
commit
bd8a249b3c
@ -24,6 +24,7 @@ export async function cleanClipboard() {
|
||||
)
|
||||
)
|
||||
const nLinesToDelete = oldClipboardData.at(0)?.count ?? 0
|
||||
console.info(`Found ${nLinesToDelete} clipboard entries older than ${nDays} days to clean up`)
|
||||
info(`Found ${nLinesToDelete} clipboard entries older than ${nDays} days to clean up`)
|
||||
|
||||
// Now delete the old data
|
||||
|
13
apps/desktop/src/lib/utils/db.ts
Normal file
13
apps/desktop/src/lib/utils/db.ts
Normal file
@ -0,0 +1,13 @@
|
||||
import { proxyDB } from "@kksh/drizzle"
|
||||
import { error, info } from "@tauri-apps/plugin-log"
|
||||
import { sql } from "drizzle-orm"
|
||||
|
||||
export async function vacuumSqlite() {
|
||||
const statement = sql`VACUUM`
|
||||
try {
|
||||
await proxyDB.run(statement)
|
||||
info("Vacuumed sqlite")
|
||||
} catch (error) {
|
||||
console.error(`Failed to vacuum sqlite: ${error}`)
|
||||
}
|
||||
}
|
@ -3,13 +3,14 @@ import { getCurrentWindow } from "@tauri-apps/api/window"
|
||||
import { error, info } from "@tauri-apps/plugin-log"
|
||||
import { dev } from "$app/environment"
|
||||
import { cleanClipboard } from "./clipboard"
|
||||
import { vacuumSqlite } from "./db"
|
||||
import { mapKeyToTauriKey, registerAppHotkey } from "./hotkey"
|
||||
import { listenToReloadOneExtension } from "./tauri-events"
|
||||
|
||||
/**
|
||||
* Initialize the app
|
||||
*/
|
||||
export function init() {
|
||||
export async function init() {
|
||||
const window = getCurrentWindow()
|
||||
if (window.label === "main") {
|
||||
initMainWindow()
|
||||
@ -18,13 +19,14 @@ export function init() {
|
||||
extensions.reloadExtension(extPath)
|
||||
})
|
||||
}
|
||||
cleanClipboard()
|
||||
await cleanClipboard()
|
||||
.then(() => {
|
||||
info("Cleaned clipboard")
|
||||
})
|
||||
.catch((e) => {
|
||||
error(`Failed to clean clipboard: ${e}`)
|
||||
})
|
||||
vacuumSqlite()
|
||||
if (!dev) {
|
||||
// document.addEventListener("contextmenu", function (event) {
|
||||
// event.preventDefault()
|
||||
|
@ -53,7 +53,7 @@
|
||||
unlisteners.forEach((unlistener) => unlistener())
|
||||
})
|
||||
onMount(async () => {
|
||||
attachConsole().then((unlistener) => unlisteners.push(unlistener))
|
||||
await attachConsole().then((unlistener) => unlisteners.push(unlistener))
|
||||
initDeeplink().then((unlistener) => unlisteners.push(unlistener))
|
||||
shellx
|
||||
.fixPathEnv()
|
||||
|
Loading…
x
Reference in New Issue
Block a user