Demonthos 047ed1e553 Subtree memorization / reactive templates (#488) 2 سال پیش
..
.rustfmt.toml d9546d9504 Renderers are now packages, not features. (#387) 3 سال پیش
README.md d9546d9504 Renderers are now packages, not features. (#387) 3 سال پیش
borrowedstate.rs 67dc6e6017 feat: implement type magic to allow strings, format args, and other types directly in rsx (#550) 2 سال پیش
create_dom.rs 047ed1e553 Subtree memorization / reactive templates (#488) 2 سال پیش
diffing.rs 047ed1e553 Subtree memorization / reactive templates (#488) 2 سال پیش
earlyabort.rs 047ed1e553 Subtree memorization / reactive templates (#488) 2 سال پیش
lifecycle.rs 047ed1e553 Subtree memorization / reactive templates (#488) 2 سال پیش
miri_stress.rs 28fba42e7e feat: add an unhygenic render macro (#556) 2 سال پیش
passthru.rs 28fba42e7e feat: add an unhygenic render macro (#556) 2 سال پیش
scheduler.rs d9546d9504 Renderers are now packages, not features. (#387) 3 سال پیش
sharedstate.rs 047ed1e553 Subtree memorization / reactive templates (#488) 2 سال پیش
task.rs d9546d9504 Renderers are now packages, not features. (#387) 3 سال پیش
vdom_rebuild.rs 047ed1e553 Subtree memorization / reactive templates (#488) 2 سال پیش

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