mirror of
https://github.com/tauri-apps/tauri.git
synced 2026-04-03 10:11:15 +02:00
157 lines
4.2 KiB
Rust
157 lines
4.2 KiB
Rust
// Copyright 2019-2022 Tauri Programme within The Commons Conservancy
|
|
// SPDX-License-Identifier: Apache-2.0
|
|
// SPDX-License-Identifier: MIT
|
|
|
|
#![cfg_attr(
|
|
all(not(debug_assertions), target_os = "windows"),
|
|
windows_subsystem = "windows"
|
|
)]
|
|
|
|
mod cmd;
|
|
|
|
use serde::Serialize;
|
|
use tauri::{window::WindowBuilder, App, AppHandle, RunEvent, WindowUrl};
|
|
|
|
#[derive(Clone, Serialize)]
|
|
struct Reply {
|
|
data: String,
|
|
}
|
|
|
|
pub type SetupHook = Box<dyn FnOnce(&mut App) -> Result<(), Box<dyn std::error::Error>> + Send>;
|
|
pub type OnEvent = Box<dyn FnMut(&AppHandle, RunEvent)>;
|
|
|
|
#[derive(Default)]
|
|
pub struct AppBuilder {
|
|
setup: Option<SetupHook>,
|
|
on_event: Option<OnEvent>,
|
|
}
|
|
|
|
impl AppBuilder {
|
|
pub fn new() -> Self {
|
|
Self::default()
|
|
}
|
|
|
|
#[must_use]
|
|
pub fn setup<F>(mut self, setup: F) -> Self
|
|
where
|
|
F: FnOnce(&mut App) -> Result<(), Box<dyn std::error::Error>> + Send + 'static,
|
|
{
|
|
self.setup.replace(Box::new(setup));
|
|
self
|
|
}
|
|
|
|
#[must_use]
|
|
pub fn on_event<F>(mut self, on_event: F) -> Self
|
|
where
|
|
F: Fn(&AppHandle, RunEvent) + 'static,
|
|
{
|
|
self.on_event.replace(Box::new(on_event));
|
|
self
|
|
}
|
|
|
|
pub fn run(self) {
|
|
let setup = self.setup;
|
|
let mut on_event = self.on_event;
|
|
|
|
#[allow(unused_mut)]
|
|
let mut builder = tauri::Builder::default()
|
|
.setup(move |app| {
|
|
if let Some(setup) = setup {
|
|
(setup)(app)?;
|
|
}
|
|
|
|
#[allow(unused_mut)]
|
|
let mut window_builder = WindowBuilder::new(app, "main", WindowUrl::default())
|
|
.user_agent("Tauri API")
|
|
.title("Tauri API Validation")
|
|
.inner_size(1000., 800.)
|
|
.min_inner_size(600., 400.);
|
|
|
|
#[cfg(target_os = "windows")]
|
|
{
|
|
window_builder = window_builder.transparent(true);
|
|
window_builder = window_builder.decorations(false);
|
|
}
|
|
|
|
let window = window_builder.build().unwrap();
|
|
|
|
#[cfg(target_os = "windows")]
|
|
{
|
|
let _ = window_shadows::set_shadow(&window, true);
|
|
let _ = window_vibrancy::apply_blur(&window, Some((0, 0, 0, 0)));
|
|
}
|
|
|
|
#[cfg(debug_assertions)]
|
|
window.open_devtools();
|
|
|
|
std::thread::spawn(|| {
|
|
let server = match tiny_http::Server::http("localhost:3003") {
|
|
Ok(s) => s,
|
|
Err(e) => {
|
|
eprintln!("{}", e);
|
|
std::process::exit(1);
|
|
}
|
|
};
|
|
loop {
|
|
if let Ok(mut request) = server.recv() {
|
|
let mut body = Vec::new();
|
|
let _ = request.as_reader().read_to_end(&mut body);
|
|
let response = tiny_http::Response::new(
|
|
tiny_http::StatusCode(200),
|
|
request.headers().to_vec(),
|
|
std::io::Cursor::new(body),
|
|
request.body_length(),
|
|
None,
|
|
);
|
|
let _ = request.respond(response);
|
|
}
|
|
}
|
|
});
|
|
|
|
Ok(())
|
|
})
|
|
.on_page_load(|window, _| {
|
|
let window_ = window.clone();
|
|
window.listen("js-event", move |event| {
|
|
println!("got js-event with message '{:?}'", event.payload());
|
|
let reply = Reply {
|
|
data: "something else".to_string(),
|
|
};
|
|
|
|
window_
|
|
.emit("rust-event", Some(reply))
|
|
.expect("failed to emit");
|
|
});
|
|
});
|
|
|
|
#[cfg(target_os = "macos")]
|
|
{
|
|
builder = builder.menu(tauri::Menu::os_default("Tauri API Validation"));
|
|
}
|
|
|
|
#[allow(unused_mut)]
|
|
let mut app = builder
|
|
.invoke_handler(tauri::generate_handler![
|
|
cmd::log_operation,
|
|
cmd::perform_request,
|
|
])
|
|
.build(tauri::tauri_build_context!())
|
|
.expect("error while building tauri application");
|
|
|
|
#[cfg(target_os = "macos")]
|
|
app.set_activation_policy(tauri::ActivationPolicy::Regular);
|
|
|
|
#[allow(unused_variables)]
|
|
app.run(move |app_handle, e| {
|
|
if let RunEvent::ExitRequested { api, .. } = &e {
|
|
// Keep the event loop running even if all windows are closed
|
|
// This allow us to catch system tray events when there is no window
|
|
api.prevent_exit();
|
|
}
|
|
if let Some(on_event) = &mut on_event {
|
|
(on_event)(app_handle, e);
|
|
}
|
|
})
|
|
}
|
|
}
|