dioxus/packages/core/src/mutations.rs

165 lines
4.3 KiB
Rust
Raw Normal View History

2021-08-23 14:43:49 +00:00
//! Instructions returned by the VirtualDOM on how to modify the Real DOM.
//!
2021-08-22 21:08:25 +00:00
use crate::innerlude::*;
2021-08-23 14:43:49 +00:00
use std::any::Any;
2021-08-22 21:08:25 +00:00
#[derive(Debug)]
2021-08-23 14:43:49 +00:00
pub struct Mutations<'a> {
pub edits: Vec<DomEdit<'a>>,
pub noderefs: Vec<NodeRefMutation<'a>>,
2021-08-22 21:08:25 +00:00
}
2021-08-23 14:43:49 +00:00
2021-08-22 21:08:25 +00:00
use DomEdit::*;
2021-08-23 14:43:49 +00:00
impl<'a> Mutations<'a> {
2021-08-22 21:08:25 +00:00
pub fn new() -> Self {
let edits = Vec::new();
let noderefs = Vec::new();
Self { edits, noderefs }
}
pub fn extend(&mut self, other: &mut Mutations) {}
// Navigation
pub(crate) fn push_root(&mut self, root: ElementId) {
let id = root.as_u64();
self.edits.push(PushRoot { id });
}
2021-08-23 14:43:49 +00:00
2021-08-22 21:08:25 +00:00
pub(crate) fn pop(&mut self) {
self.edits.push(PopRoot {});
}
2021-08-23 14:43:49 +00:00
pub(crate) fn replace_with(&mut self, m: u32) {
self.edits.push(ReplaceWith { m });
2021-08-22 21:08:25 +00:00
}
2021-08-23 14:43:49 +00:00
2021-08-22 21:08:25 +00:00
pub(crate) fn insert_after(&mut self, n: u32) {
self.edits.push(InsertAfter { n });
}
2021-08-23 14:43:49 +00:00
2021-08-22 21:08:25 +00:00
pub(crate) fn insert_before(&mut self, n: u32) {
self.edits.push(InsertBefore { n });
}
2021-08-23 14:43:49 +00:00
2021-08-22 21:08:25 +00:00
// Remove Nodesfrom the dom
2021-08-23 14:43:49 +00:00
pub(crate) fn remove(&mut self, id: u64) {
self.edits.push(Remove { root: id });
2021-08-22 21:08:25 +00:00
}
2021-08-23 14:43:49 +00:00
2021-08-22 21:08:25 +00:00
// Create
2021-08-23 14:43:49 +00:00
pub(crate) fn create_text_node(&mut self, text: &'a str, id: ElementId) {
2021-08-22 21:08:25 +00:00
let id = id.as_u64();
self.edits.push(CreateTextNode { text, id });
}
2021-08-23 14:43:49 +00:00
2021-08-22 21:08:25 +00:00
pub(crate) fn create_element(
&mut self,
tag: &'static str,
ns: Option<&'static str>,
id: ElementId,
) {
let id = id.as_u64();
match ns {
Some(ns) => self.edits.push(CreateElementNs { id, ns, tag }),
None => self.edits.push(CreateElement { id, tag }),
}
}
// placeholders are nodes that don't get rendered but still exist as an "anchor" in the real dom
pub(crate) fn create_placeholder(&mut self, id: ElementId) {
let id = id.as_u64();
self.edits.push(CreatePlaceholder { id });
}
2021-08-23 14:43:49 +00:00
2021-08-22 21:08:25 +00:00
// events
pub(crate) fn new_event_listener(&mut self, listener: &Listener, scope: ScopeId) {
let Listener {
event,
mounted_node,
..
} = listener;
let element_id = mounted_node.get().unwrap().as_u64();
self.edits.push(NewEventListener {
scope,
event_name: event,
mounted_node_id: element_id,
});
}
pub(crate) fn remove_event_listener(&mut self, event: &'static str) {
self.edits.push(RemoveEventListener { event });
}
2021-08-23 14:43:49 +00:00
2021-08-22 21:08:25 +00:00
// modify
2021-08-23 14:43:49 +00:00
pub(crate) fn set_text(&mut self, text: &'a str) {
2021-08-22 21:08:25 +00:00
self.edits.push(SetText { text });
}
2021-08-23 14:43:49 +00:00
pub(crate) fn set_attribute(&mut self, attribute: &'a Attribute) {
2021-08-22 21:08:25 +00:00
let Attribute {
name,
value,
is_static,
is_volatile,
namespace,
} = attribute;
self.edits.push(SetAttribute {
field: name,
value,
ns: *namespace,
});
}
2021-08-23 14:43:49 +00:00
pub(crate) fn set_attribute_ns(&mut self, attribute: &'a Attribute, namespace: &'a str) {
2021-08-22 21:08:25 +00:00
let Attribute {
name,
value,
is_static,
is_volatile,
..
} = attribute;
self.edits.push(SetAttribute {
field: name,
value,
ns: Some(namespace),
});
}
2021-08-23 14:43:49 +00:00
2021-08-22 21:08:25 +00:00
pub(crate) fn remove_attribute(&mut self, attribute: &Attribute) {
let name = attribute.name;
self.edits.push(RemoveAttribute { name });
}
}
// refs are only assigned once
pub struct NodeRefMutation<'a> {
element: &'a mut Option<once_cell::sync::OnceCell<Box<dyn Any>>>,
element_id: ElementId,
}
impl<'a> std::fmt::Debug for NodeRefMutation<'a> {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
f.debug_struct("NodeRefMutation")
.field("element_id", &self.element_id)
.finish()
}
}
impl<'a> NodeRefMutation<'a> {
pub fn downcast_ref<T: 'static>(&self) -> Option<&T> {
self.element
.as_ref()
.and_then(|f| f.get())
.and_then(|f| f.downcast_ref::<T>())
}
pub fn downcast_mut<T: 'static>(&mut self) -> Option<&mut T> {
self.element
.as_mut()
.and_then(|f| f.get_mut())
.and_then(|f| f.downcast_mut::<T>())
}
}