Jonathan Kelley 9971ff215d polish: change in cx to cx 3 年 前
..
README.md da8159190b polish: tests and documentation 3 年 前
create_dom.rs 8b3ac0b57c perf: remove global allocation for props 3 年 前
diffing.rs da8159190b polish: tests and documentation 3 年 前
display_vdom.rs 8b3ac0b57c perf: remove global allocation for props 3 年 前
eventsystem.rs a652090dc5 wip: add test_dom 3 年 前
hooks.rs 8b3ac0b57c perf: remove global allocation for props 3 年 前
lifecycle.rs 5a09ec1610 wip: more clean up 3 年 前
scheduler.rs 8b3ac0b57c perf: remove global allocation for props 3 年 前
set_state_batch.rs c321532a6c feat: some docs, cleaning 3 年 前
sharedstate.rs 9971ff215d polish: change in cx to cx 3 年 前
test_logging.rs c321532a6c feat: some docs, cleaning 3 年 前
vdom_rebuild.rs f457b71131 feat: rebuild doesn't return errors 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