2021-09-10 00:58:48 +00:00
|
|
|
# Testing of Dioxus core
|
|
|
|
|
|
|
|
|
|
|
|
Diffing
|
|
|
|
- [x] create elements
|
|
|
|
- [x] create text
|
|
|
|
- [x] create fragments
|
|
|
|
- [x] create empty fragments (placeholders)
|
|
|
|
- [x] diff elements
|
|
|
|
- [x] diff from element/text to fragment
|
|
|
|
- [x] diff from element/text to empty fragment
|
|
|
|
- [x] diff to element with children works too
|
|
|
|
- [x] replace with works forward
|
|
|
|
- [x] replace with works backward
|
|
|
|
- [x] un-keyed diffing
|
|
|
|
- [x] keyed diffing
|
|
|
|
- [x] keyed diffing out of order
|
|
|
|
- [x] keyed diffing with prefix/suffix
|
2022-12-01 04:54:30 +00:00
|
|
|
- [x] suspended nodes work
|
2021-09-10 00:58:48 +00:00
|
|
|
|
|
|
|
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
|
|
|
|
|
|
|
|
|
2022-12-01 04:54:30 +00:00
|
|
|
Hooks
|
2021-09-10 00:58:48 +00:00
|
|
|
- [] 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
|
2024-01-11 01:21:15 +00:00
|
|
|
- [] rebuild_to_vec
|
2021-09-10 00:58:48 +00:00
|
|
|
- [] change props
|