2022-01-02 23:35:38 +00:00
|
|
|
//! This example just flexes the ability to use arbitrary expressions within RSX.
|
|
|
|
//! It also proves that lifetimes work properly, especially when used with use_ref
|
|
|
|
|
2021-12-30 08:14:47 +00:00
|
|
|
use dioxus::prelude::*;
|
|
|
|
|
|
|
|
fn main() {
|
|
|
|
let mut vdom = VirtualDom::new(example);
|
|
|
|
vdom.rebuild();
|
|
|
|
|
2022-07-09 19:15:20 +00:00
|
|
|
let out = dioxus_ssr::render_vdom_cfg(&vdom, |c| c.newline(true).indent(true));
|
2021-12-30 08:14:47 +00:00
|
|
|
println!("{}", out);
|
|
|
|
}
|
|
|
|
|
|
|
|
fn example(cx: Scope) -> Element {
|
2022-03-01 07:50:03 +00:00
|
|
|
let items = use_state(&cx, || {
|
2021-12-30 08:14:47 +00:00
|
|
|
vec![Thing {
|
|
|
|
a: "asd".to_string(),
|
|
|
|
b: 10,
|
|
|
|
}]
|
|
|
|
});
|
|
|
|
|
|
|
|
let things = use_ref(&cx, || {
|
|
|
|
vec![Thing {
|
|
|
|
a: "asd".to_string(),
|
|
|
|
b: 10,
|
|
|
|
}]
|
|
|
|
});
|
|
|
|
let things_list = things.read();
|
|
|
|
|
|
|
|
let mything = use_ref(&cx, || Some(String::from("asd")));
|
|
|
|
let mything_read = mything.read();
|
|
|
|
|
|
|
|
cx.render(rsx!(
|
|
|
|
div {
|
|
|
|
div {
|
|
|
|
id: "asd",
|
|
|
|
"your neighborhood spiderman"
|
|
|
|
|
|
|
|
items.iter().cycle().take(5).map(|f| rsx!{
|
|
|
|
div {
|
|
|
|
"{f.a}"
|
|
|
|
}
|
|
|
|
})
|
|
|
|
|
|
|
|
things_list.iter().map(|f| rsx!{
|
|
|
|
div {
|
|
|
|
"{f.a}"
|
2022-01-02 07:15:04 +00:00
|
|
|
"{f.b}"
|
2021-12-30 08:14:47 +00:00
|
|
|
}
|
|
|
|
})
|
|
|
|
|
|
|
|
mything_read.as_ref().map(|f| rsx!{
|
|
|
|
div {
|
|
|
|
"{f}"
|
|
|
|
}
|
|
|
|
})
|
|
|
|
}
|
|
|
|
}
|
|
|
|
))
|
|
|
|
}
|
|
|
|
|
|
|
|
struct Thing {
|
|
|
|
a: String,
|
|
|
|
b: u32,
|
|
|
|
}
|