Evan Almloff 519ec9d294 Move the document trait into a separate crate (#3035) преди 8 месеца
..
.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 a693ddffa3 Fix partially formatted if chains in attributes (#2999) преди 8 месеца
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 022e4ad203 Suspense boundaries/out of order streaming/anyhow like error handling (#2365) преди 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 0de3bf7aeb Fix nested rsx expansion by not using template titles (#2799) преди 10 месеца
lifecycle.rs cab573eefd Synchronous prevent default (#2792) преди 10 месеца
many_roots.rs 2f30c73678 Fix side-by-side fragments by walking in reverse (#2841) преди 10 месеца
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 519ec9d294 Move the document trait into a separate crate (#3035) преди 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