2022-11-09 03:39:37 +00:00
|
|
|
use crate::{nodes::VNode, virtual_dom::VirtualDom};
|
2022-11-02 01:42:29 +00:00
|
|
|
|
2022-11-16 00:05:22 +00:00
|
|
|
#[cfg_attr(feature = "serialize", derive(serde::Serialize, serde::Deserialize))]
|
2022-10-28 04:58:47 +00:00
|
|
|
#[derive(Clone, Copy, Debug, PartialEq, Eq, PartialOrd, Ord, Hash, Default)]
|
|
|
|
pub struct ElementId(pub usize);
|
|
|
|
|
2022-11-18 04:00:39 +00:00
|
|
|
pub struct ElementRef {
|
|
|
|
// the pathway of the real element inside the template
|
|
|
|
pub path: &'static [u8],
|
|
|
|
|
|
|
|
// The actual template
|
2022-11-02 01:42:29 +00:00
|
|
|
pub template: *mut VNode<'static>,
|
|
|
|
}
|
2022-10-28 04:58:47 +00:00
|
|
|
|
2022-11-18 04:00:39 +00:00
|
|
|
impl ElementRef {
|
2022-11-12 02:29:27 +00:00
|
|
|
pub fn null() -> Self {
|
|
|
|
Self {
|
|
|
|
template: std::ptr::null_mut(),
|
2022-11-18 04:00:39 +00:00
|
|
|
path: &[],
|
2022-11-12 02:29:27 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-11-02 01:42:29 +00:00
|
|
|
impl VirtualDom {
|
2022-11-18 04:00:39 +00:00
|
|
|
pub fn next_element(&mut self, template: &VNode, path: &'static [u8]) -> ElementId {
|
2022-11-02 01:42:29 +00:00
|
|
|
let entry = self.elements.vacant_entry();
|
|
|
|
let id = entry.key();
|
2022-10-28 04:58:47 +00:00
|
|
|
|
2022-11-18 04:00:39 +00:00
|
|
|
entry.insert(ElementRef {
|
2022-11-02 01:42:29 +00:00
|
|
|
template: template as *const _ as *mut _,
|
2022-11-18 04:00:39 +00:00
|
|
|
path,
|
2022-11-02 01:42:29 +00:00
|
|
|
});
|
2022-10-28 04:58:47 +00:00
|
|
|
|
2022-11-02 01:42:29 +00:00
|
|
|
ElementId(id)
|
2022-10-28 04:58:47 +00:00
|
|
|
}
|
|
|
|
|
2022-11-02 01:42:29 +00:00
|
|
|
pub fn cleanup_element(&mut self, id: ElementId) {
|
|
|
|
self.elements.remove(id.0);
|
2022-10-28 04:58:47 +00:00
|
|
|
}
|
|
|
|
}
|
2022-11-18 04:00:39 +00:00
|
|
|
|
|
|
|
/*
|
|
|
|
now......
|
|
|
|
|
|
|
|
an ID is mostly a pointer to a node in the real dom.
|
|
|
|
We need to
|
|
|
|
*/
|