Jonathan Kelley 2fa3fe1fc0 fix: use arcwake instead of rcwake 2 years ago
..
.rustfmt.toml 662f58c8bc wip: add diffing tests 2 years ago
README.md 3b166c9edd wip: clean up some things 2 years ago
attr_cleanup.rs 7a4b0d7c2d fix: use stack optimization for replacer 2 years ago
boolattrs.rs a61daf220d feat: context api overhaul 2 years ago
borrowedstate.rs a61daf220d feat: context api overhaul 2 years ago
bubble_error.rs 18157eeed1 fix: dont panic in panic test 2 years ago
context_api.rs 34d9aafe0e feat: overhaul ssr 2 years ago
create_dom.rs a61daf220d feat: context api overhaul 2 years ago
create_element.rs a61daf220d feat: context api overhaul 2 years ago
create_fragments.rs a61daf220d feat: context api overhaul 2 years ago
create_lists.rs a61daf220d feat: context api overhaul 2 years ago
create_passthru.rs a61daf220d feat: context api overhaul 2 years ago
cycle.rs a61daf220d feat: context api overhaul 2 years ago
diff_component.rs a61daf220d feat: context api overhaul 2 years ago
diff_element.rs 85657d3906 feat: rip out mutations for templates 2 years ago
diff_keyed_list.rs e22923eb2d feat: core tests passing 2 years ago
diff_unkeyed_list.rs 7a4b0d7c2d fix: use stack optimization for replacer 2 years ago
error_boundary.rs 2fa3fe1fc0 fix: use arcwake instead of rcwake 2 years ago
hotreloading.rs 7c3d308ab5 chore: make warnings go away 2 years ago
kitchen_sink.rs 74fba3b579 fix: remove scope from listener 2 years ago
lifecycle.rs a61daf220d feat: context api overhaul 2 years ago
miri_full_app.rs b0cccce60a feat: miri passing 2 years ago
miri_simple.rs 261d688b6e fix: get miri passing 2 years ago
miri_stress.rs cee63ae370 fix: spawn task 2 years ago
safety.rs 34d9aafe0e feat: overhaul ssr 2 years ago
suspense.rs 34d9aafe0e feat: overhaul ssr 2 years ago
task.rs 7c3d308ab5 chore: make warnings go away 2 years 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
  • [] change props