mirror of
https://github.com/DioxusLabs/dioxus
synced 2024-11-24 05:03:06 +00:00
c866ae602b
* Add `#[component]` attribute + system for creating component attributes + other stuff * Delete inlineprops.rs * Update inline_props.rs * Cargo fmt * Fix clippy warnings and paths in props/mods.rs * Include where clause in `#[inline_props]` output * Allow Clippy type complexity in `LinkProps` * Allow the type complexity lint for the entire link.rs file * Remove snake_case -> PascalCase converter, but rather enforce PascalCase Also: - Put the second function inside the main one instead of besides it. - Simplify * Simplify type check lints so they don't return false positives They will not always work, but they won't return any false positives, like for aliases. This is likely going to be replaced by a more polished Clippy-backed linting system. * Fix #583 * Cargo fmt * Add docs for `deserialize()` and remove useless comment * Add `#[component]` to prelude * Merge branch 'master' of https://github.com/tigerros/dioxus * #[inline_props] is no more. Except in the docs folder, but that's going to be removed * Remove docs folder * Remove docs from workspace * Resolve `DeserializerOutput` conversation
133 lines
2.7 KiB
Rust
133 lines
2.7 KiB
Rust
use dioxus::prelude::*;
|
|
|
|
#[test]
|
|
fn app_drops() {
|
|
#[component]
|
|
fn App(cx: Scope) -> Element {
|
|
cx.render(rsx! {
|
|
div {}
|
|
})
|
|
}
|
|
|
|
let mut dom = VirtualDom::new(App);
|
|
|
|
_ = dom.rebuild();
|
|
dom.mark_dirty(ScopeId::ROOT);
|
|
_ = dom.render_immediate();
|
|
}
|
|
|
|
#[test]
|
|
fn hooks_drop() {
|
|
#[component]
|
|
fn App(cx: Scope) -> Element {
|
|
cx.use_hook(|| String::from("asd"));
|
|
cx.use_hook(|| String::from("asd"));
|
|
cx.use_hook(|| String::from("asd"));
|
|
cx.use_hook(|| String::from("asd"));
|
|
|
|
cx.render(rsx! {
|
|
div {}
|
|
})
|
|
}
|
|
|
|
let mut dom = VirtualDom::new(App);
|
|
|
|
_ = dom.rebuild();
|
|
dom.mark_dirty(ScopeId::ROOT);
|
|
_ = dom.render_immediate();
|
|
}
|
|
|
|
#[test]
|
|
fn contexts_drop() {
|
|
#[component]
|
|
fn App(cx: Scope) -> Element {
|
|
cx.provide_context(String::from("asd"));
|
|
|
|
cx.render(rsx! {
|
|
div {
|
|
ChildComp {}
|
|
}
|
|
})
|
|
}
|
|
|
|
#[component]
|
|
fn ChildComp(cx: Scope) -> Element {
|
|
let el = cx.consume_context::<String>().unwrap();
|
|
|
|
cx.render(rsx! {
|
|
div { "hello {el}" }
|
|
})
|
|
}
|
|
|
|
let mut dom = VirtualDom::new(App);
|
|
|
|
_ = dom.rebuild();
|
|
dom.mark_dirty(ScopeId::ROOT);
|
|
_ = dom.render_immediate();
|
|
}
|
|
|
|
#[test]
|
|
fn tasks_drop() {
|
|
#[component]
|
|
fn App(cx: Scope) -> Element {
|
|
cx.spawn(async {
|
|
// tokio::time::sleep(std::time::Duration::from_millis(100000)).await;
|
|
});
|
|
|
|
cx.render(rsx! {
|
|
div { }
|
|
})
|
|
}
|
|
|
|
let mut dom = VirtualDom::new(App);
|
|
|
|
_ = dom.rebuild();
|
|
dom.mark_dirty(ScopeId::ROOT);
|
|
_ = dom.render_immediate();
|
|
}
|
|
|
|
#[test]
|
|
fn root_props_drop() {
|
|
struct RootProps(String);
|
|
|
|
let mut dom = VirtualDom::new_with_props(
|
|
|cx| cx.render(rsx!( div { "{cx.props.0}" } )),
|
|
RootProps("asdasd".to_string()),
|
|
);
|
|
|
|
_ = dom.rebuild();
|
|
dom.mark_dirty(ScopeId::ROOT);
|
|
_ = dom.render_immediate();
|
|
}
|
|
|
|
#[test]
|
|
fn diffing_drops_old() {
|
|
#[component]
|
|
fn App(cx: Scope) -> Element {
|
|
cx.render(rsx! {
|
|
div {
|
|
match cx.generation() % 2 {
|
|
0 => rsx!( ChildComp1 { name: "asdasd".to_string() }),
|
|
1 => rsx!( ChildComp2 { name: "asdasd".to_string() }),
|
|
_ => todo!()
|
|
}
|
|
}
|
|
})
|
|
}
|
|
|
|
#[component]
|
|
fn ChildComp1(cx: Scope, name: String) -> Element {
|
|
cx.render(rsx! { "Hello {name}" })
|
|
}
|
|
|
|
#[component]
|
|
fn ChildComp2(cx: Scope, name: String) -> Element {
|
|
cx.render(rsx! { "Goodbye {name}" })
|
|
}
|
|
|
|
let mut dom = VirtualDom::new(App);
|
|
_ = dom.rebuild();
|
|
dom.mark_dirty(ScopeId::ROOT);
|
|
|
|
_ = dom.render_immediate();
|
|
}
|