2025-01-22 14:14:18 +03:00
|
|
|
use actix_web::{web, App, HttpServer};
|
|
|
|
use compareware::api::update_item_db; // Corrected server function name
|
|
|
|
use compareware::db::Database;
|
2024-12-06 14:45:14 +03:00
|
|
|
#[cfg(feature = "ssr")]
|
|
|
|
#[actix_web::main]
|
|
|
|
async fn main() -> std::io::Result<()> {
|
|
|
|
use actix_files::Files;
|
|
|
|
use actix_web::*;
|
|
|
|
use leptos::*;
|
|
|
|
use leptos_actix::{generate_route_list, LeptosRoutes};
|
|
|
|
use compareware::app::*;
|
|
|
|
|
2025-01-22 14:14:18 +03:00
|
|
|
// Load configuration
|
2024-12-06 14:45:14 +03:00
|
|
|
let conf = get_configuration(None).await.unwrap();
|
|
|
|
let addr = conf.leptos_options.site_addr;
|
2025-01-22 14:14:18 +03:00
|
|
|
|
2024-12-06 14:45:14 +03:00
|
|
|
// Generate the list of routes in your Leptos App
|
|
|
|
let routes = generate_route_list(App);
|
|
|
|
println!("listening on http://{}", &addr);
|
|
|
|
|
2025-01-22 14:14:18 +03:00
|
|
|
// Start the Actix Web server
|
2024-12-06 14:45:14 +03:00
|
|
|
HttpServer::new(move || {
|
|
|
|
let leptos_options = &conf.leptos_options;
|
|
|
|
let site_root = &leptos_options.site_root;
|
|
|
|
|
|
|
|
App::new()
|
2025-01-22 14:14:18 +03:00
|
|
|
// Register server functions
|
|
|
|
.route("/api/{tail:.*}", leptos_actix::handle_server_fns())
|
|
|
|
// Serve JS/WASM/CSS from `pkg`
|
2024-12-06 14:45:14 +03:00
|
|
|
.service(Files::new("/pkg", format!("{site_root}/pkg")))
|
2025-01-22 14:14:18 +03:00
|
|
|
// Serve other assets from the `assets` directory
|
2024-12-06 14:45:14 +03:00
|
|
|
.service(Files::new("/assets", site_root))
|
2025-01-22 14:14:18 +03:00
|
|
|
// Serve the favicon from /favicon.ico
|
2024-12-06 14:45:14 +03:00
|
|
|
.service(favicon)
|
2025-01-22 14:14:18 +03:00
|
|
|
// Register Leptos routes
|
2024-12-06 14:45:14 +03:00
|
|
|
.leptos_routes(leptos_options.to_owned(), routes.to_owned(), App)
|
2025-01-22 14:14:18 +03:00
|
|
|
// Pass Leptos options to the app
|
2024-12-06 14:45:14 +03:00
|
|
|
.app_data(web::Data::new(leptos_options.to_owned()))
|
|
|
|
//.wrap(middleware::Compress::default())
|
|
|
|
})
|
|
|
|
.bind(&addr)?
|
|
|
|
.run()
|
|
|
|
.await
|
|
|
|
}
|
|
|
|
|
|
|
|
#[cfg(feature = "ssr")]
|
|
|
|
#[actix_web::get("favicon.ico")]
|
|
|
|
async fn favicon(
|
|
|
|
leptos_options: actix_web::web::Data<leptos::LeptosOptions>,
|
|
|
|
) -> actix_web::Result<actix_files::NamedFile> {
|
|
|
|
let leptos_options = leptos_options.into_inner();
|
|
|
|
let site_root = &leptos_options.site_root;
|
|
|
|
Ok(actix_files::NamedFile::open(format!(
|
|
|
|
"{site_root}/favicon.ico"
|
|
|
|
))?)
|
|
|
|
}
|
|
|
|
|
|
|
|
#[cfg(not(any(feature = "ssr", feature = "csr")))]
|
|
|
|
pub fn main() {
|
|
|
|
// no client-side main function
|
|
|
|
// unless we want this to work with e.g., Trunk for pure client-side testing
|
|
|
|
// see lib.rs for hydration function instead
|
|
|
|
// see optional feature `csr` instead
|
|
|
|
}
|
|
|
|
|
|
|
|
#[cfg(all(not(feature = "ssr"), feature = "csr"))]
|
|
|
|
pub fn main() {
|
|
|
|
// a client-side main function is required for using `trunk serve`
|
|
|
|
// prefer using `cargo leptos serve` instead
|
|
|
|
// to run: `trunk serve --open --features csr`
|
|
|
|
use compareware::app::*;
|
|
|
|
|
|
|
|
console_error_panic_hook::set_once();
|
|
|
|
|
|
|
|
leptos::mount_to_body(App);
|
2025-01-22 14:14:18 +03:00
|
|
|
}
|