From 7f5f0b7c4954ca543b731f9449657e8477f98929 Mon Sep 17 00:00:00 2001 From: iam54r1n4 Date: Wed, 25 Jan 2023 08:39:42 -0800 Subject: [PATCH] Add ability to focus on the main window when a profile added via deep link (I used global variable(mutex) between threads, so it's not the best way to do it, should be done better) --- src-tauri/src/main.rs | 19 +++++++++++++++++-- src-tauri/src/utils/help.rs | 20 ++++++++++++++++++++ 2 files changed, 37 insertions(+), 2 deletions(-) diff --git a/src-tauri/src/main.rs b/src-tauri/src/main.rs index 6420400..ff943e8 100644 --- a/src-tauri/src/main.rs +++ b/src-tauri/src/main.rs @@ -10,18 +10,29 @@ mod enhance; mod feat; mod utils; mod deep_link; +use std::sync::{Arc, Mutex}; use crate::utils::{init, resolve, server, help}; use crate::core::handle::Handle; -use tauri::{api, SystemTray}; +use tauri::{api, SystemTray, Manager}; +use once_cell::sync::Lazy; +use std::thread; +use help::focus_to_main_window_if_needed; + +// This is not the best way to do it... +static mut NEED_WINDOW_BE_FOCUS:Lazy>> = Lazy::new(|| Arc::new(Mutex::new(false))); #[tokio::main] async fn main() -> std::io::Result<()> { - + // Deep linking deep_link::prepare("app.clashverge"); // Define handler let handler = | deep_link | async move { + // Set need to be focus to true, it's handled in other thread + unsafe{ + *crate::NEED_WINDOW_BE_FOCUS.lock().unwrap() = true; + } // Convert deep link to something that import_profile can use let profile_url_and_name = help::convert_deeplink_to_url_for_import_profile(&deep_link); // If deep link is invalid, we pop up a message to user @@ -126,6 +137,10 @@ async fn main() -> std::io::Result<()> { let app = builder .build(tauri::generate_context!()) .expect("error while running tauri application"); + + // Focus thread + let app_handle = app.app_handle(); + thread::spawn(move ||{focus_to_main_window_if_needed(&app_handle)}); app.run(|app_handle, e| match e { tauri::RunEvent::ExitRequested { api, .. } => { diff --git a/src-tauri/src/utils/help.rs b/src-tauri/src/utils/help.rs index 798e072..35fdb45 100644 --- a/src-tauri/src/utils/help.rs +++ b/src-tauri/src/utils/help.rs @@ -3,6 +3,9 @@ use nanoid::nanoid; use serde::{de::DeserializeOwned, Serialize}; use serde_yaml::{Mapping, Value}; use std::{fs, path::PathBuf, process::Command, str::FromStr}; +use tauri::{AppHandle, Manager}; +use std::thread; +use std::time::Duration; /// read data from yaml as struct T pub fn read_yaml(path: &PathBuf) -> Result { @@ -149,6 +152,23 @@ pub fn convert_deeplink_to_url_for_import_profile(deep_link:&String) -> Result {