mirror of
https://github.com/DioxusLabs/dioxus
synced 2024-11-10 06:34:20 +00:00
141 lines
4.5 KiB
Rust
141 lines
4.5 KiB
Rust
use dioxus::prelude::*;
|
|
use rand::prelude::*;
|
|
|
|
fn main() {
|
|
dioxus::desktop::launch(App);
|
|
}
|
|
|
|
#[derive(Clone, PartialEq)]
|
|
struct Label {
|
|
key: usize,
|
|
labels: [&'static str; 3],
|
|
}
|
|
|
|
impl Label {
|
|
fn new_list(num: usize) -> Vec<Self> {
|
|
let mut rng = SmallRng::from_entropy();
|
|
let mut labels = Vec::with_capacity(num);
|
|
for _ in 0..num {
|
|
labels.push(Label {
|
|
key: 0,
|
|
labels: [
|
|
ADJECTIVES.choose(&mut rng).unwrap(),
|
|
COLOURS.choose(&mut rng).unwrap(),
|
|
NOUNS.choose(&mut rng).unwrap(),
|
|
],
|
|
});
|
|
}
|
|
labels
|
|
}
|
|
}
|
|
|
|
static App: Component = |cx| {
|
|
let items = use_ref(&cx, || vec![]);
|
|
let selected = use_state(&cx, || None);
|
|
|
|
cx.render(rsx! {
|
|
div { class: "container",
|
|
div { class: "jumbotron",
|
|
div { class: "row",
|
|
div { class: "col-md-6", h1 { "Dioxus" } }
|
|
div { class: "col-md-6",
|
|
div { class: "row",
|
|
ActionButton { name: "Create 1,000 rows", id: "run",
|
|
onclick: move || items.set(Label::new_list(1_000)),
|
|
}
|
|
ActionButton { name: "Create 10,000 rows", id: "runlots",
|
|
onclick: move || items.set(Label::new_list(10_000)),
|
|
}
|
|
ActionButton { name: "Append 1,000 rows", id: "add",
|
|
onclick: move || items.write().extend(Label::new_list(1_000)),
|
|
}
|
|
ActionButton { name: "Update every 10th row", id: "update",
|
|
onclick: move || items.write().iter_mut().step_by(10).for_each(|item| item.labels[2] = "!!!"),
|
|
}
|
|
ActionButton { name: "Clear", id: "clear",
|
|
onclick: move || items.write().clear(),
|
|
}
|
|
ActionButton { name: "Swap rows", id: "swaprows",
|
|
onclick: move || items.write().swap(0, 998),
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
table {
|
|
tbody {
|
|
{items.read().iter().enumerate().map(|(id, item)| {
|
|
let is_in_danger = if (*selected).map(|s| s == id).unwrap_or(false) {"danger"} else {""};
|
|
rsx!(tr { class: "{is_in_danger}",
|
|
td { class:"col-md-1" }
|
|
td { class:"col-md-1", "{item.key}" }
|
|
td { class:"col-md-1", onclick: move |_| selected.set(Some(id)),
|
|
a { class: "lbl", item.labels }
|
|
}
|
|
td { class: "col-md-1",
|
|
a { class: "remove", onclick: move |_| { items.write().remove(id); },
|
|
span { class: "glyphicon glyphicon-remove remove", aria_hidden: "true" }
|
|
}
|
|
}
|
|
td { class: "col-md-6" }
|
|
})
|
|
})}
|
|
}
|
|
}
|
|
span { class: "preloadicon glyphicon glyphicon-remove", aria_hidden: "true" }
|
|
}
|
|
})
|
|
};
|
|
|
|
#[derive(Props)]
|
|
struct ActionButtonProps<'a> {
|
|
name: &'static str,
|
|
id: &'static str,
|
|
onclick: &'a dyn Fn(),
|
|
}
|
|
|
|
fn ActionButton<'a>(cx: Scope<'a, ActionButtonProps<'a>>) -> Element {
|
|
rsx!(cx, div { class: "col-sm-6 smallpad",
|
|
button { class:"btn btn-primary btn-block", r#type: "button", id: "{cx.props.id}", onclick: move |_| (cx.props.onclick)(),
|
|
"{cx.props.name}"
|
|
}
|
|
})
|
|
}
|
|
|
|
static ADJECTIVES: &[&str] = &[
|
|
"pretty",
|
|
"large",
|
|
"big",
|
|
"small",
|
|
"tall",
|
|
"short",
|
|
"long",
|
|
"handsome",
|
|
"plain",
|
|
"quaint",
|
|
"clean",
|
|
"elegant",
|
|
"easy",
|
|
"angry",
|
|
"crazy",
|
|
"helpful",
|
|
"mushy",
|
|
"odd",
|
|
"unsightly",
|
|
"adorable",
|
|
"important",
|
|
"inexpensive",
|
|
"cheap",
|
|
"expensive",
|
|
"fancy",
|
|
];
|
|
|
|
static COLOURS: &[&str] = &[
|
|
"red", "yellow", "blue", "green", "pink", "brown", "purple", "brown", "white", "black",
|
|
"orange",
|
|
];
|
|
|
|
static NOUNS: &[&str] = &[
|
|
"table", "chair", "house", "bbq", "desk", "car", "pony", "cookie", "sandwich", "burger",
|
|
"pizza", "mouse", "keyboard",
|
|
];
|