Evan Almloff b8600d5144 fix tests hai 1 ano
..
.rustfmt.toml 662f58c8bc wip: add diffing tests %!s(int64=2) %!d(string=hai) anos
README.md 3b166c9edd wip: clean up some things %!s(int64=2) %!d(string=hai) anos
attr_cleanup.rs c4a18bc24d chore: clean up some clippy warnings and add clippy lints to CI %!s(int64=2) %!d(string=hai) anos
boolattrs.rs 51dba50c04 use BumpBox<Any> and FromAnyValue instead of sync bounds %!s(int64=2) %!d(string=hai) anos
borrowedstate.rs 8a1c96a68c fix custom attribute value support %!s(int64=2) %!d(string=hai) anos
bubble_error.rs afd024bcb6 Merge branch 'upstream' into fix-non-str-attributes %!s(int64=2) %!d(string=hai) anos
context_api.rs 34d9aafe0e feat: overhaul ssr %!s(int64=2) %!d(string=hai) anos
create_dom.rs a61daf220d feat: context api overhaul %!s(int64=2) %!d(string=hai) anos
create_element.rs a61daf220d feat: context api overhaul %!s(int64=2) %!d(string=hai) anos
create_fragments.rs a61daf220d feat: context api overhaul %!s(int64=2) %!d(string=hai) anos
create_lists.rs a61daf220d feat: context api overhaul %!s(int64=2) %!d(string=hai) anos
create_passthru.rs a61daf220d feat: context api overhaul %!s(int64=2) %!d(string=hai) anos
cycle.rs 8a1c96a68c fix custom attribute value support %!s(int64=2) %!d(string=hai) anos
diff_component.rs 8a1c96a68c fix custom attribute value support %!s(int64=2) %!d(string=hai) anos
diff_element.rs 85657d3906 feat: rip out mutations for templates %!s(int64=2) %!d(string=hai) anos
diff_keyed_list.rs 8a1c96a68c fix custom attribute value support %!s(int64=2) %!d(string=hai) anos
diff_unkeyed_list.rs afd024bcb6 Merge branch 'upstream' into fix-non-str-attributes %!s(int64=2) %!d(string=hai) anos
error_boundary.rs c4a18bc24d chore: clean up some clippy warnings and add clippy lints to CI %!s(int64=2) %!d(string=hai) anos
fuzzing.rs b8600d5144 fix tests hai 1 ano
hotreloading.rs 7c3d308ab5 chore: make warnings go away %!s(int64=2) %!d(string=hai) anos
kitchen_sink.rs 51dba50c04 use BumpBox<Any> and FromAnyValue instead of sync bounds %!s(int64=2) %!d(string=hai) anos
lifecycle.rs a61daf220d feat: context api overhaul %!s(int64=2) %!d(string=hai) anos
miri_full_app.rs b0cccce60a feat: miri passing %!s(int64=2) %!d(string=hai) anos
miri_simple.rs 261d688b6e fix: get miri passing %!s(int64=2) %!d(string=hai) anos
miri_stress.rs c4a18bc24d chore: clean up some clippy warnings and add clippy lints to CI %!s(int64=2) %!d(string=hai) anos
safety.rs 68253b49d7 cargo fmt hai 1 ano
suspense.rs 4240f8428c Fix: dont use bumpslab anymore, just box scopestates hai 1 ano
task.rs 4240f8428c Fix: dont use bumpslab anymore, just box scopestates hai 1 ano

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