2024-02-14 21:48:58 +00:00
|
|
|
//! A simple example demonstrating how to use signals to modify state from several different places.
|
|
|
|
//!
|
2024-07-24 00:49:33 +00:00
|
|
|
//! This simple example implements a counter that can be incremented, decremented, and paused. It also demonstrates
|
2024-02-14 21:48:58 +00:00
|
|
|
//! that background tasks in use_futures can modify the value as well.
|
|
|
|
//!
|
|
|
|
//! Most signals implement Into<ReadOnlySignal<T>>, making ReadOnlySignal a good default type when building new
|
|
|
|
//! library components that don't need to modify their values.
|
|
|
|
|
2024-09-03 15:16:37 +00:00
|
|
|
use async_std::task::sleep;
|
2023-01-02 00:57:33 +00:00
|
|
|
use dioxus::prelude::*;
|
|
|
|
|
|
|
|
fn main() {
|
2024-10-10 23:00:58 +00:00
|
|
|
dioxus::launch(app);
|
2023-01-02 00:57:33 +00:00
|
|
|
}
|
|
|
|
|
2024-01-14 04:51:37 +00:00
|
|
|
fn app() -> Element {
|
2024-01-16 07:24:59 +00:00
|
|
|
let mut running = use_signal(|| true);
|
|
|
|
let mut count = use_signal(|| 0);
|
|
|
|
let mut saved_values = use_signal(|| vec![0.to_string()]);
|
2023-01-02 00:57:33 +00:00
|
|
|
|
2024-01-24 23:53:39 +00:00
|
|
|
// use_memo will recompute the value of the signal whenever the captured signals change
|
|
|
|
let doubled_count = use_memo(move || count() * 2);
|
|
|
|
|
|
|
|
// use_effect will subscribe to any changes in the signal values it captures
|
|
|
|
// effects will always run after first mount and then whenever the signal values change
|
2024-02-01 00:26:12 +00:00
|
|
|
use_effect(move || println!("Count changed to {count}"));
|
2024-01-24 23:53:39 +00:00
|
|
|
|
2024-01-29 22:12:05 +00:00
|
|
|
// We can do early returns and conditional rendering which will pause all futures that haven't been polled
|
|
|
|
if count() > 30 {
|
|
|
|
return rsx! {
|
|
|
|
h1 { "Count is too high!" }
|
2024-02-02 21:09:00 +00:00
|
|
|
button { onclick: move |_| count.set(0), "Press to reset" }
|
2024-01-29 22:12:05 +00:00
|
|
|
};
|
|
|
|
}
|
|
|
|
|
2024-01-24 23:53:39 +00:00
|
|
|
// use_future will spawn an infinitely running future that can be started and stopped
|
2024-02-01 00:33:53 +00:00
|
|
|
use_future(move || async move {
|
2023-01-02 00:57:33 +00:00
|
|
|
loop {
|
2024-01-16 05:43:30 +00:00
|
|
|
if running() {
|
2023-10-16 00:50:23 +00:00
|
|
|
count += 1;
|
|
|
|
}
|
2024-09-03 15:16:37 +00:00
|
|
|
sleep(std::time::Duration::from_millis(400)).await;
|
2023-01-02 00:57:33 +00:00
|
|
|
}
|
|
|
|
});
|
|
|
|
|
2024-02-02 21:09:00 +00:00
|
|
|
// use_resource will spawn a future that resolves to a value
|
|
|
|
let _slow_count = use_resource(move || async move {
|
2024-09-03 15:16:37 +00:00
|
|
|
sleep(std::time::Duration::from_millis(200)).await;
|
2024-01-24 23:53:39 +00:00
|
|
|
count() * 2
|
|
|
|
});
|
|
|
|
|
2024-01-16 19:18:46 +00:00
|
|
|
rsx! {
|
2023-01-02 00:57:33 +00:00
|
|
|
h1 { "High-Five counter: {count}" }
|
|
|
|
button { onclick: move |_| count += 1, "Up high!" }
|
|
|
|
button { onclick: move |_| count -= 1, "Down low!" }
|
2023-10-16 00:52:01 +00:00
|
|
|
button { onclick: move |_| running.toggle(), "Toggle counter" }
|
2024-02-01 00:26:12 +00:00
|
|
|
button { onclick: move |_| saved_values.push(count.to_string()), "Save this value" }
|
2024-01-27 06:33:41 +00:00
|
|
|
button { onclick: move |_| saved_values.clear(), "Clear saved values" }
|
2023-01-02 03:57:16 +00:00
|
|
|
|
2023-10-16 00:40:56 +00:00
|
|
|
// We can do boolean operations on the current signal value
|
2024-01-16 05:12:44 +00:00
|
|
|
if count() > 5 {
|
2024-01-11 03:33:34 +00:00
|
|
|
h2 { "High five!" }
|
2023-01-02 03:57:16 +00:00
|
|
|
}
|
2023-10-16 00:40:56 +00:00
|
|
|
|
|
|
|
// We can cleanly map signals with iterators
|
2024-01-27 06:33:41 +00:00
|
|
|
for value in saved_values.iter() {
|
2023-10-16 00:40:56 +00:00
|
|
|
h3 { "Saved value: {value}" }
|
|
|
|
}
|
2023-10-17 22:42:21 +00:00
|
|
|
|
|
|
|
// We can also use the signal value as a slice
|
2023-10-17 23:06:43 +00:00
|
|
|
if let [ref first, .., ref last] = saved_values.read().as_slice() {
|
2024-01-11 03:33:34 +00:00
|
|
|
li { "First and last: {first}, {last}" }
|
2023-10-17 22:42:21 +00:00
|
|
|
} else {
|
2024-01-11 03:33:34 +00:00
|
|
|
"No saved values"
|
2023-10-17 22:42:21 +00:00
|
|
|
}
|
2024-01-29 19:36:39 +00:00
|
|
|
|
|
|
|
// You can pass a value directly to any prop that accepts a signal
|
2024-01-29 21:57:23 +00:00
|
|
|
Child { count: doubled_count() }
|
2024-02-01 00:26:12 +00:00
|
|
|
Child { count: doubled_count }
|
2024-01-29 19:36:39 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#[component]
|
2024-01-29 21:57:23 +00:00
|
|
|
fn Child(mut count: ReadOnlySignal<i32>) -> Element {
|
2024-02-01 09:05:28 +00:00
|
|
|
println!("rendering child with count {count}");
|
|
|
|
|
2024-01-29 19:36:39 +00:00
|
|
|
rsx! {
|
|
|
|
h1 { "{count}" }
|
2024-01-14 05:12:21 +00:00
|
|
|
}
|
2023-01-02 00:57:33 +00:00
|
|
|
}
|