dioxus/packages/liveview/examples/axum.rs

35 lines
1 KiB
Rust
Raw Normal View History

#[cfg(not(feature = "axum"))]
fn main() {}
2022-04-24 02:13:43 +00:00
#[cfg(feature = "axum")]
2022-04-24 02:13:43 +00:00
#[tokio::main]
async fn main() {
use axum::{extract::ws::WebSocketUpgrade, response::Html, routing::get, Router};
use dioxus_core::{Element, LazyNodes, Scope};
pretty_env_logger::init();
2022-04-24 02:13:43 +00:00
fn app(cx: Scope) -> Element {
cx.render(LazyNodes::new(|f| f.text(format_args!("hello world!"))))
}
let addr: std::net::SocketAddr = ([127, 0, 0, 1], 3030).into();
2022-04-24 02:13:43 +00:00
let view = dioxus_liveview::new(addr);
let body = view.body("<title>Dioxus Liveview</title>");
2022-04-24 02:13:43 +00:00
let app = Router::new()
.route("/", get(move || async { Html(body) }))
.route(
"/app",
get(move |ws: WebSocketUpgrade| async move {
ws.on_upgrade(move |socket| async move {
view.upgrade_axum(socket, app).await;
})
}),
);
axum::Server::bind(&addr.to_string().parse().unwrap())
.serve(app.into_make_service())
.await
.unwrap();
2022-04-24 02:13:43 +00:00
}