mirror of
https://github.com/DioxusLabs/dioxus
synced 2024-11-10 06:34:20 +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>
38 lines
1,014 B
Rust
38 lines
1,014 B
Rust
//! A few ways of mapping elements into rsx! syntax
|
|
//!
|
|
//! Rsx allows anything that's an iterator where the output type implements Into<Element>, so you can use any of the following:
|
|
|
|
use dioxus::prelude::*;
|
|
|
|
fn main() {
|
|
dioxus::launch(app);
|
|
}
|
|
|
|
fn app() -> Element {
|
|
rsx!(
|
|
div {
|
|
// Use Map directly to lazily pull elements
|
|
{(0..10).map(|f| rsx! { "{f}" })}
|
|
|
|
// Collect into an intermediate collection if necessary, and call into_iter
|
|
{["a", "b", "c", "d", "e", "f"]
|
|
.into_iter()
|
|
.map(|f| rsx! { "{f}" })
|
|
.collect::<Vec<_>>()
|
|
.into_iter()}
|
|
|
|
// Use optionals
|
|
{Some(rsx! { "Some" })}
|
|
|
|
// use a for loop where the body itself is RSX
|
|
for name in 0..10 {
|
|
div { "{name}" }
|
|
}
|
|
|
|
// Or even use an unterminated conditional
|
|
if true {
|
|
"hello world!"
|
|
}
|
|
}
|
|
)
|
|
}
|