1
0
Jonathan Kelley a2c7d17b05 feat: mvoe away from compound context 3 жил өмнө
..
README.md da8159190b polish: tests and documentation 3 жил өмнө
borrowedstate.rs bfdcb20437 feat: transition to cx, props 3 жил өмнө
create_dom.rs bfdcb20437 feat: transition to cx, props 3 жил өмнө
diffing.rs da8159190b polish: tests and documentation 3 жил өмнө
display_vdom.rs bfdcb20437 feat: transition to cx, props 3 жил өмнө
eventsystem.rs bfdcb20437 feat: transition to cx, props 3 жил өмнө
hooks.rs a2c7d17b05 feat: mvoe away from compound context 3 жил өмнө
lifecycle.rs bfdcb20437 feat: transition to cx, props 3 жил өмнө
scheduler.rs 8b3ac0b57c perf: remove global allocation for props 3 жил өмнө
set_state_batch.rs c321532a6c feat: some docs, cleaning 3 жил өмнө
sharedstate.rs bfdcb20437 feat: transition to cx, props 3 жил өмнө
test_logging.rs c321532a6c feat: some docs, cleaning 3 жил өмнө
vdom_rebuild.rs bfdcb20437 feat: transition to cx, props 3 жил өмнө

README.md

Testing of Dioxus core

NodeFactory

  • [] rsx, html, NodeFactory generate the same structures

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