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)
This commit is contained in:
iam54r1n4 2023-01-25 08:39:42 -08:00
parent cb65eec84d
commit 7f5f0b7c49
2 changed files with 37 additions and 2 deletions

View file

@ -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<Arc<Mutex<bool>>> = 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, .. } => {

View file

@ -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<T: DeserializeOwned>(path: &PathBuf) -> Result<T> {
@ -149,6 +152,23 @@ pub fn convert_deeplink_to_url_for_import_profile(deep_link:&String) -> Result<S
let import_profile_url = import_profile_url_raw[1].replacen('&', "?", 1);
Ok(import_profile_url)
}
// Focus to the main window, and back the NEED_WINDOW_BE_FOCUS to false, and wait for NEED_WINDOW_BE_FOCUS be true to do its job
pub fn focus_to_main_window_if_needed(app_handle:&AppHandle){
loop{
unsafe{
if *crate::NEED_WINDOW_BE_FOCUS.lock().unwrap() == true{
if let Some(window) = app_handle.get_window("main"){
let _ = window.show();
let _ = window.set_focus();
*crate::NEED_WINDOW_BE_FOCUS.lock().unwrap() = false;
}
}
}
thread::sleep(Duration::from_millis(700))
}
}
#[macro_export]
macro_rules! error {
($result: expr) => {