mirror of
https://github.com/DioxusLabs/dioxus
synced 2024-11-21 19:53:04 +00:00
20d146d9bd
* improve documentation for the fullstack server context * Add a section about axum integration to the crate root docs * make serve_dioxus_application accept the cfg builder directly * remove unused server_fn module * improve fullstack config docs * improve documentation for the server function macro * fix axum router extension link * Fix doc tests * Fix launch builder * Simplify the launch builder * don't re-export launch in the prelude * refactor fullstack launch * Fix fullstack launch builder * Update static generation with the new builder api * fix some formatting/overly broad launch replacements * fix custom menu example * fix fullstack/static generation examples * Fix static generation launch * A few small formatting fixes * Fix a few doc tests * implement LaunchConfig for serve configs * fix fullstack launch with separate web and server launch methods * fix check with all features * dont expose inner core module * clippy and check * fix readme --------- Co-authored-by: Jonathan Kelley <jkelleyrtp@gmail.com>
45 lines
1.4 KiB
Rust
45 lines
1.4 KiB
Rust
//! This example shows how you can chain memos together to create a tree of memoized values.
|
|
//!
|
|
//! Memos will also pause when their parent component pauses, so if you have a memo that depends on a signal, and the
|
|
//! signal pauses, the memo will pause too.
|
|
|
|
use dioxus::prelude::*;
|
|
|
|
fn main() {
|
|
dioxus::launch(app);
|
|
}
|
|
|
|
fn app() -> Element {
|
|
let mut value = use_signal(|| 0);
|
|
let mut depth = use_signal(|| 0_usize);
|
|
let items = use_memo(move || (0..depth()).map(|f| f as _).collect::<Vec<isize>>());
|
|
let state = use_memo(move || value() + 1);
|
|
|
|
println!("rendering app");
|
|
|
|
rsx! {
|
|
button { onclick: move |_| value += 1, "Increment" }
|
|
button { onclick: move |_| depth += 1, "Add depth" }
|
|
button { onclick: move |_| depth -= 1, "Remove depth" }
|
|
if depth() > 0 {
|
|
Child { depth, items, state }
|
|
}
|
|
}
|
|
}
|
|
|
|
#[component]
|
|
fn Child(state: Memo<isize>, items: Memo<Vec<isize>>, depth: ReadOnlySignal<usize>) -> Element {
|
|
// These memos don't get re-computed when early returns happen
|
|
let state = use_memo(move || state() + 1);
|
|
let item = use_memo(move || items()[depth() - 1]);
|
|
let depth = use_memo(move || depth() - 1);
|
|
|
|
println!("rendering child: {}", depth());
|
|
|
|
rsx! {
|
|
h3 { "Depth({depth})-Item({item}): {state}"}
|
|
if depth() > 0 {
|
|
Child { depth, state, items }
|
|
}
|
|
}
|
|
}
|