2021-06-22 21:20:54 +00:00
|
|
|
//! JS Framework Benchmark
|
|
|
|
//! ----------------------
|
|
|
|
//!
|
|
|
|
//! This example is used in the JS framework benchmarking tool to compare Dioxus' performance with other frontend frameworks.
|
|
|
|
//!
|
|
|
|
//!
|
|
|
|
//!
|
|
|
|
|
|
|
|
use std::rc::Rc;
|
|
|
|
|
|
|
|
use dioxus::events::on::MouseEvent;
|
|
|
|
use dioxus_core as dioxus;
|
|
|
|
use dioxus_core::prelude::*;
|
|
|
|
use dioxus_web::WebsysRenderer;
|
2021-07-07 17:51:55 +00:00
|
|
|
use dioxus_html_namespace as dioxus_elements;
|
|
|
|
|
|
|
|
|
2021-06-22 21:20:54 +00:00
|
|
|
|
|
|
|
fn main() {
|
|
|
|
wasm_logger::init(wasm_logger::Config::new(log::Level::Debug));
|
|
|
|
console_error_panic_hook::set_once();
|
2021-06-30 02:44:21 +00:00
|
|
|
log::debug!("starting!");
|
2021-06-22 21:20:54 +00:00
|
|
|
wasm_bindgen_futures::spawn_local(WebsysRenderer::start(App));
|
|
|
|
}
|
|
|
|
|
|
|
|
// We use a special immutable hashmap to make hashmap operations efficient
|
2021-07-07 17:51:55 +00:00
|
|
|
type RowList = im_rc::HashMap<usize, Rc<str>, FxBuildHasher>;
|
|
|
|
// type RowList = im_rc::HashMap<usize, Rc<str>, nohash_hasher::BuildNoHashHasher<usize>>;
|
2021-06-22 21:20:54 +00:00
|
|
|
|
|
|
|
static App: FC<()> = |cx| {
|
2021-07-07 20:19:10 +00:00
|
|
|
let (items, set_items) = use_state_classic(cx, || RowList::default());
|
|
|
|
let (selection, set_selection) = use_state_classic(cx, || None as Option<usize>);
|
2021-06-22 21:20:54 +00:00
|
|
|
|
|
|
|
let create_rendered_rows = move |from, num| move |_| set_items(create_row_list(from, num));
|
|
|
|
|
|
|
|
let append_1_000_rows =
|
|
|
|
move |_| set_items(create_row_list(items.len(), 1000).union(items.clone()));
|
|
|
|
|
|
|
|
let update_every_10th_row = move |_| {
|
|
|
|
let mut new_items = items.clone();
|
|
|
|
let mut small_rng = SmallRng::from_entropy();
|
|
|
|
new_items
|
|
|
|
.iter_mut()
|
|
|
|
.step_by(10)
|
|
|
|
.for_each(|(_, val)| *val = create_new_row_label(&mut small_rng));
|
|
|
|
set_items(new_items);
|
|
|
|
};
|
|
|
|
let clear_rows = move |_| set_items(RowList::default());
|
|
|
|
|
|
|
|
let swap_rows = move |_| {
|
|
|
|
// this looks a bit ugly because we're using a hashmap instead of a vec
|
|
|
|
if items.len() > 998 {
|
|
|
|
let mut new_items = items.clone();
|
|
|
|
let a = new_items.get(&0).unwrap().clone();
|
|
|
|
*new_items.get_mut(&0).unwrap() = new_items.get(&998).unwrap().clone();
|
|
|
|
*new_items.get_mut(&998).unwrap() = a;
|
|
|
|
set_items(new_items);
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
let rows = items.iter().map(|(key, value)| {
|
|
|
|
rsx!(Row {
|
|
|
|
key: "{key}",
|
|
|
|
row_id: *key as usize,
|
|
|
|
label: value.clone(),
|
|
|
|
})
|
|
|
|
});
|
|
|
|
|
|
|
|
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", action: create_rendered_rows(0, 1_000) }
|
|
|
|
ActionButton { name: "Create 10,000 rows", id: "runlots", action: create_rendered_rows(0, 10_000) }
|
|
|
|
ActionButton { name: "Append 1,000 rows", id: "add", action: append_1_000_rows }
|
|
|
|
ActionButton { name: "Update every 10th row", id: "update", action: update_every_10th_row, }
|
|
|
|
ActionButton { name: "Clear", id: "clear", action: clear_rows }
|
|
|
|
ActionButton { name: "Swap rows", id: "swaprows", action: swap_rows }
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
table {
|
|
|
|
tbody {
|
|
|
|
{rows}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
span {}
|
|
|
|
}
|
|
|
|
})
|
|
|
|
};
|
|
|
|
|
|
|
|
#[derive(Props)]
|
2021-07-07 17:51:55 +00:00
|
|
|
struct ActionButtonProps<F: Fn(MouseEvent)> {
|
2021-06-22 21:20:54 +00:00
|
|
|
name: &'static str,
|
|
|
|
id: &'static str,
|
|
|
|
action: F,
|
|
|
|
}
|
2021-07-07 17:51:55 +00:00
|
|
|
fn ActionButton<F: Fn(MouseEvent)>(cx: Context<ActionButtonProps<F>>) -> VNode {
|
2021-06-22 21:20:54 +00:00
|
|
|
cx.render(rsx! {
|
|
|
|
div { class: "col-sm-6 smallpad"
|
2021-07-07 17:51:55 +00:00
|
|
|
button {class:"btn btn-primary btn-block", r#type: "button", id: "{cx.id}", onclick: {&cx.action},
|
2021-06-22 21:20:54 +00:00
|
|
|
"{cx.name}"
|
|
|
|
}
|
|
|
|
}
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
#[derive(PartialEq, Props)]
|
|
|
|
struct RowProps {
|
|
|
|
row_id: usize,
|
|
|
|
label: Rc<str>,
|
|
|
|
}
|
|
|
|
fn Row<'a>(cx: Context<'a, RowProps>) -> VNode {
|
|
|
|
cx.render(rsx! {
|
|
|
|
tr {
|
|
|
|
td { class:"col-md-1", "{cx.row_id}" }
|
|
|
|
td { class:"col-md-1", onclick: move |_| { /* run onselect */ }
|
|
|
|
a { class: "lbl", "{cx.label}" }
|
|
|
|
}
|
|
|
|
td { class: "col-md-1"
|
|
|
|
a { class: "remove", onclick: move |_| {/* remove */}
|
|
|
|
span { class: "glyphicon glyphicon-remove remove" aria_hidden: "true" }
|
|
|
|
}
|
|
|
|
}
|
|
|
|
td { class: "col-md-6" }
|
|
|
|
}
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
2021-07-07 17:51:55 +00:00
|
|
|
use fxhash::{FxBuildHasher, FxHasher32};
|
2021-06-22 21:20:54 +00:00
|
|
|
use rand::prelude::*;
|
|
|
|
fn create_new_row_label(rng: &mut SmallRng) -> Rc<str> {
|
|
|
|
let mut label = String::new();
|
|
|
|
label.push_str(ADJECTIVES.choose(rng).unwrap());
|
|
|
|
label.push(' ');
|
|
|
|
label.push_str(COLOURS.choose(rng).unwrap());
|
|
|
|
label.push(' ');
|
|
|
|
label.push_str(NOUNS.choose(rng).unwrap());
|
|
|
|
Rc::from(label)
|
|
|
|
}
|
|
|
|
|
|
|
|
fn create_row_list(from: usize, num: usize) -> RowList {
|
|
|
|
let mut small_rng = SmallRng::from_entropy();
|
|
|
|
(from..num + from)
|
|
|
|
.map(|f| (f, create_new_row_label(&mut small_rng)))
|
|
|
|
.collect::<RowList>()
|
|
|
|
}
|
|
|
|
|
|
|
|
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",
|
|
|
|
];
|