2021-07-15 08:09:28 +00:00
|
|
|
use crate::innerlude::*;
|
2021-11-03 23:55:02 +00:00
|
|
|
|
2021-11-05 21:15:59 +00:00
|
|
|
use futures_channel::mpsc::UnboundedSender;
|
2021-09-13 22:59:07 +00:00
|
|
|
use fxhash::FxHashMap;
|
2021-07-09 05:42:26 +00:00
|
|
|
use std::{
|
|
|
|
any::{Any, TypeId},
|
2021-10-08 20:01:13 +00:00
|
|
|
cell::{Cell, RefCell},
|
2021-09-01 04:57:04 +00:00
|
|
|
collections::HashMap,
|
2021-07-09 05:42:26 +00:00
|
|
|
future::Future,
|
2021-07-11 18:49:52 +00:00
|
|
|
rc::Rc,
|
2021-07-09 05:42:26 +00:00
|
|
|
};
|
|
|
|
|
2021-11-03 23:55:02 +00:00
|
|
|
use bumpalo::{boxed::Box as BumpBox, Bump};
|
|
|
|
|
|
|
|
/// Components in Dioxus use the "Context" object to interact with their lifecycle.
|
|
|
|
///
|
|
|
|
/// This lets components access props, schedule updates, integrate hooks, and expose shared state.
|
|
|
|
///
|
|
|
|
/// For the most part, the only method you should be using regularly is `render`.
|
|
|
|
///
|
|
|
|
/// ## Example
|
|
|
|
///
|
|
|
|
/// ```ignore
|
2021-11-05 20:28:08 +00:00
|
|
|
/// #[derive(Props)]
|
|
|
|
/// struct ExampleProps {
|
2021-11-03 23:55:02 +00:00
|
|
|
/// name: String
|
|
|
|
/// }
|
|
|
|
///
|
2021-11-09 17:10:11 +00:00
|
|
|
/// fn Example(cx: Context, props: &ExampleProps) -> Element {
|
2021-11-05 20:28:08 +00:00
|
|
|
/// cx.render(rsx!{ div {"Hello, {props.name}"} })
|
2021-11-03 23:55:02 +00:00
|
|
|
/// }
|
|
|
|
/// ```
|
2021-11-08 01:59:09 +00:00
|
|
|
pub type Context<'a> = &'a Scope;
|
2021-11-03 23:55:02 +00:00
|
|
|
|
2021-07-09 05:42:26 +00:00
|
|
|
/// Every component in Dioxus is represented by a `Scope`.
|
|
|
|
///
|
|
|
|
/// Scopes contain the state for hooks, the component's props, and other lifecycle information.
|
|
|
|
///
|
|
|
|
/// Scopes are allocated in a generational arena. As components are mounted/unmounted, they will replace slots of dead components.
|
|
|
|
/// The actual contents of the hooks, though, will be allocated with the standard allocator. These should not allocate as frequently.
|
2021-07-15 08:09:28 +00:00
|
|
|
///
|
|
|
|
/// We expose the `Scope` type so downstream users can traverse the Dioxus VirtualDOM for whatever
|
2021-10-24 17:30:36 +00:00
|
|
|
/// use case they might have.
|
2021-11-08 01:59:09 +00:00
|
|
|
pub struct Scope {
|
2021-11-07 00:59:46 +00:00
|
|
|
// safety:
|
|
|
|
//
|
|
|
|
// pointers to scopes are *always* valid since they are bump allocated and never freed until this scope is also freed
|
2021-11-07 06:01:22 +00:00
|
|
|
// this is just a bit of a hack to not need an Rc to the ScopeArena.
|
|
|
|
// todo: replace this will ScopeId and provide a connection to scope arena directly
|
2021-11-08 01:59:09 +00:00
|
|
|
pub(crate) parent_scope: Option<*mut Scope>,
|
2021-11-07 00:59:46 +00:00
|
|
|
|
2021-07-15 07:38:09 +00:00
|
|
|
pub(crate) our_arena_idx: ScopeId,
|
2021-11-07 00:59:46 +00:00
|
|
|
|
2021-07-15 07:38:09 +00:00
|
|
|
pub(crate) height: u32,
|
2021-11-05 21:15:59 +00:00
|
|
|
|
2021-10-08 20:01:13 +00:00
|
|
|
pub(crate) subtree: Cell<u32>,
|
2021-11-07 00:59:46 +00:00
|
|
|
|
2021-10-08 20:01:13 +00:00
|
|
|
pub(crate) is_subtree_root: Cell<bool>,
|
2021-07-09 05:42:26 +00:00
|
|
|
|
2021-11-08 03:36:57 +00:00
|
|
|
pub(crate) generation: Cell<u32>,
|
|
|
|
|
2021-11-07 06:01:22 +00:00
|
|
|
// The double-buffering situation that we will use
|
2021-11-08 03:36:57 +00:00
|
|
|
pub(crate) frames: [BumpFrame; 2],
|
2021-11-05 20:28:08 +00:00
|
|
|
|
2021-11-07 06:01:22 +00:00
|
|
|
pub(crate) old_root: RefCell<Option<NodeLink>>,
|
|
|
|
pub(crate) new_root: RefCell<Option<NodeLink>>,
|
|
|
|
|
2021-11-09 07:11:44 +00:00
|
|
|
pub(crate) caller: *const dyn Fn(&Scope) -> Element,
|
2021-11-08 03:36:57 +00:00
|
|
|
|
2021-09-13 22:55:43 +00:00
|
|
|
/*
|
|
|
|
we care about:
|
|
|
|
- listeners (and how to call them when an event is triggered)
|
|
|
|
- borrowed props (and how to drop them when the parent is dropped)
|
|
|
|
- suspended nodes (and how to call their callback when their associated tasks are complete)
|
|
|
|
*/
|
2021-11-05 20:28:08 +00:00
|
|
|
pub(crate) items: RefCell<SelfReferentialItems<'static>>,
|
2021-11-03 23:55:02 +00:00
|
|
|
|
2021-07-15 07:38:09 +00:00
|
|
|
// State
|
|
|
|
pub(crate) hooks: HookList,
|
2021-10-25 19:05:17 +00:00
|
|
|
|
|
|
|
// todo: move this into a centralized place - is more memory efficient
|
2021-07-15 07:38:09 +00:00
|
|
|
pub(crate) shared_contexts: RefCell<HashMap<TypeId, Rc<dyn Any>>>,
|
2021-07-09 05:42:26 +00:00
|
|
|
|
2021-11-05 21:15:59 +00:00
|
|
|
pub(crate) sender: UnboundedSender<SchedulerMsg>,
|
2021-07-09 05:42:26 +00:00
|
|
|
}
|
|
|
|
|
2021-11-05 20:28:08 +00:00
|
|
|
pub struct SelfReferentialItems<'a> {
|
2021-11-07 06:01:22 +00:00
|
|
|
pub(crate) listeners: Vec<&'a Listener<'a>>,
|
|
|
|
pub(crate) borrowed_props: Vec<&'a VComponent<'a>>,
|
|
|
|
pub(crate) suspended_nodes: FxHashMap<u64, &'a VSuspended<'a>>,
|
2021-11-05 20:28:08 +00:00
|
|
|
pub(crate) tasks: Vec<BumpBox<'a, dyn Future<Output = ()>>>,
|
|
|
|
pub(crate) pending_effects: Vec<BumpBox<'a, dyn FnMut()>>,
|
2021-09-13 22:55:43 +00:00
|
|
|
}
|
|
|
|
|
2021-11-09 07:16:25 +00:00
|
|
|
/// A component's unique identifier.
|
|
|
|
///
|
|
|
|
/// `ScopeId` is a `usize` that is unique across the entire VirtualDOM - but not unique across time. If a component is
|
|
|
|
/// unmounted, then the `ScopeId` will be reused for a new component.
|
|
|
|
#[cfg_attr(feature = "serialize", derive(serde::Serialize, serde::Deserialize))]
|
|
|
|
#[derive(Copy, Clone, PartialEq, Eq, Hash, Debug)]
|
|
|
|
pub struct ScopeId(pub usize);
|
|
|
|
|
2021-11-07 06:01:22 +00:00
|
|
|
// Public methods exposed to libraries and components
|
2021-11-08 01:59:09 +00:00
|
|
|
impl Scope {
|
2021-11-05 20:28:08 +00:00
|
|
|
/// Get the subtree ID that this scope belongs to.
|
|
|
|
///
|
|
|
|
/// Each component has its own subtree ID - the root subtree has an ID of 0. This ID is used by the renderer to route
|
|
|
|
/// the mutations to the correct window/portal/subtree.
|
|
|
|
///
|
|
|
|
///
|
|
|
|
/// # Example
|
|
|
|
///
|
|
|
|
/// ```rust
|
2021-11-09 17:10:11 +00:00
|
|
|
/// let mut dom = VirtualDom::new(|cx, props|cx.render(rsx!{ div {} }));
|
2021-11-05 20:28:08 +00:00
|
|
|
/// dom.rebuild();
|
|
|
|
///
|
|
|
|
/// let base = dom.base_scope();
|
|
|
|
///
|
|
|
|
/// assert_eq!(base.subtree(), 0);
|
|
|
|
/// ```
|
|
|
|
pub fn subtree(&self) -> u32 {
|
|
|
|
self.subtree.get()
|
|
|
|
}
|
|
|
|
|
|
|
|
/// Get the height of this Scope - IE the number of scopes above it.
|
|
|
|
///
|
|
|
|
/// A Scope with a height of `0` is the root scope - there are no other scopes above it.
|
|
|
|
///
|
|
|
|
/// # Example
|
|
|
|
///
|
|
|
|
/// ```rust
|
2021-11-09 17:10:11 +00:00
|
|
|
/// let mut dom = VirtualDom::new(|cx, props|cx.render(rsx!{ div {} }));
|
2021-11-05 20:28:08 +00:00
|
|
|
/// dom.rebuild();
|
|
|
|
///
|
|
|
|
/// let base = dom.base_scope();
|
|
|
|
///
|
|
|
|
/// assert_eq!(base.height(), 0);
|
|
|
|
/// ```
|
|
|
|
pub fn height(&self) -> u32 {
|
|
|
|
self.height
|
|
|
|
}
|
|
|
|
|
|
|
|
/// Get the Parent of this Scope within this Dioxus VirtualDOM.
|
|
|
|
///
|
|
|
|
/// This ID is not unique across Dioxus VirtualDOMs or across time. IDs will be reused when components are unmounted.
|
|
|
|
///
|
|
|
|
/// The base component will not have a parent, and will return `None`.
|
|
|
|
///
|
|
|
|
/// # Example
|
|
|
|
///
|
|
|
|
/// ```rust
|
2021-11-09 17:10:11 +00:00
|
|
|
/// let mut dom = VirtualDom::new(|cx, props|cx.render(rsx!{ div {} }));
|
2021-11-05 20:28:08 +00:00
|
|
|
/// dom.rebuild();
|
|
|
|
///
|
|
|
|
/// let base = dom.base_scope();
|
|
|
|
///
|
|
|
|
/// assert_eq!(base.parent(), None);
|
|
|
|
/// ```
|
|
|
|
pub fn parent(&self) -> Option<ScopeId> {
|
2021-11-05 21:15:59 +00:00
|
|
|
match self.parent_scope {
|
|
|
|
Some(p) => Some(unsafe { &*p }.our_arena_idx),
|
|
|
|
None => None,
|
|
|
|
}
|
2021-11-05 20:28:08 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/// Get the ID of this Scope within this Dioxus VirtualDOM.
|
|
|
|
///
|
|
|
|
/// This ID is not unique across Dioxus VirtualDOMs or across time. IDs will be reused when components are unmounted.
|
|
|
|
///
|
|
|
|
/// # Example
|
|
|
|
///
|
|
|
|
/// ```rust
|
2021-11-09 17:10:11 +00:00
|
|
|
/// let mut dom = VirtualDom::new(|cx, props|cx.render(rsx!{ div {} }));
|
2021-11-05 20:28:08 +00:00
|
|
|
/// dom.rebuild();
|
|
|
|
/// let base = dom.base_scope();
|
|
|
|
///
|
|
|
|
/// assert_eq!(base.scope_id(), 0);
|
|
|
|
/// ```
|
|
|
|
pub fn scope_id(&self) -> ScopeId {
|
|
|
|
self.our_arena_idx
|
|
|
|
}
|
|
|
|
|
2021-11-03 23:55:02 +00:00
|
|
|
/// Create a subscription that schedules a future render for the reference component
|
|
|
|
///
|
|
|
|
/// ## Notice: you should prefer using prepare_update and get_scope_id
|
|
|
|
pub fn schedule_update(&self) -> Rc<dyn Fn() + 'static> {
|
2021-11-05 20:28:08 +00:00
|
|
|
// pub fn schedule_update(&self) -> Rc<dyn Fn() + 'static> {
|
2021-11-05 21:15:59 +00:00
|
|
|
let chan = self.sender.clone();
|
2021-11-05 20:28:08 +00:00
|
|
|
let id = self.scope_id();
|
|
|
|
Rc::new(move || {
|
2021-11-07 06:01:22 +00:00
|
|
|
let _ = chan.unbounded_send(SchedulerMsg::Immediate(id));
|
2021-11-05 20:28:08 +00:00
|
|
|
})
|
|
|
|
}
|
|
|
|
|
|
|
|
/// Schedule an update for any component given its ScopeId.
|
|
|
|
///
|
|
|
|
/// A component's ScopeId can be obtained from `use_hook` or the [`Context::scope_id`] method.
|
|
|
|
///
|
|
|
|
/// This method should be used when you want to schedule an update for a component
|
|
|
|
pub fn schedule_update_any(&self) -> Rc<dyn Fn(ScopeId)> {
|
2021-11-05 21:15:59 +00:00
|
|
|
let chan = self.sender.clone();
|
2021-11-05 20:28:08 +00:00
|
|
|
Rc::new(move |id| {
|
2021-11-07 06:01:22 +00:00
|
|
|
let _ = chan.unbounded_send(SchedulerMsg::Immediate(id));
|
2021-11-05 20:28:08 +00:00
|
|
|
})
|
2021-11-03 23:55:02 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/// Get the [`ScopeId`] of a mounted component.
|
|
|
|
///
|
|
|
|
/// `ScopeId` is not unique for the lifetime of the VirtualDom - a ScopeId will be reused if a component is unmounted.
|
|
|
|
pub fn needs_update(&self) {
|
2021-11-05 20:28:08 +00:00
|
|
|
self.needs_update_any(self.scope_id())
|
2021-11-03 23:55:02 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/// Get the [`ScopeId`] of a mounted component.
|
|
|
|
///
|
|
|
|
/// `ScopeId` is not unique for the lifetime of the VirtualDom - a ScopeId will be reused if a component is unmounted.
|
|
|
|
pub fn needs_update_any(&self, id: ScopeId) {
|
2021-11-07 06:01:22 +00:00
|
|
|
let _ = self.sender.unbounded_send(SchedulerMsg::Immediate(id));
|
2021-11-03 23:55:02 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/// Get the [`ScopeId`] of a mounted component.
|
|
|
|
///
|
|
|
|
/// `ScopeId` is not unique for the lifetime of the VirtualDom - a ScopeId will be reused if a component is unmounted.
|
|
|
|
pub fn bump(&self) -> &Bump {
|
2021-11-08 03:36:57 +00:00
|
|
|
&self.wip_frame().bump
|
2021-11-03 23:55:02 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/// Take a lazy VNode structure and actually build it with the context of the VDom's efficient VNode allocator.
|
|
|
|
///
|
|
|
|
/// This function consumes the context and absorb the lifetime, so these VNodes *must* be returned.
|
|
|
|
///
|
|
|
|
/// ## Example
|
|
|
|
///
|
|
|
|
/// ```ignore
|
2021-11-07 06:01:22 +00:00
|
|
|
/// fn Component(cx: Scope, props: &Props) -> Element {
|
2021-11-03 23:55:02 +00:00
|
|
|
/// // Lazy assemble the VNode tree
|
2021-11-07 06:01:22 +00:00
|
|
|
/// let lazy_nodes = rsx!("hello world");
|
2021-11-03 23:55:02 +00:00
|
|
|
///
|
|
|
|
/// // Actually build the tree and allocate it
|
|
|
|
/// cx.render(lazy_tree)
|
|
|
|
/// }
|
|
|
|
///```
|
2021-11-07 03:11:17 +00:00
|
|
|
pub fn render<'src>(&'src self, lazy_nodes: Option<LazyNodes<'src, '_>>) -> Option<NodeLink> {
|
2021-11-08 03:36:57 +00:00
|
|
|
let bump = &self.wip_frame().bump;
|
2021-11-07 06:01:22 +00:00
|
|
|
let factory = NodeFactory { bump };
|
|
|
|
let node = lazy_nodes.map(|f| f.call(factory))?;
|
|
|
|
|
2021-11-08 03:36:57 +00:00
|
|
|
let idx = self
|
|
|
|
.wip_frame()
|
|
|
|
.add_node(unsafe { std::mem::transmute(node) });
|
2021-11-07 06:01:22 +00:00
|
|
|
|
|
|
|
Some(NodeLink {
|
2021-11-08 03:36:57 +00:00
|
|
|
gen_id: self.generation.get(),
|
2021-11-07 06:01:22 +00:00
|
|
|
scope_id: self.our_arena_idx,
|
2021-11-08 03:36:57 +00:00
|
|
|
link_idx: idx,
|
2021-11-07 06:01:22 +00:00
|
|
|
})
|
2021-11-03 23:55:02 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/// Push an effect to be ran after the component has been successfully mounted to the dom
|
|
|
|
/// Returns the effect's position in the stack
|
|
|
|
pub fn push_effect<'src>(&'src self, effect: impl FnOnce() + 'src) -> usize {
|
|
|
|
// this is some tricker to get around not being able to actually call fnonces
|
|
|
|
let mut slot = Some(effect);
|
|
|
|
let fut: &mut dyn FnMut() = self.bump().alloc(move || slot.take().unwrap()());
|
|
|
|
|
|
|
|
// wrap it in a type that will actually drop the contents
|
|
|
|
let boxed_fut = unsafe { BumpBox::from_raw(fut) };
|
|
|
|
|
|
|
|
// erase the 'src lifetime for self-referential storage
|
|
|
|
let self_ref_fut = unsafe { std::mem::transmute(boxed_fut) };
|
|
|
|
|
2021-11-05 20:28:08 +00:00
|
|
|
let mut items = self.items.borrow_mut();
|
|
|
|
items.pending_effects.push(self_ref_fut);
|
|
|
|
items.pending_effects.len() - 1
|
2021-11-03 23:55:02 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/// Pushes the future onto the poll queue to be polled
|
|
|
|
/// The future is forcibly dropped if the component is not ready by the next render
|
|
|
|
pub fn push_task<'src>(&'src self, fut: impl Future<Output = ()> + 'src) -> usize {
|
|
|
|
// allocate the future
|
|
|
|
let fut: &mut dyn Future<Output = ()> = self.bump().alloc(fut);
|
|
|
|
|
|
|
|
// wrap it in a type that will actually drop the contents
|
|
|
|
let boxed_fut: BumpBox<dyn Future<Output = ()>> = unsafe { BumpBox::from_raw(fut) };
|
|
|
|
|
|
|
|
// erase the 'src lifetime for self-referential storage
|
|
|
|
let self_ref_fut = unsafe { std::mem::transmute(boxed_fut) };
|
|
|
|
|
2021-11-05 20:28:08 +00:00
|
|
|
let mut items = self.items.borrow_mut();
|
|
|
|
items.tasks.push(self_ref_fut);
|
|
|
|
items.tasks.len() - 1
|
2021-11-03 23:55:02 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/// This method enables the ability to expose state to children further down the VirtualDOM Tree.
|
|
|
|
///
|
|
|
|
/// This is a "fundamental" operation and should only be called during initialization of a hook.
|
|
|
|
///
|
|
|
|
/// For a hook that provides the same functionality, use `use_provide_state` and `use_consume_state` instead.
|
|
|
|
///
|
|
|
|
/// When the component is dropped, so is the context. Be aware of this behavior when consuming
|
|
|
|
/// the context via Rc/Weak.
|
|
|
|
///
|
|
|
|
/// # Example
|
|
|
|
///
|
|
|
|
/// ```
|
|
|
|
/// struct SharedState(&'static str);
|
|
|
|
///
|
2021-11-09 17:10:11 +00:00
|
|
|
/// static App: FC<()> = |cx, props|{
|
2021-11-03 23:55:02 +00:00
|
|
|
/// cx.use_hook(|_| cx.provide_state(SharedState("world")), |_| {}, |_| {});
|
|
|
|
/// rsx!(cx, Child {})
|
|
|
|
/// }
|
|
|
|
///
|
2021-11-09 17:10:11 +00:00
|
|
|
/// static Child: FC<()> = |cx, props|{
|
2021-11-03 23:55:02 +00:00
|
|
|
/// let state = cx.consume_state::<SharedState>();
|
|
|
|
/// rsx!(cx, div { "hello {state.0}" })
|
|
|
|
/// }
|
|
|
|
/// ```
|
2021-11-09 19:36:26 +00:00
|
|
|
pub fn provide_state<T: 'static>(&self, value: T) {
|
2021-11-03 23:55:02 +00:00
|
|
|
self.shared_contexts
|
|
|
|
.borrow_mut()
|
|
|
|
.insert(TypeId::of::<T>(), Rc::new(value))
|
|
|
|
.map(|f| f.downcast::<T>().ok())
|
|
|
|
.flatten();
|
|
|
|
}
|
|
|
|
|
|
|
|
/// Try to retrieve a SharedState with type T from the any parent Scope.
|
2021-11-05 21:15:59 +00:00
|
|
|
pub fn consume_state<T: 'static>(&self) -> Option<Rc<T>> {
|
|
|
|
if let Some(shared) = self.shared_contexts.borrow().get(&TypeId::of::<T>()) {
|
|
|
|
Some(shared.clone().downcast::<T>().unwrap())
|
|
|
|
} else {
|
|
|
|
let mut search_parent = self.parent_scope;
|
|
|
|
|
|
|
|
while let Some(parent_ptr) = search_parent {
|
|
|
|
let parent = unsafe { &*parent_ptr };
|
|
|
|
if let Some(shared) = parent.shared_contexts.borrow().get(&TypeId::of::<T>()) {
|
|
|
|
return Some(shared.clone().downcast::<T>().unwrap());
|
|
|
|
}
|
|
|
|
search_parent = parent.parent_scope;
|
|
|
|
}
|
|
|
|
None
|
|
|
|
}
|
2021-11-03 23:55:02 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/// Create a new subtree with this scope as the root of the subtree.
|
|
|
|
///
|
|
|
|
/// Each component has its own subtree ID - the root subtree has an ID of 0. This ID is used by the renderer to route
|
|
|
|
/// the mutations to the correct window/portal/subtree.
|
|
|
|
///
|
|
|
|
/// This method
|
|
|
|
///
|
|
|
|
/// # Example
|
|
|
|
///
|
|
|
|
/// ```rust
|
2021-11-09 19:36:26 +00:00
|
|
|
/// fn App(cx: Context, props: &()) -> Element {
|
2021-11-03 23:55:02 +00:00
|
|
|
/// todo!();
|
|
|
|
/// rsx!(cx, div { "Subtree {id}"})
|
|
|
|
/// };
|
|
|
|
/// ```
|
2021-11-05 21:15:59 +00:00
|
|
|
pub fn create_subtree(&self) -> Option<u32> {
|
2021-11-09 19:36:26 +00:00
|
|
|
if self.is_subtree_root.get() {
|
|
|
|
None
|
|
|
|
} else {
|
|
|
|
todo!()
|
|
|
|
// let cur = self.subtree().get();
|
|
|
|
// self.shared.cur_subtree.set(cur + 1);
|
|
|
|
// Some(cur)
|
|
|
|
}
|
2021-11-03 23:55:02 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/// Get the subtree ID that this scope belongs to.
|
|
|
|
///
|
|
|
|
/// Each component has its own subtree ID - the root subtree has an ID of 0. This ID is used by the renderer to route
|
|
|
|
/// the mutations to the correct window/portal/subtree.
|
|
|
|
///
|
|
|
|
/// # Example
|
|
|
|
///
|
|
|
|
/// ```rust
|
2021-11-09 19:36:26 +00:00
|
|
|
/// fn App(cx: Context, props: &()) -> Element {
|
2021-11-03 23:55:02 +00:00
|
|
|
/// let id = cx.get_current_subtree();
|
|
|
|
/// rsx!(cx, div { "Subtree {id}"})
|
|
|
|
/// };
|
|
|
|
/// ```
|
2021-11-05 21:15:59 +00:00
|
|
|
pub fn get_current_subtree(&self) -> u32 {
|
2021-11-03 23:55:02 +00:00
|
|
|
self.subtree()
|
|
|
|
}
|
|
|
|
|
|
|
|
/// Store a value between renders
|
|
|
|
///
|
|
|
|
/// This is *the* foundational hook for all other hooks.
|
|
|
|
///
|
|
|
|
/// - Initializer: closure used to create the initial hook state
|
|
|
|
/// - Runner: closure used to output a value every time the hook is used
|
|
|
|
///
|
2021-11-05 20:28:08 +00:00
|
|
|
/// To "cleanup" the hook, implement `Drop` on the stored hook value. Whenever the component is dropped, the hook
|
|
|
|
/// will be dropped as well.
|
2021-11-03 23:55:02 +00:00
|
|
|
///
|
|
|
|
/// # Example
|
|
|
|
///
|
|
|
|
/// ```ignore
|
|
|
|
/// // use_ref is the simplest way of storing a value between renders
|
|
|
|
/// fn use_ref<T: 'static>(initial_value: impl FnOnce() -> T) -> &RefCell<T> {
|
|
|
|
/// use_hook(
|
|
|
|
/// || Rc::new(RefCell::new(initial_value())),
|
|
|
|
/// |state| state,
|
|
|
|
/// )
|
|
|
|
/// }
|
|
|
|
/// ```
|
2021-11-05 20:28:08 +00:00
|
|
|
pub fn use_hook<'src, State: 'static, Output: 'src>(
|
2021-11-03 23:55:02 +00:00
|
|
|
&'src self,
|
2021-11-05 20:28:08 +00:00
|
|
|
initializer: impl FnOnce(usize) -> State,
|
|
|
|
runner: impl FnOnce(&'src mut State) -> Output,
|
|
|
|
) -> Output {
|
2021-11-03 23:55:02 +00:00
|
|
|
if self.hooks.at_end() {
|
2021-11-05 20:28:08 +00:00
|
|
|
self.hooks.push_hook(initializer(self.hooks.len()));
|
2021-11-03 23:55:02 +00:00
|
|
|
}
|
|
|
|
|
2021-11-08 03:36:57 +00:00
|
|
|
const HOOK_ERR_MSG: &str = r###"
|
2021-11-03 23:55:02 +00:00
|
|
|
Unable to retrieve the hook that was initialized at this index.
|
|
|
|
Consult the `rules of hooks` to understand how to use hooks properly.
|
|
|
|
|
|
|
|
You likely used the hook in a conditional. Hooks rely on consistent ordering between renders.
|
|
|
|
Functions prefixed with "use" should never be called conditionally.
|
|
|
|
"###;
|
2021-11-07 06:01:22 +00:00
|
|
|
|
2021-11-08 03:36:57 +00:00
|
|
|
runner(self.hooks.next::<State>().expect(HOOK_ERR_MSG))
|
2021-11-07 06:01:22 +00:00
|
|
|
}
|
2021-11-08 03:36:57 +00:00
|
|
|
}
|
2021-11-07 06:01:22 +00:00
|
|
|
|
2021-11-08 03:36:57 +00:00
|
|
|
// Important internal methods
|
|
|
|
impl Scope {
|
2021-11-07 06:01:22 +00:00
|
|
|
/// The "work in progress frame" represents the frame that is currently being worked on.
|
2021-11-08 03:36:57 +00:00
|
|
|
pub(crate) fn wip_frame(&self) -> &BumpFrame {
|
|
|
|
match self.generation.get() & 1 == 0 {
|
|
|
|
true => &self.frames[0],
|
|
|
|
false => &self.frames[1],
|
|
|
|
}
|
|
|
|
}
|
|
|
|
pub(crate) fn fin_frame(&self) -> &BumpFrame {
|
|
|
|
match self.generation.get() & 1 == 1 {
|
|
|
|
true => &self.frames[0],
|
|
|
|
false => &self.frames[1],
|
|
|
|
}
|
2021-11-07 06:01:22 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
pub unsafe fn reset_wip_frame(&self) {
|
|
|
|
// todo: unsafecell or something
|
|
|
|
let bump = self.wip_frame() as *const _ as *mut Bump;
|
|
|
|
let g = &mut *bump;
|
|
|
|
g.reset();
|
2021-11-08 03:36:57 +00:00
|
|
|
}
|
2021-11-07 06:01:22 +00:00
|
|
|
|
2021-11-08 03:36:57 +00:00
|
|
|
pub fn cycle_frame(&self) {
|
|
|
|
self.generation.set(self.generation.get() + 1);
|
2021-11-07 06:01:22 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/// A safe wrapper around calling listeners
|
|
|
|
pub(crate) fn call_listener(&self, event: UserEvent, element: ElementId) {
|
|
|
|
let listners = &mut self.items.borrow_mut().listeners;
|
|
|
|
|
|
|
|
let listener = listners.iter().find(|lis| {
|
|
|
|
let search = lis;
|
|
|
|
if search.event == event.name {
|
|
|
|
let search_id = search.mounted_node.get();
|
|
|
|
search_id.map(|f| f == element).unwrap_or(false)
|
|
|
|
} else {
|
|
|
|
false
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
|
|
|
if let Some(listener) = listener {
|
|
|
|
let mut cb = listener.callback.borrow_mut();
|
|
|
|
if let Some(cb) = cb.as_mut() {
|
|
|
|
(cb)(event.event);
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
log::warn!("An event was triggered but there was no listener to handle it");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// General strategy here is to load up the appropriate suspended task and then run it.
|
|
|
|
// Suspended nodes cannot be called repeatedly.
|
|
|
|
pub(crate) fn call_suspended_node<'a>(&'a mut self, task_id: u64) {
|
|
|
|
let mut nodes = &mut self.items.get_mut().suspended_nodes;
|
|
|
|
|
|
|
|
if let Some(suspended) = nodes.remove(&task_id) {
|
|
|
|
let sus: &'a VSuspended<'static> = unsafe { &*suspended };
|
|
|
|
let sus: &'a VSuspended<'a> = unsafe { std::mem::transmute(sus) };
|
|
|
|
let mut boxed = sus.callback.borrow_mut().take().unwrap();
|
|
|
|
let new_node: Element = boxed();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// run the list of effects
|
|
|
|
pub(crate) fn run_effects(&mut self) {
|
|
|
|
for mut effect in self.items.get_mut().pending_effects.drain(..) {
|
|
|
|
effect();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2021-11-08 03:36:57 +00:00
|
|
|
|
|
|
|
pub struct BumpFrame {
|
|
|
|
pub bump: Bump,
|
|
|
|
pub nodes: RefCell<Vec<VNode<'static>>>,
|
|
|
|
}
|
|
|
|
impl BumpFrame {
|
|
|
|
pub fn new() -> Self {
|
|
|
|
let bump = Bump::new();
|
|
|
|
|
|
|
|
let node = &*bump.alloc(VText {
|
|
|
|
text: "asd",
|
|
|
|
dom_id: Default::default(),
|
|
|
|
is_static: false,
|
|
|
|
});
|
|
|
|
let nodes = RefCell::new(vec![VNode::Text(unsafe { std::mem::transmute(node) })]);
|
|
|
|
Self { bump, nodes }
|
|
|
|
}
|
|
|
|
fn add_node(&self, node: VNode<'static>) -> usize {
|
|
|
|
let mut nodes = self.nodes.borrow_mut();
|
|
|
|
nodes.push(node);
|
|
|
|
nodes.len() - 1
|
|
|
|
}
|
|
|
|
}
|
2021-11-09 17:10:11 +00:00
|
|
|
|
2021-11-09 17:18:45 +00:00
|
|
|
/// An abstraction over internally stored data using a hook-based memory layout.
|
|
|
|
///
|
|
|
|
/// Hooks are allocated using Boxes and then our stored references are given out.
|
|
|
|
///
|
|
|
|
/// It's unsafe to "reset" the hooklist, but it is safe to add hooks into it.
|
|
|
|
///
|
|
|
|
/// Todo: this could use its very own bump arena, but that might be a tad overkill
|
|
|
|
#[derive(Default)]
|
|
|
|
pub(crate) struct HookList {
|
|
|
|
arena: Bump,
|
|
|
|
vals: RefCell<Vec<*mut dyn Any>>,
|
|
|
|
idx: Cell<usize>,
|
|
|
|
}
|
|
|
|
|
|
|
|
impl HookList {
|
|
|
|
pub(crate) fn next<T: 'static>(&self) -> Option<&mut T> {
|
|
|
|
self.vals.borrow().get(self.idx.get()).and_then(|inn| {
|
|
|
|
self.idx.set(self.idx.get() + 1);
|
|
|
|
let raw_box = unsafe { &mut **inn };
|
|
|
|
raw_box.downcast_mut::<T>()
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
|
|
|
/// This resets the internal iterator count
|
|
|
|
/// It's okay that we've given out each hook, but now we have the opportunity to give it out again
|
|
|
|
/// Therefore, resetting is considered unsafe
|
|
|
|
///
|
|
|
|
/// This should only be ran by Dioxus itself before "running scope".
|
|
|
|
/// Dioxus knows how to descend through the tree to prevent mutable aliasing.
|
|
|
|
pub(crate) unsafe fn reset(&self) {
|
|
|
|
self.idx.set(0);
|
|
|
|
}
|
|
|
|
|
|
|
|
pub(crate) fn push_hook<T: 'static>(&self, new: T) {
|
|
|
|
let val = self.arena.alloc(new);
|
|
|
|
self.vals.borrow_mut().push(val)
|
|
|
|
}
|
|
|
|
|
|
|
|
pub(crate) fn len(&self) -> usize {
|
|
|
|
self.vals.borrow().len()
|
|
|
|
}
|
|
|
|
|
|
|
|
pub(crate) fn cur_idx(&self) -> usize {
|
|
|
|
self.idx.get()
|
|
|
|
}
|
|
|
|
|
|
|
|
pub(crate) fn at_end(&self) -> bool {
|
|
|
|
self.cur_idx() >= self.len()
|
|
|
|
}
|
|
|
|
|
|
|
|
pub fn clear_hooks(&mut self) {
|
|
|
|
self.vals.borrow_mut().drain(..).for_each(|state| {
|
|
|
|
let as_mut = unsafe { &mut *state };
|
|
|
|
let boxed = unsafe { bumpalo::boxed::Box::from_raw(as_mut) };
|
|
|
|
drop(boxed);
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
/// Get the ammount of memory a hooklist uses
|
|
|
|
/// Used in heuristics
|
|
|
|
pub fn get_hook_arena_size(&self) -> usize {
|
|
|
|
self.arena.allocated_bytes()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-11-09 17:10:11 +00:00
|
|
|
#[test]
|
|
|
|
fn sizeof() {
|
|
|
|
dbg!(std::mem::size_of::<Scope>());
|
|
|
|
}
|