Evan Almloff a01a65a0eb seperate text and other dynamic nodes 2 سال پیش
..
.rustfmt.toml 662f58c8bc wip: add diffing tests 2 سال پیش
README.md 3b166c9edd wip: clean up some things 2 سال پیش
attr_cleanup.rs c4a18bc24d chore: clean up some clippy warnings and add clippy lints to CI 2 سال پیش
boolattrs.rs 51dba50c04 use BumpBox<Any> and FromAnyValue instead of sync bounds 2 سال پیش
borrowedstate.rs 8a1c96a68c fix custom attribute value support 2 سال پیش
bubble_error.rs afd024bcb6 Merge branch 'upstream' into fix-non-str-attributes 2 سال پیش
context_api.rs 34d9aafe0e feat: overhaul ssr 2 سال پیش
create_dom.rs a61daf220d feat: context api overhaul 2 سال پیش
create_element.rs a61daf220d feat: context api overhaul 2 سال پیش
create_fragments.rs a61daf220d feat: context api overhaul 2 سال پیش
create_lists.rs a61daf220d feat: context api overhaul 2 سال پیش
create_passthru.rs a61daf220d feat: context api overhaul 2 سال پیش
cycle.rs 8a1c96a68c fix custom attribute value support 2 سال پیش
diff_component.rs 8a1c96a68c fix custom attribute value support 2 سال پیش
diff_element.rs 85657d3906 feat: rip out mutations for templates 2 سال پیش
diff_keyed_list.rs 8a1c96a68c fix custom attribute value support 2 سال پیش
diff_unkeyed_list.rs afd024bcb6 Merge branch 'upstream' into fix-non-str-attributes 2 سال پیش
error_boundary.rs c4a18bc24d chore: clean up some clippy warnings and add clippy lints to CI 2 سال پیش
fuzzing.rs a01a65a0eb seperate text and other dynamic nodes 2 سال پیش
hotreloading.rs 7c3d308ab5 chore: make warnings go away 2 سال پیش
kitchen_sink.rs 51dba50c04 use BumpBox<Any> and FromAnyValue instead of sync bounds 2 سال پیش
lifecycle.rs a61daf220d feat: context api overhaul 2 سال پیش
miri_full_app.rs b0cccce60a feat: miri passing 2 سال پیش
miri_simple.rs 261d688b6e fix: get miri passing 2 سال پیش
miri_stress.rs c4a18bc24d chore: clean up some clippy warnings and add clippy lints to CI 2 سال پیش
safety.rs 34d9aafe0e feat: overhaul ssr 2 سال پیش
suspense.rs faf94c7b4e fix: make miri pass on context api 2 سال پیش
task.rs 7c3d308ab5 chore: make warnings go away 2 سال پیش

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