From 9cf06b1835371eb123ef58e2d8f8dcd4224bd425 Mon Sep 17 00:00:00 2001 From: Huakun Date: Fri, 28 Mar 2025 07:45:25 -0400 Subject: [PATCH] Feature: custom transition animation (#266) * Add loading animation to general settings * Update dependencies and integrate @tauri-store/svelte - Added `bon` and `bon-macros` packages to Cargo.lock. - Upgraded `tauri-plugin-svelte`, `tauri-store`, and related packages to their latest versions. - Updated `@tauri-store/svelte` integration in the desktop app, including changes to app configuration and layout handling. - Adjusted pnpm-lock.yaml to reflect updated package versions and added new dependencies. - Introduced a new app configuration file for development. * Enhance loading animation handling in FullScreenLoading component - Integrated conditional rendering for loading animations based on app configuration. - Updated default loading animation to "kunkun-dancing" in app configuration. - Adjusted general settings to ensure proper type handling for language labels. - Modified ui-iframe component to manage full-screen loading state more effectively. * remove a mis-placed config file * Refactor window handling to ensure focus after showing - Updated various components to use promise chaining with `show()` and `setFocus()` for better window management. - Introduced `data.win` in multiple places to streamline access to the current webview window. - Enhanced splashscreen and app layout handling to improve user experience by ensuring the window is focused after being shown. * Refactor window handling to improve safety and consistency - Introduced optional chaining for `data.win` to prevent potential runtime errors when accessing window methods. - Updated various components to ensure proper handling of window focus and visibility. - Enhanced the layout and extension pages to utilize the current webview window more effectively, improving overall user experience. --- Cargo.lock | 46 ++++++++--- apps/desktop/package.json | 1 + apps/desktop/src-tauri/Cargo.toml | 2 +- .../src-tauri/capabilities/default.json | 1 + apps/desktop/src-tauri/src/lib.rs | 2 +- apps/desktop/src/lib/cmds/builtin.ts | 2 +- .../common/FullScreenLoading.svelte | 13 +++- .../standalone/general-settings.svelte | 31 +++++++- apps/desktop/src/lib/stores/appConfig.ts | 77 ++----------------- apps/desktop/src/lib/utils/hotkey.ts | 3 +- apps/desktop/src/lib/utils/key.ts | 2 +- apps/desktop/src/routes/+layout.ts | 10 +++ apps/desktop/src/routes/app/+layout.svelte | 5 +- apps/desktop/src/routes/app/+layout.ts | 6 +- apps/desktop/src/routes/app/+page.svelte | 10 ++- .../app/extension/key-displayer/+page.svelte | 7 +- .../app/extension/pin-screenshot/+page.svelte | 19 ++--- .../app/extension/ui-iframe/+page.svelte | 18 ++--- .../routes/app/extension/ui-iframe/+page.ts | 1 + .../app/extension/ui-worker/+page.svelte | 2 +- .../src/routes/splashscreen/+page.svelte | 8 +- packages/types/src/appConfig.ts | 6 +- pnpm-lock.yaml | 75 ++++++++++++------ 23 files changed, 198 insertions(+), 149 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index b1bf5e6..9f60b90 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -824,6 +824,31 @@ dependencies = [ "piper", ] +[[package]] +name = "bon" +version = "3.5.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "65268237be94042665b92034f979c42d431d2fd998b49809543afe3e66abad1c" +dependencies = [ + "bon-macros", + "rustversion", +] + +[[package]] +name = "bon-macros" +version = "3.5.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "803c95b2ecf650eb10b5f87dda6b9f6a1b758cee53245e2b7b825c9b3803a443" +dependencies = [ + "darling", + "ident_case", + "prettyplease", + "proc-macro2", + "quote", + "rustversion", + "syn 2.0.87", +] + [[package]] name = "borsh" version = "1.3.0" @@ -8003,9 +8028,9 @@ dependencies = [ [[package]] name = "tauri-plugin-svelte" -version = "1.2.1" +version = "2.1.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "dab0a4d739af1108c6572e6249113190135c66a45586d0f8f93b3ee532e6176f" +checksum = "17e96f88b3c614b98cea3afb5de6e2661d32f82c70423ae125c56a25d62017e6" dependencies = [ "serde", "tauri", @@ -8136,9 +8161,9 @@ dependencies = [ [[package]] name = "tauri-store" -version = "0.8.1" +version = "0.10.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "cb4e7c0776d9f8b54fd4788f4e471ce83b4c6cf62079799830a3735582a51fc4" +checksum = "5a33c8afdf92c1b177296c0299f6d20116cbce0fa1e2264819fea8c80fd31774" dependencies = [ "dashmap", "futures", @@ -8155,9 +8180,9 @@ dependencies = [ [[package]] name = "tauri-store-macros" -version = "0.8.1" +version = "0.10.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "fabed02238bc887f75887b315c6a14d9571ab463c1a188cc27ec2f7e917b06c3" +checksum = "c8857e4240cf6dbabb15fc2d595e92abba404f0a5cce0f3abbfe9316cac4aa99" dependencies = [ "proc-macro2", "quote", @@ -8166,11 +8191,14 @@ dependencies = [ [[package]] name = "tauri-store-utils" -version = "0.2.2" +version = "0.4.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "b983a259b22d622ce74b957140efa161bd75c6bfd47b7bf621c98dd05b1a2474" +checksum = "14376c237a6632663991634d51a31f128b6b381b94d65e747db2419a513ae6d8" dependencies = [ - "futures", + "bon", + "semver", + "serde", + "serde_json", "tauri", "thiserror 2.0.3", "tokio", diff --git a/apps/desktop/package.json b/apps/desktop/package.json index 982388a..04eafea 100644 --- a/apps/desktop/package.json +++ b/apps/desktop/package.json @@ -28,6 +28,7 @@ "@tauri-apps/plugin-autostart": "^2.2.0", "@tauri-apps/plugin-shell": "^2.2.0", "@tauri-apps/plugin-stronghold": "^2.2.0", + "@tauri-store/svelte": "^2.1.1", "dompurify": "^3.2.4", "eslint": "^9.21.0", "fuse.js": "^7.1.0", diff --git a/apps/desktop/src-tauri/Cargo.toml b/apps/desktop/src-tauri/Cargo.toml index 80f009c..902bb98 100644 --- a/apps/desktop/src-tauri/Cargo.toml +++ b/apps/desktop/src-tauri/Cargo.toml @@ -71,4 +71,4 @@ tauri-plugin-cli = "2" tauri-plugin-global-shortcut = "2.0.1" tauri-plugin-single-instance = { version = "2", features = ["deep-link"] } tauri-plugin-updater = "2.0.2" -tauri-plugin-svelte = "1.2.1" +tauri-plugin-svelte = "2.1.1" diff --git a/apps/desktop/src-tauri/capabilities/default.json b/apps/desktop/src-tauri/capabilities/default.json index 3061496..04b1c29 100644 --- a/apps/desktop/src-tauri/capabilities/default.json +++ b/apps/desktop/src-tauri/capabilities/default.json @@ -24,6 +24,7 @@ "core:event:default", "core:window:default", "core:window:allow-set-size", + "core:window:allow-set-enabled", "core:window:allow-start-dragging", "core:window:allow-set-focus", "core:window:allow-toggle-maximize", diff --git a/apps/desktop/src-tauri/src/lib.rs b/apps/desktop/src-tauri/src/lib.rs index 9777cb6..dff6f45 100644 --- a/apps/desktop/src-tauri/src/lib.rs +++ b/apps/desktop/src-tauri/src/lib.rs @@ -27,7 +27,7 @@ use utils::server::tauri_file_server; pub fn run() { let context = tauri::generate_context!(); let mut builder = tauri::Builder::default(); - + // let app_data_path = tauri::path::PathResolver::app_data_dir().unwrap(); // let db_key = if cfg!(debug_assertions) { // None // } else { diff --git a/apps/desktop/src/lib/cmds/builtin.ts b/apps/desktop/src/lib/cmds/builtin.ts index 0a9a992..57015db 100644 --- a/apps/desktop/src/lib/cmds/builtin.ts +++ b/apps/desktop/src/lib/cmds/builtin.ts @@ -411,7 +411,7 @@ export const rawBuiltinCmds: BuiltinCmd[] = [ visible: false }) setTimeout(() => { - window.show() + window.show().then(() => window.setFocus()) }, 2_000) } }, diff --git a/apps/desktop/src/lib/components/common/FullScreenLoading.svelte b/apps/desktop/src/lib/components/common/FullScreenLoading.svelte index 6e77d73..85abd02 100644 --- a/apps/desktop/src/lib/components/common/FullScreenLoading.svelte +++ b/apps/desktop/src/lib/components/common/FullScreenLoading.svelte @@ -1,5 +1,5 @@ @@ -101,6 +105,31 @@ +
  • + Loading Animation + + + + {loadingAnimation} + + + + Loading Animation + {#each loadingAnimations as anim} + { + appConfig.setLoadingAnimation(anim) + }} + value={anim} + label={anim} + > + {anim} + + {/each} + + + +