Merge pull request #2 from Iam54r1n4/deep_link_show_window

Add ability to show and focus on the program main window when a profile added via deep link
This commit is contained in:
Hiddify 2023-01-29 22:56:34 +01:00 committed by GitHub
commit 2a59b82093
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 36 additions and 3 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

@ -2,7 +2,10 @@ use anyhow::{anyhow, bail, Context, Result};
use nanoid::nanoid;
use serde::{de::DeserializeOwned, Serialize};
use serde_yaml::{Mapping, Value};
use std::{fs, path::PathBuf, process::Command, str::FromStr};
use std::{fs, path::PathBuf, process::Command, str::FromStr, thread};
use tauri::{AppHandle};
use std::time::Duration;
use crate::utils::resolve;
/// read data from yaml as struct T
pub fn read_yaml<T: DeserializeOwned>(path: &PathBuf) -> Result<T> {
@ -149,6 +152,21 @@ 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{
// Show main window is exist, otherwise create main window and show it
resolve::create_window(app_handle);
*crate::NEED_WINDOW_BE_FOCUS.lock().unwrap() = false;
thread::sleep(Duration::from_millis(600))
}
}
}
}
#[macro_export]
macro_rules! error {
($result: expr) => {