mirror of
https://github.com/AeThex-Corporation/AeThex-OS.git
synced 2026-04-19 06:47:21 +00:00
102 lines
4.6 KiB
Rust
102 lines
4.6 KiB
Rust
use tauri::{Manager, Emitter, menu::{Menu, MenuItem}, tray::{TrayIconBuilder, TrayIconEvent}};
|
|
|
|
// Learn more about Tauri commands at https://tauri.app/develop/calling-rust/
|
|
#[tauri::command]
|
|
fn greet(name: &str) -> String {
|
|
format!("Hello, {}! You've been greeted from Rust!", name)
|
|
}
|
|
|
|
#[cfg_attr(mobile, tauri::mobile_entry_point)]
|
|
pub fn run() {
|
|
tauri::Builder::default()
|
|
.plugin(tauri_plugin_opener::init())
|
|
.plugin(tauri_plugin_fs::init())
|
|
.plugin(tauri_plugin_dialog::init())
|
|
.plugin(tauri_plugin_notification::init())
|
|
.setup(|app| {
|
|
// Create system tray menu with quick actions
|
|
let show_i = MenuItem::with_id(app, "show", "Show AeThex-OS", true, None::<&str>)?;
|
|
let hide_i = MenuItem::with_id(app, "hide", "Hide to Tray", true, None::<&str>)?;
|
|
let separator1 = tauri::menu::PredefinedMenuItem::separator(app)?;
|
|
let new_project_i = MenuItem::with_id(app, "new_project", "📋 New Project", true, None::<&str>)?;
|
|
let quick_terminal_i = MenuItem::with_id(app, "terminal", "💻 Quick Terminal", true, None::<&str>)?;
|
|
let achievements_i = MenuItem::with_id(app, "achievements", "🏆 Achievements", true, None::<&str>)?;
|
|
let separator2 = tauri::menu::PredefinedMenuItem::separator(app)?;
|
|
let quit_i = MenuItem::with_id(app, "quit", "Quit", true, None::<&str>)?;
|
|
|
|
let menu = Menu::with_items(app, &[
|
|
&show_i,
|
|
&hide_i,
|
|
&separator1,
|
|
&new_project_i,
|
|
&quick_terminal_i,
|
|
&achievements_i,
|
|
&separator2,
|
|
&quit_i
|
|
])?;
|
|
|
|
let _tray = TrayIconBuilder::new()
|
|
.icon(app.default_window_icon().unwrap().clone())
|
|
.menu(&menu)
|
|
.on_menu_event(|app, event| match event.id.as_ref() {
|
|
"show" => {
|
|
if let Some(window) = app.get_webview_window("main") {
|
|
let _ = window.show();
|
|
let _ = window.set_focus();
|
|
}
|
|
}
|
|
"hide" => {
|
|
if let Some(window) = app.get_webview_window("main") {
|
|
let _ = window.hide();
|
|
}
|
|
}
|
|
"new_project" => {
|
|
if let Some(window) = app.get_webview_window("main") {
|
|
let _ = window.show();
|
|
let _ = window.set_focus();
|
|
// Emit event to frontend to open Projects app
|
|
let _ = window.emit("open-app", "projects");
|
|
}
|
|
}
|
|
"terminal" => {
|
|
if let Some(window) = app.get_webview_window("main") {
|
|
let _ = window.show();
|
|
let _ = window.set_focus();
|
|
// Emit event to frontend to open Terminal
|
|
let _ = window.emit("open-app", "terminal");
|
|
}
|
|
}
|
|
"achievements" => {
|
|
if let Some(window) = app.get_webview_window("main") {
|
|
let _ = window.show();
|
|
let _ = window.set_focus();
|
|
// Emit event to frontend to open Achievements
|
|
let _ = window.emit("open-app", "achievements");
|
|
}
|
|
}
|
|
"quit" => {
|
|
app.exit(0);
|
|
}
|
|
_ => {}
|
|
})
|
|
.on_tray_icon_event(|tray, event| {
|
|
if let TrayIconEvent::Click { button: tauri::tray::MouseButton::Left, .. } = event {
|
|
let app = tray.app_handle();
|
|
if let Some(window) = app.get_webview_window("main") {
|
|
if window.is_visible().unwrap_or(false) {
|
|
let _ = window.hide();
|
|
} else {
|
|
let _ = window.show();
|
|
let _ = window.set_focus();
|
|
}
|
|
}
|
|
}
|
|
})
|
|
.build(app)?;
|
|
|
|
Ok(())
|
|
})
|
|
.invoke_handler(tauri::generate_handler![greet])
|
|
.run(tauri::generate_context!())
|
|
.expect("error while running tauri application");
|
|
}
|