1
0
Evan Almloff 04b14c5abc Fix clearing error boundaries (#4041) 1 сар өмнө
..
.rustfmt.toml 662f58c8bc wip: add diffing tests 2 жил өмнө
README.md 55f76fede6 work on fixing some core tests 1 жил өмнө
attr_cleanup.rs 0de3bf7aeb Fix nested rsx expansion by not using template titles (#2799) 10 сар өмнө
attributes_pass.rs 34bdcd15cf Switch to a pool of dynamic values for hot reloading (#2705) 11 сар өмнө
boolattrs.rs 0de3bf7aeb Fix nested rsx expansion by not using template titles (#2799) 10 сар өмнө
bubble_error.rs 0de3bf7aeb Fix nested rsx expansion by not using template titles (#2799) 10 сар өмнө
children_drop_futures.rs 0de3bf7aeb Fix nested rsx expansion by not using template titles (#2799) 10 сар өмнө
conditional_formatted_attributes.rs 37a6e9200f Fix if chain attributes with mixed expressions and strings (#3149) 7 сар өмнө
context_api.rs 0de3bf7aeb Fix nested rsx expansion by not using template titles (#2799) 10 сар өмнө
create_dom.rs 0de3bf7aeb Fix nested rsx expansion by not using template titles (#2799) 10 сар өмнө
create_fragments.rs fa4e5dbf62 Fix rsx autocomplete and diagnostics in the root; provide better completions after attributes are finished (#2656) 11 сар өмнө
create_lists.rs 0de3bf7aeb Fix nested rsx expansion by not using template titles (#2799) 10 сар өмнө
create_passthru.rs 0de3bf7aeb Fix nested rsx expansion by not using template titles (#2799) 10 сар өмнө
cycle.rs 0de3bf7aeb Fix nested rsx expansion by not using template titles (#2799) 10 сар өмнө
diff_component.rs 0de3bf7aeb Fix nested rsx expansion by not using template titles (#2799) 10 сар өмнө
diff_dynamic_node.rs d649b0c54d Fix mount use after removal/Simplify mounts a bit (#2834) 10 сар өмнө
diff_element.rs 0de3bf7aeb Fix nested rsx expansion by not using template titles (#2799) 10 сар өмнө
diff_keyed_list.rs d649b0c54d Fix mount use after removal/Simplify mounts a bit (#2834) 10 сар өмнө
diff_unkeyed_list.rs 0de3bf7aeb Fix nested rsx expansion by not using template titles (#2799) 10 сар өмнө
error_boundary.rs 04b14c5abc Fix clearing error boundaries (#4041) 1 сар өмнө
event_propagation.rs cab573eefd Synchronous prevent default (#2792) 10 сар өмнө
fuzzing.rs 959ab67624 Fix templates merging in debug mode in macros (#2828) 10 сар өмнө
hotreloading.rs 7c3d308ab5 chore: make warnings go away 2 жил өмнө
kitchen_sink.rs ef436e4ed0 Fix inserting attributes after expanding dynamic nodes (#3094) 8 сар өмнө
lifecycle.rs cab573eefd Synchronous prevent default (#2792) 10 сар өмнө
many_roots.rs ef436e4ed0 Fix inserting attributes after expanding dynamic nodes (#3094) 8 сар өмнө
memory_leak.rs 19ca7075d6 Fix the event handler memory leak (#3508) 5 сар өмнө
miri_full_app.rs cab573eefd Synchronous prevent default (#2792) 10 сар өмнө
miri_simple.rs 022e4ad203 Suspense boundaries/out of order streaming/anyhow like error handling (#2365) 1 жил өмнө
miri_stress.rs 022e4ad203 Suspense boundaries/out of order streaming/anyhow like error handling (#2365) 1 жил өмнө
safety.rs e65c5f0eb3 depreciate the render macro 1 жил өмнө
suspense.rs ef436e4ed0 Fix inserting attributes after expanding dynamic nodes (#3094) 8 сар өмнө
task.rs 022e4ad203 Suspense boundaries/out of order streaming/anyhow like error handling (#2365) 1 жил өмнө
tracing.rs cab573eefd Synchronous prevent default (#2792) 10 сар өмнө

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