dioxus/tests/borrowedstate.rs

47 lines
844 B
Rust
Raw Normal View History

2021-10-22 05:16:39 +00:00
#![allow(non_snake_case)]
use dioxus::prelude::*;
2021-09-21 17:13:15 +00:00
2021-10-22 05:16:39 +00:00
#[test]
fn test_borrowed_state() {
let _ = VirtualDom::new(Parent);
}
2021-12-30 02:28:28 +00:00
fn Parent(cx: Scope) -> Element {
let value = cx.use_hook(|_| String::new());
2021-09-21 17:13:15 +00:00
cx.render(rsx! {
2021-09-21 17:13:15 +00:00
div {
Child { name: value }
Child { name: value }
Child { name: value }
Child { name: value }
}
})
2021-10-22 05:16:39 +00:00
}
2021-09-21 17:13:15 +00:00
#[derive(Props)]
struct ChildProps<'a> {
2021-10-22 05:16:39 +00:00
name: &'a str,
2021-09-21 17:13:15 +00:00
}
2021-12-15 02:46:19 +00:00
fn Child<'a>(cx: Scope<'a, ChildProps<'a>>) -> Element {
cx.render(rsx! {
2021-09-21 17:13:15 +00:00
div {
h1 { "it's nested" }
2021-12-15 02:46:19 +00:00
Child2 { name: cx.props.name }
2021-09-21 17:13:15 +00:00
}
})
2021-09-21 17:13:15 +00:00
}
#[derive(Props)]
struct Grandchild<'a> {
2021-10-22 05:16:39 +00:00
name: &'a str,
2021-09-21 17:13:15 +00:00
}
2021-12-15 02:46:19 +00:00
fn Child2<'a>(cx: Scope<'a, Grandchild<'a>>) -> Element {
cx.render(rsx! {
2021-12-15 02:46:19 +00:00
div { "Hello {cx.props.name}!" }
})
2021-09-21 17:13:15 +00:00
}