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

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