2025-03-03 17:54:00 +08:00
|
|
|
mod assistant;
|
2024-12-14 15:38:32 +08:00
|
|
|
mod autostart;
|
2025-02-06 11:45:37 +08:00
|
|
|
mod common;
|
2025-02-12 16:15:55 +08:00
|
|
|
mod local;
|
|
|
|
|
mod search;
|
2025-02-06 11:45:37 +08:00
|
|
|
mod server;
|
2025-03-03 17:54:00 +08:00
|
|
|
mod setup;
|
2025-01-20 19:38:59 +08:00
|
|
|
mod shortcut;
|
2025-02-06 11:45:37 +08:00
|
|
|
mod util;
|
2025-01-10 14:59:03 +08:00
|
|
|
|
2025-02-07 16:31:05 +08:00
|
|
|
use crate::common::register::SearchSourceRegistry;
|
2025-02-18 11:51:50 +08:00
|
|
|
// use crate::common::traits::SearchSource;
|
2025-02-08 07:38:02 +08:00
|
|
|
use crate::common::{MAIN_WINDOW_LABEL, SETTINGS_WINDOW_LABEL};
|
2025-02-06 11:45:37 +08:00
|
|
|
use crate::server::servers::{load_or_insert_default_server, load_servers_token};
|
2025-01-20 19:38:59 +08:00
|
|
|
use autostart::{change_autostart, enable_autostart};
|
2025-02-25 16:22:22 +08:00
|
|
|
use lazy_static::lazy_static;
|
|
|
|
|
use std::sync::Mutex;
|
2025-04-24 18:15:24 +08:00
|
|
|
use tauri::async_runtime::block_on;
|
2024-12-22 15:35:05 +08:00
|
|
|
#[cfg(target_os = "macos")]
|
|
|
|
|
use tauri::ActivationPolicy;
|
2025-02-18 11:51:50 +08:00
|
|
|
use tauri::{
|
2025-03-24 14:55:35 +08:00
|
|
|
AppHandle, Emitter, Manager, PhysicalPosition, Runtime, WebviewWindow, Window, WindowEvent,
|
2025-02-18 11:51:50 +08:00
|
|
|
};
|
2025-01-20 19:38:59 +08:00
|
|
|
use tauri_plugin_autostart::MacosLauncher;
|
2025-02-06 11:45:37 +08:00
|
|
|
|
|
|
|
|
/// Tauri store name
|
|
|
|
|
pub(crate) const COCO_TAURI_STORE: &str = "coco_tauri_store";
|
2024-10-13 17:41:16 +08:00
|
|
|
|
2025-02-25 16:22:22 +08:00
|
|
|
lazy_static! {
|
|
|
|
|
static ref PREVIOUS_MONITOR_NAME: Mutex<Option<String>> = Mutex::new(None);
|
|
|
|
|
}
|
|
|
|
|
|
2024-11-30 15:29:00 +08:00
|
|
|
#[tauri::command]
|
2025-03-24 14:39:08 +08:00
|
|
|
async fn change_window_height(handle: AppHandle, height: u32) {
|
2025-02-08 07:38:02 +08:00
|
|
|
let window: WebviewWindow = handle.get_webview_window(MAIN_WINDOW_LABEL).unwrap();
|
2024-11-30 15:29:00 +08:00
|
|
|
|
|
|
|
|
let mut size = window.outer_size().unwrap();
|
|
|
|
|
size.height = height;
|
|
|
|
|
window.set_size(size).unwrap();
|
|
|
|
|
}
|
|
|
|
|
|
2024-12-26 10:08:55 +08:00
|
|
|
#[derive(serde::Deserialize)]
|
|
|
|
|
struct ThemeChangedPayload {
|
2025-03-24 14:55:35 +08:00
|
|
|
#[allow(dead_code)]
|
2024-12-26 10:08:55 +08:00
|
|
|
is_dark_mode: bool,
|
|
|
|
|
}
|
|
|
|
|
|
2025-01-10 14:59:03 +08:00
|
|
|
#[derive(Clone, serde::Serialize)]
|
2025-03-24 14:55:35 +08:00
|
|
|
#[allow(dead_code)]
|
2025-01-10 14:59:03 +08:00
|
|
|
struct Payload {
|
|
|
|
|
args: Vec<String>,
|
|
|
|
|
cwd: String,
|
|
|
|
|
}
|
|
|
|
|
|
2024-10-13 17:41:16 +08:00
|
|
|
#[cfg_attr(mobile, tauri::mobile_entry_point)]
|
|
|
|
|
pub fn run() {
|
2025-03-24 14:55:35 +08:00
|
|
|
let ctx = tauri::generate_context!();
|
2025-02-21 18:57:32 +08:00
|
|
|
// Initialize logger
|
|
|
|
|
env_logger::init();
|
2025-02-23 13:09:38 +08:00
|
|
|
|
2025-02-19 13:02:22 +08:00
|
|
|
let mut app_builder = tauri::Builder::default();
|
|
|
|
|
|
|
|
|
|
#[cfg(desktop)]
|
|
|
|
|
{
|
|
|
|
|
app_builder = app_builder.plugin(tauri_plugin_single_instance::init(|_app, argv, _cwd| {
|
|
|
|
|
println!("a new app instance was opened with {argv:?} and the deep link event was already triggered");
|
|
|
|
|
// when defining deep link schemes at runtime, you must also check `argv` here
|
|
|
|
|
}));
|
|
|
|
|
}
|
|
|
|
|
|
2025-02-21 18:57:32 +08:00
|
|
|
app_builder = app_builder
|
|
|
|
|
.plugin(tauri_plugin_http::init())
|
2024-10-13 17:41:16 +08:00
|
|
|
.plugin(tauri_plugin_shell::init())
|
2024-12-11 10:45:54 +08:00
|
|
|
.plugin(tauri_plugin_autostart::init(
|
|
|
|
|
MacosLauncher::AppleScript,
|
|
|
|
|
None,
|
|
|
|
|
))
|
2025-01-10 14:59:03 +08:00
|
|
|
.plugin(tauri_plugin_deep_link::init())
|
2025-03-03 17:54:00 +08:00
|
|
|
.plugin(tauri_plugin_store::Builder::default().build())
|
|
|
|
|
.plugin(tauri_plugin_dialog::init())
|
2025-03-05 12:22:33 +08:00
|
|
|
.plugin(tauri_plugin_fs_pro::init())
|
|
|
|
|
.plugin(tauri_plugin_macos_permissions::init())
|
2025-03-07 12:42:55 +08:00
|
|
|
.plugin(tauri_plugin_screenshots::init())
|
2025-03-11 10:36:42 +08:00
|
|
|
.plugin(tauri_plugin_process::init())
|
2025-04-09 17:04:20 +08:00
|
|
|
.plugin(tauri_plugin_updater::Builder::new().build())
|
|
|
|
|
.plugin(tauri_plugin_windows_version::init());
|
2025-02-18 08:26:52 +08:00
|
|
|
|
|
|
|
|
// Conditional compilation for macOS
|
|
|
|
|
#[cfg(target_os = "macos")]
|
|
|
|
|
{
|
|
|
|
|
app_builder = app_builder.plugin(tauri_nspanel::init());
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
let app = app_builder
|
2024-11-30 15:29:00 +08:00
|
|
|
.invoke_handler(tauri::generate_handler![
|
|
|
|
|
change_window_height,
|
2025-01-20 19:38:59 +08:00
|
|
|
shortcut::change_shortcut,
|
|
|
|
|
shortcut::unregister_shortcut,
|
|
|
|
|
shortcut::get_current_shortcut,
|
2024-12-14 15:38:32 +08:00
|
|
|
change_autostart,
|
2025-03-07 12:42:55 +08:00
|
|
|
show_coco,
|
2024-12-24 18:24:53 +08:00
|
|
|
hide_coco,
|
2025-03-07 12:42:55 +08:00
|
|
|
show_settings,
|
2025-02-12 16:15:55 +08:00
|
|
|
server::servers::get_server_token,
|
2025-02-06 11:45:37 +08:00
|
|
|
server::servers::add_coco_server,
|
|
|
|
|
server::servers::remove_coco_server,
|
|
|
|
|
server::servers::list_coco_servers,
|
|
|
|
|
server::servers::logout_coco_server,
|
|
|
|
|
server::servers::refresh_coco_server_info,
|
2025-02-24 18:14:43 +08:00
|
|
|
server::servers::enable_server,
|
|
|
|
|
server::servers::disable_server,
|
2025-02-06 11:45:37 +08:00
|
|
|
server::auth::handle_sso_callback,
|
|
|
|
|
server::profile::get_user_profiles,
|
2025-04-24 19:00:16 +08:00
|
|
|
server::datasource::datasource_search,
|
|
|
|
|
server::datasource::mcp_server_search,
|
2025-02-06 11:45:37 +08:00
|
|
|
server::connector::get_connectors_by_server,
|
2025-02-07 16:31:05 +08:00
|
|
|
search::query_coco_fusion,
|
2025-02-25 15:01:32 +08:00
|
|
|
assistant::chat_history,
|
|
|
|
|
assistant::new_chat,
|
|
|
|
|
assistant::send_message,
|
|
|
|
|
assistant::session_chat_history,
|
|
|
|
|
assistant::open_session_chat,
|
|
|
|
|
assistant::close_session_chat,
|
|
|
|
|
assistant::cancel_session_chat,
|
2025-04-02 14:03:40 +08:00
|
|
|
assistant::delete_session_chat,
|
|
|
|
|
assistant::update_session_chat,
|
2025-04-20 21:27:25 +08:00
|
|
|
assistant::assistant_search,
|
2025-02-06 11:45:37 +08:00
|
|
|
// server::get_coco_server_datasources,
|
2025-02-21 18:57:32 +08:00
|
|
|
// server::get_coco_server_connectors,
|
|
|
|
|
server::websocket::connect_to_server,
|
|
|
|
|
server::websocket::disconnect,
|
2025-03-28 13:50:14 +08:00
|
|
|
get_app_search_source,
|
|
|
|
|
server::attachment::upload_attachment,
|
|
|
|
|
server::attachment::get_attachment,
|
|
|
|
|
server::attachment::delete_attachment,
|
2025-04-11 11:48:48 +08:00
|
|
|
server::transcription::transcription,
|
2025-04-16 19:06:31 +08:00
|
|
|
local::application::get_default_search_paths,
|
|
|
|
|
local::application::list_app_with_metadata_in,
|
2025-04-23 18:50:32 +08:00
|
|
|
util::open,
|
|
|
|
|
server::system_settings::get_system_settings
|
2024-11-30 15:29:00 +08:00
|
|
|
])
|
|
|
|
|
.setup(|app| {
|
2025-02-07 16:31:05 +08:00
|
|
|
let registry = SearchSourceRegistry::default();
|
2025-02-06 11:45:37 +08:00
|
|
|
|
2025-02-07 16:31:05 +08:00
|
|
|
app.manage(registry); // Store registry in Tauri's app state
|
2025-02-21 18:57:32 +08:00
|
|
|
app.manage(server::websocket::WebSocketManager::default());
|
2025-02-06 11:45:37 +08:00
|
|
|
|
2025-04-24 18:15:24 +08:00
|
|
|
block_on(async {
|
|
|
|
|
init(app.handle()).await;
|
2025-02-06 11:45:37 +08:00
|
|
|
});
|
|
|
|
|
|
2025-04-24 18:15:24 +08:00
|
|
|
shortcut::enable_shortcut(app);
|
2025-03-24 14:55:35 +08:00
|
|
|
|
2024-12-14 15:38:32 +08:00
|
|
|
enable_autostart(app);
|
2024-11-30 15:29:00 +08:00
|
|
|
|
2024-12-17 11:20:50 +08:00
|
|
|
#[cfg(target_os = "macos")]
|
|
|
|
|
app.set_activation_policy(ActivationPolicy::Accessory);
|
|
|
|
|
|
2025-02-24 08:22:01 +08:00
|
|
|
// app.listen("theme-changed", move |event| {
|
|
|
|
|
// if let Ok(payload) = serde_json::from_str::<ThemeChangedPayload>(event.payload()) {
|
|
|
|
|
// // switch_tray_icon(app.app_handle(), payload.is_dark_mode);
|
|
|
|
|
// println!("Theme changed: is_dark_mode = {}", payload.is_dark_mode);
|
|
|
|
|
// }
|
|
|
|
|
// });
|
2024-12-26 10:08:55 +08:00
|
|
|
|
2025-02-19 13:02:22 +08:00
|
|
|
#[cfg(desktop)]
|
|
|
|
|
{
|
|
|
|
|
#[cfg(any(windows, target_os = "linux"))]
|
|
|
|
|
{
|
|
|
|
|
app.deep_link().register("coco")?;
|
|
|
|
|
use tauri_plugin_deep_link::DeepLinkExt;
|
|
|
|
|
app.deep_link().register_all()?;
|
|
|
|
|
}
|
|
|
|
|
}
|
2025-01-10 14:59:03 +08:00
|
|
|
|
2025-02-24 08:22:01 +08:00
|
|
|
// app.deep_link().on_open_url(|event| {
|
|
|
|
|
// dbg!(event.urls());
|
|
|
|
|
// });
|
2025-01-10 14:59:03 +08:00
|
|
|
|
2025-02-08 07:38:02 +08:00
|
|
|
let main_window = app.get_webview_window(MAIN_WINDOW_LABEL).unwrap();
|
|
|
|
|
let settings_window = app.get_webview_window(SETTINGS_WINDOW_LABEL).unwrap();
|
|
|
|
|
setup::default(app, main_window.clone(), settings_window.clone());
|
2025-02-06 11:45:37 +08:00
|
|
|
|
2024-11-30 15:29:00 +08:00
|
|
|
Ok(())
|
2025-02-12 16:15:55 +08:00
|
|
|
})
|
|
|
|
|
.on_window_event(|window, event| match event {
|
|
|
|
|
WindowEvent::CloseRequested { api, .. } => {
|
|
|
|
|
dbg!("Close requested event received");
|
|
|
|
|
window.hide().unwrap();
|
|
|
|
|
api.prevent_close();
|
|
|
|
|
}
|
|
|
|
|
_ => {}
|
|
|
|
|
})
|
|
|
|
|
.build(ctx)
|
2024-10-13 17:41:16 +08:00
|
|
|
.expect("error while running tauri application");
|
2025-02-09 21:51:03 +08:00
|
|
|
|
|
|
|
|
app.run(|app_handle, event| match event {
|
|
|
|
|
#[cfg(target_os = "macos")]
|
|
|
|
|
tauri::RunEvent::Reopen {
|
|
|
|
|
has_visible_windows,
|
|
|
|
|
..
|
|
|
|
|
} => {
|
2025-02-12 16:15:55 +08:00
|
|
|
dbg!(
|
|
|
|
|
"Reopen event received: has_visible_windows = {}",
|
|
|
|
|
has_visible_windows
|
|
|
|
|
);
|
2025-02-09 21:51:03 +08:00
|
|
|
if has_visible_windows {
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
_ => {
|
|
|
|
|
let _ = app_handle;
|
|
|
|
|
}
|
|
|
|
|
});
|
2024-10-13 17:41:16 +08:00
|
|
|
}
|
2024-11-30 15:29:00 +08:00
|
|
|
|
2025-02-06 11:45:37 +08:00
|
|
|
pub async fn init<R: Runtime>(app_handle: &AppHandle<R>) {
|
|
|
|
|
// Await the async functions to load the servers and tokens
|
|
|
|
|
if let Err(err) = load_or_insert_default_server(app_handle).await {
|
|
|
|
|
eprintln!("Failed to load servers: {}", err);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if let Err(err) = load_servers_token(app_handle).await {
|
|
|
|
|
eprintln!("Failed to load server tokens: {}", err);
|
|
|
|
|
}
|
|
|
|
|
|
2025-02-07 16:31:05 +08:00
|
|
|
let coco_servers = server::servers::get_all_servers();
|
|
|
|
|
|
|
|
|
|
// Get the registry from Tauri's state
|
2025-03-24 14:55:35 +08:00
|
|
|
// let registry: State<SearchSourceRegistry> = app_handle.state::<SearchSourceRegistry>();
|
2025-02-07 16:31:05 +08:00
|
|
|
|
|
|
|
|
for server in coco_servers {
|
2025-03-11 10:36:42 +08:00
|
|
|
crate::server::servers::try_register_server_to_search_source(app_handle.clone(), &server)
|
|
|
|
|
.await;
|
2025-02-07 16:31:05 +08:00
|
|
|
}
|
2025-02-23 13:09:38 +08:00
|
|
|
}
|
2025-02-07 16:31:05 +08:00
|
|
|
|
2025-03-06 20:11:17 +08:00
|
|
|
async fn init_app_search_source<R: Runtime>(app_handle: &AppHandle<R>) -> Result<(), String> {
|
2025-03-06 17:50:44 +08:00
|
|
|
let application_search =
|
2025-03-06 20:11:17 +08:00
|
|
|
local::application::ApplicationSearchSource::new(app_handle.clone(), 1000f64).await?;
|
2025-04-21 19:40:46 +08:00
|
|
|
let calculator_search = local::calculator::CalculatorSource::new(2000f64);
|
2025-02-23 13:09:38 +08:00
|
|
|
|
|
|
|
|
// Register the application search source
|
|
|
|
|
let registry = app_handle.state::<SearchSourceRegistry>();
|
|
|
|
|
registry.register_source(application_search).await;
|
2025-04-21 19:40:46 +08:00
|
|
|
registry.register_source(calculator_search).await;
|
2025-03-06 20:11:17 +08:00
|
|
|
|
|
|
|
|
Ok(())
|
2025-01-02 14:41:54 +08:00
|
|
|
}
|
2024-11-30 15:29:00 +08:00
|
|
|
|
2025-03-07 12:42:55 +08:00
|
|
|
#[tauri::command]
|
2025-03-24 17:19:19 +08:00
|
|
|
async fn show_coco<R: Runtime>(app_handle: AppHandle<R>) {
|
|
|
|
|
if let Some(window) = app_handle.get_window(MAIN_WINDOW_LABEL) {
|
|
|
|
|
let _ = app_handle.emit("show-coco", ());
|
2025-03-07 12:42:55 +08:00
|
|
|
|
2025-03-24 17:19:19 +08:00
|
|
|
move_window_to_active_monitor(&window);
|
|
|
|
|
|
|
|
|
|
let _ = window.show();
|
|
|
|
|
let _ = window.unminimize();
|
|
|
|
|
let _ = window.set_focus();
|
|
|
|
|
}
|
2024-12-24 18:24:53 +08:00
|
|
|
}
|
|
|
|
|
|
2025-03-24 17:19:19 +08:00
|
|
|
#[tauri::command]
|
|
|
|
|
async fn hide_coco<R: Runtime>(app: AppHandle<R>) {
|
2025-02-08 07:38:02 +08:00
|
|
|
if let Some(window) = app.get_window(MAIN_WINDOW_LABEL) {
|
2025-03-24 17:19:19 +08:00
|
|
|
if let Err(err) = window.hide() {
|
|
|
|
|
eprintln!("Failed to hide the window: {}", err);
|
|
|
|
|
} else {
|
|
|
|
|
println!("Window successfully hidden.");
|
|
|
|
|
}
|
|
|
|
|
} else {
|
|
|
|
|
eprintln!("Main window not found.");
|
2024-12-17 11:20:50 +08:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2025-02-11 14:53:46 +08:00
|
|
|
fn move_window_to_active_monitor<R: Runtime>(window: &Window<R>) {
|
|
|
|
|
dbg!("Moving window to active monitor");
|
|
|
|
|
// Try to get the available monitors, handle failure gracefully
|
|
|
|
|
let available_monitors = match window.available_monitors() {
|
|
|
|
|
Ok(monitors) => monitors,
|
|
|
|
|
Err(e) => {
|
|
|
|
|
eprintln!("Failed to get monitors: {}", e);
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
// Attempt to get the cursor position, handle failure gracefully
|
|
|
|
|
let cursor_position = match window.cursor_position() {
|
|
|
|
|
Ok(pos) => Some(pos),
|
|
|
|
|
Err(e) => {
|
|
|
|
|
eprintln!("Failed to get cursor position: {}", e);
|
|
|
|
|
None
|
|
|
|
|
}
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
// Find the monitor that contains the cursor or default to the primary monitor
|
|
|
|
|
let target_monitor = if let Some(cursor_position) = cursor_position {
|
|
|
|
|
// Convert cursor position to integers
|
|
|
|
|
let cursor_x = cursor_position.x.round() as i32;
|
|
|
|
|
let cursor_y = cursor_position.y.round() as i32;
|
|
|
|
|
|
|
|
|
|
// Find the monitor that contains the cursor
|
|
|
|
|
available_monitors.into_iter().find(|monitor| {
|
|
|
|
|
let monitor_position = monitor.position();
|
|
|
|
|
let monitor_size = monitor.size();
|
|
|
|
|
|
|
|
|
|
cursor_x >= monitor_position.x
|
|
|
|
|
&& cursor_x <= monitor_position.x + monitor_size.width as i32
|
|
|
|
|
&& cursor_y >= monitor_position.y
|
|
|
|
|
&& cursor_y <= monitor_position.y + monitor_size.height as i32
|
|
|
|
|
})
|
|
|
|
|
} else {
|
|
|
|
|
None
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
// Use the target monitor or default to the primary monitor
|
|
|
|
|
let monitor = match target_monitor.or_else(|| window.primary_monitor().ok().flatten()) {
|
|
|
|
|
Some(monitor) => monitor,
|
|
|
|
|
None => {
|
|
|
|
|
eprintln!("No monitor found!");
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
};
|
|
|
|
|
|
2025-02-25 16:22:22 +08:00
|
|
|
if let Some(name) = monitor.name() {
|
|
|
|
|
let previous_monitor_name = PREVIOUS_MONITOR_NAME.lock().unwrap();
|
|
|
|
|
|
|
|
|
|
if let Some(ref prev_name) = *previous_monitor_name {
|
|
|
|
|
if name.to_string() == *prev_name {
|
|
|
|
|
println!("Currently on the same monitor");
|
|
|
|
|
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2025-02-11 14:53:46 +08:00
|
|
|
let monitor_position = monitor.position();
|
|
|
|
|
let monitor_size = monitor.size();
|
|
|
|
|
|
|
|
|
|
// Get the current size of the window
|
|
|
|
|
let window_size = match window.inner_size() {
|
|
|
|
|
Ok(size) => size,
|
|
|
|
|
Err(e) => {
|
|
|
|
|
eprintln!("Failed to get window size: {}", e);
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
let window_width = window_size.width as i32;
|
|
|
|
|
let window_height = window_size.height as i32;
|
|
|
|
|
|
|
|
|
|
// Calculate the new position to center the window on the monitor
|
|
|
|
|
let window_x = monitor_position.x + (monitor_size.width as i32 - window_width) / 2;
|
|
|
|
|
let window_y = monitor_position.y + (monitor_size.height as i32 - window_height) / 2;
|
|
|
|
|
|
|
|
|
|
// Move the window to the new position
|
|
|
|
|
if let Err(e) = window.set_position(PhysicalPosition::new(window_x, window_y)) {
|
|
|
|
|
eprintln!("Failed to move window: {}", e);
|
|
|
|
|
}
|
2025-02-25 16:22:22 +08:00
|
|
|
|
|
|
|
|
if let Some(name) = monitor.name() {
|
|
|
|
|
println!("Window moved to monitor: {}", name);
|
|
|
|
|
|
|
|
|
|
let mut previous_monitor = PREVIOUS_MONITOR_NAME.lock().unwrap();
|
|
|
|
|
*previous_monitor = Some(name.to_string());
|
|
|
|
|
}
|
2025-02-11 14:53:46 +08:00
|
|
|
}
|
|
|
|
|
|
2024-12-15 21:06:23 +08:00
|
|
|
#[allow(dead_code)]
|
2024-12-22 15:35:05 +08:00
|
|
|
fn open_settings(app: &tauri::AppHandle) {
|
2024-12-15 21:06:23 +08:00
|
|
|
use tauri::webview::WebviewBuilder;
|
2024-12-14 15:38:32 +08:00
|
|
|
println!("settings menu item was clicked");
|
|
|
|
|
let window = app.get_webview_window("settings");
|
|
|
|
|
if let Some(window) = window {
|
2025-03-24 17:19:19 +08:00
|
|
|
let _ = window.show();
|
|
|
|
|
let _ = window.unminimize();
|
|
|
|
|
let _ = window.set_focus();
|
2024-12-14 15:38:32 +08:00
|
|
|
} else {
|
|
|
|
|
let window = tauri::window::WindowBuilder::new(app, "settings")
|
|
|
|
|
.title("Settings Window")
|
|
|
|
|
.fullscreen(false)
|
2024-12-17 16:25:45 +08:00
|
|
|
.resizable(false)
|
|
|
|
|
.minimizable(false)
|
|
|
|
|
.maximizable(false)
|
|
|
|
|
.inner_size(800.0, 600.0)
|
2024-12-14 15:38:32 +08:00
|
|
|
.build()
|
|
|
|
|
.unwrap();
|
|
|
|
|
|
|
|
|
|
let webview_builder =
|
|
|
|
|
WebviewBuilder::new("settings", tauri::WebviewUrl::App("/ui/settings".into()));
|
|
|
|
|
let _webview = window
|
|
|
|
|
.add_child(
|
|
|
|
|
webview_builder,
|
|
|
|
|
tauri::LogicalPosition::new(0, 0),
|
|
|
|
|
window.inner_size().unwrap(),
|
|
|
|
|
)
|
|
|
|
|
.unwrap();
|
|
|
|
|
}
|
|
|
|
|
}
|
2025-03-06 17:50:44 +08:00
|
|
|
|
|
|
|
|
#[tauri::command]
|
2025-03-06 20:11:17 +08:00
|
|
|
async fn get_app_search_source<R: Runtime>(app_handle: AppHandle<R>) -> Result<(), String> {
|
|
|
|
|
init_app_search_source(&app_handle).await?;
|
2025-03-06 17:50:44 +08:00
|
|
|
let _ = server::connector::refresh_all_connectors(&app_handle).await;
|
|
|
|
|
let _ = server::datasource::refresh_all_datasources(&app_handle).await;
|
2025-03-06 20:11:17 +08:00
|
|
|
|
|
|
|
|
Ok(())
|
2025-03-06 17:50:44 +08:00
|
|
|
}
|
2025-03-07 12:42:55 +08:00
|
|
|
|
|
|
|
|
#[tauri::command]
|
|
|
|
|
async fn show_settings(app_handle: AppHandle) {
|
|
|
|
|
open_settings(&app_handle);
|
2025-04-16 19:06:31 +08:00
|
|
|
}
|