mirror of
https://github.com/DioxusLabs/dioxus
synced 2024-12-22 18:43:14 +00:00
38 lines
1.1 KiB
Rust
38 lines
1.1 KiB
Rust
use axum::{
|
|
extract::ws::WebSocketUpgrade, response::Html, response::IntoResponse, routing::get, Extension,
|
|
Router,
|
|
};
|
|
use dioxus_core::{Element, LazyNodes, Scope};
|
|
use dioxus_liveview::Liveview;
|
|
|
|
#[tokio::main]
|
|
async fn main() {
|
|
#[cfg(feature = "axum")]
|
|
{
|
|
pretty_env_logger::init();
|
|
|
|
let addr: std::net::SocketAddr = ([127, 0, 0, 1], 3030).into();
|
|
|
|
let view = dioxus_liveview::new(addr);
|
|
let body = view.body("<title>Dioxus Liveview</title>");
|
|
|
|
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(socket, app).await;
|
|
})
|
|
}),
|
|
);
|
|
axum::Server::bind(&addr.to_string().parse().unwrap())
|
|
.serve(app.into_make_service())
|
|
.await
|
|
.unwrap();
|
|
}
|
|
}
|
|
|
|
fn app(cx: Scope) -> Element {
|
|
cx.render(LazyNodes::new(|f| f.text(format_args!("hello world!"))))
|
|
}
|