123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596 |
- #![allow(non_snake_case, unused)]
- use dioxus::prelude::*;
- use dioxus_fullstack::prelude::*;
- fn main() {
- #[cfg(feature = "web")]
- dioxus_web::launch_with_props(
- app,
- // Get the root props from the document
- get_root_props_from_document().unwrap_or_default(),
- dioxus_web::Config::new().hydrate(true),
- );
- #[cfg(feature = "ssr")]
- {
- use axum::extract::Path;
- use axum::extract::State;
- use axum::routing::get;
- tokio::runtime::Runtime::new()
- .unwrap()
- .block_on(async move {
- let addr = std::net::SocketAddr::from(([127, 0, 0, 1], 8080));
- axum::Server::bind(&addr)
- .serve(
- axum::Router::new()
- // Serve the dist folder with the static javascript and WASM files created by the dixous CLI
- .serve_static_assets("./dist")
- // Register server functions
- .register_server_fns("")
- // Connect to the hot reload server in debug mode
- .connect_hot_reload()
- // Render the application. This will serialize the root props (the intial count) into the HTML
- .route(
- "/",
- get(move |Path(intial_count): Path<usize>, State(ssr_state): State<SSRState>| async move { axum::body::Full::from(
- ssr_state.render(
- &ServeConfigBuilder::new(
- app,
- intial_count,
- )
- .build(),
- )
- )}),
- )
- // Render the application with a different intial count
- .route(
- "/:initial_count",
- get(move |Path(intial_count): Path<usize>, State(ssr_state): State<SSRState>| async move { axum::body::Full::from(
- ssr_state.render(
- &ServeConfigBuilder::new(
- app,
- intial_count,
- )
- .build(),
- )
- )}),
- )
- .with_state(SSRState::default())
- .into_make_service(),
- )
- .await
- .unwrap();
- });
- }
- }
- fn app(cx: Scope<usize>) -> Element {
- let mut count = use_state(cx, || *cx.props);
- cx.render(rsx! {
- h1 { "High-Five counter: {count}" }
- button { onclick: move |_| count += 1, "Up high!" }
- button { onclick: move |_| count -= 1, "Down low!" }
- button {
- onclick: move |_| {
- to_owned![count];
- async move {
- // Call the server function just like a local async function
- if let Ok(new_count) = double_server(*count.current()).await {
- count.set(new_count);
- }
- }
- },
- "Double"
- }
- })
- }
- #[server(DoubleServer)]
- async fn double_server(number: usize) -> Result<usize, ServerFnError> {
- // Perform some expensive computation or access a database on the server
- tokio::time::sleep(std::time::Duration::from_secs(1)).await;
- let result = number * 2;
- println!("server calculated {result}");
- Ok(result)
- }
|