mirror of
https://github.com/DioxusLabs/dioxus
synced 2024-11-30 16:09:12 +00:00
72 lines
1.6 KiB
Rust
72 lines
1.6 KiB
Rust
|
#![allow(non_snake_case, unused)]
|
||
|
|
||
|
//! This example shows what *not* to do
|
||
|
|
||
|
use std::collections::HashMap;
|
||
|
|
||
|
use dioxus::prelude::*;
|
||
|
|
||
|
fn main() {}
|
||
|
|
||
|
fn AntipatternNestedFragments(cx: Scope<()>) -> Element {
|
||
|
// ANCHOR: nested_fragments
|
||
|
// ❌ Don't unnecessarily nest fragments
|
||
|
let _ = cx.render(rsx!(
|
||
|
Fragment {
|
||
|
Fragment {
|
||
|
Fragment {
|
||
|
Fragment {
|
||
|
Fragment {
|
||
|
div { "Finally have a real node!" }
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
));
|
||
|
|
||
|
// ✅ Render shallow structures
|
||
|
cx.render(rsx!(
|
||
|
div { "Finally have a real node!" }
|
||
|
))
|
||
|
// ANCHOR_END: nested_fragments
|
||
|
}
|
||
|
|
||
|
#[derive(PartialEq, Props)]
|
||
|
struct NoKeysProps {
|
||
|
data: HashMap<u32, String>,
|
||
|
}
|
||
|
|
||
|
fn AntipatternNoKeys(cx: Scope<NoKeysProps>) -> Element {
|
||
|
// ANCHOR: iter_keys
|
||
|
let data: &HashMap<_, _> = &cx.props.data;
|
||
|
|
||
|
// ❌ No keys
|
||
|
cx.render(rsx! {
|
||
|
ul {
|
||
|
data.values().map(|value| rsx!(
|
||
|
li { "List item: {value}" }
|
||
|
))
|
||
|
}
|
||
|
});
|
||
|
|
||
|
// ❌ Using index as keys
|
||
|
cx.render(rsx! {
|
||
|
ul {
|
||
|
cx.props.data.values().enumerate().map(|(index, value)| rsx!(
|
||
|
li { key: "{index}", "List item: {value}" }
|
||
|
))
|
||
|
}
|
||
|
});
|
||
|
|
||
|
// ✅ Using unique IDs as keys:
|
||
|
cx.render(rsx! {
|
||
|
ul {
|
||
|
cx.props.data.iter().map(|(key, value)| rsx!(
|
||
|
li { key: "{key}", "List item: {value}" }
|
||
|
))
|
||
|
}
|
||
|
})
|
||
|
// ANCHOR_END: iter_keys
|
||
|
}
|