Evan Almloff 37ea8ab906 Fix suspense diffing (#2789) 10 months ago
..
.rustfmt.toml 662f58c8bc wip: add diffing tests 2 years ago
README.md 55f76fede6 work on fixing some core tests 1 year ago
attr_cleanup.rs 9167cd9dec fix most typos, add crate-ci/typos to CI (#2653) 11 months ago
attributes_pass.rs 34bdcd15cf Switch to a pool of dynamic values for hot reloading (#2705) 11 months ago
boolattrs.rs 9167cd9dec fix most typos, add crate-ci/typos to CI (#2653) 11 months ago
bubble_error.rs 9167cd9dec fix most typos, add crate-ci/typos to CI (#2653) 11 months ago
children_drop_futures.rs 022e4ad203 Suspense boundaries/out of order streaming/anyhow like error handling (#2365) 1 year ago
context_api.rs 9167cd9dec fix most typos, add crate-ci/typos to CI (#2653) 11 months ago
create_dom.rs 9167cd9dec fix most typos, add crate-ci/typos to CI (#2653) 11 months ago
create_element.rs 9167cd9dec fix most typos, add crate-ci/typos to CI (#2653) 11 months ago
create_fragments.rs fa4e5dbf62 Fix rsx autocomplete and diagnostics in the root; provide better completions after attributes are finished (#2656) 11 months ago
create_lists.rs 9167cd9dec fix most typos, add crate-ci/typos to CI (#2653) 11 months ago
create_passthru.rs 9167cd9dec fix most typos, add crate-ci/typos to CI (#2653) 11 months ago
cycle.rs 9167cd9dec fix most typos, add crate-ci/typos to CI (#2653) 11 months ago
diff_component.rs 9167cd9dec fix most typos, add crate-ci/typos to CI (#2653) 11 months ago
diff_dynamic_node.rs 33f3d40a49 Fix diffing Option<String> (#2746) 11 months ago
diff_element.rs 9167cd9dec fix most typos, add crate-ci/typos to CI (#2653) 11 months ago
diff_keyed_list.rs 9167cd9dec fix most typos, add crate-ci/typos to CI (#2653) 11 months ago
diff_unkeyed_list.rs 1b0d089d19 Fix list diffing with root dynamic nodes (#2749) 11 months ago
error_boundary.rs 022e4ad203 Suspense boundaries/out of order streaming/anyhow like error handling (#2365) 1 year ago
event_propagation.rs 09e14f1936 Implement some clippy fixes 1 year ago
fuzzing.rs 022e4ad203 Suspense boundaries/out of order streaming/anyhow like error handling (#2365) 1 year ago
hotreloading.rs 7c3d308ab5 chore: make warnings go away 2 years ago
kitchen_sink.rs 9167cd9dec fix most typos, add crate-ci/typos to CI (#2653) 11 months ago
lifecycle.rs 9167cd9dec fix most typos, add crate-ci/typos to CI (#2653) 11 months ago
miri_full_app.rs 5ce91e1bfc Fix flakey windows tests (#2332) 1 year ago
miri_simple.rs 022e4ad203 Suspense boundaries/out of order streaming/anyhow like error handling (#2365) 1 year ago
miri_stress.rs 022e4ad203 Suspense boundaries/out of order streaming/anyhow like error handling (#2365) 1 year ago
safety.rs e65c5f0eb3 depreciate the render macro 1 year ago
suspense.rs 37ea8ab906 Fix suspense diffing (#2789) 10 months ago
task.rs 022e4ad203 Suspense boundaries/out of order streaming/anyhow like error handling (#2365) 1 year ago
tracing.rs 9ae3d14e67 Add tracing to virtual_dom (#1949) 1 year ago

README.md

Testing of Dioxus core

Diffing

  • create elements
  • create text
  • create fragments
  • create empty fragments (placeholders)
  • diff elements
  • diff from element/text to fragment
  • diff from element/text to empty fragment
  • diff to element with children works too
  • replace with works forward
  • replace with works backward
  • un-keyed diffing
  • keyed diffing
  • keyed diffing out of order
  • keyed diffing with prefix/suffix
  • suspended nodes work

Lifecycle

  • [] Components mount properly
  • [] Components create new child components
  • [] Replaced components unmount old components and mount new
  • [] Post-render effects are called

Shared Context

  • [] Shared context propagates downwards
  • [] unwrapping shared context if it doesn't exist works too

Suspense

  • [] use_suspense generates suspended nodes

Hooks

  • [] Drop order is maintained
  • [] Shared hook state is okay
  • [] use_hook works
  • [] use_ref works
  • [] use_noderef works
  • [] use_provide_state
  • [] use_consume_state

VirtualDOM API

  • [] work
  • [] rebuild_to_vec
  • [] change props