logo
pub struct DomUpdater<MSG> {
    pub current_vdom: Node<&'static str, &'static str, Leaf, &'static str, AttributeValue<MSG>>,
    pub root_node: Node,
    pub active_closures: HashMap<usize, Vec<(&'static str, Closure<dyn FnMut(Event) + 'static>), Global>, RandomState>,
    pub focused_node: Option<Node>,
}
Expand description

Used for keeping a real DOM node up to date based on the current Node and a new incoming Node that represents our latest DOM state.

Fields

current_vdom: Node<&'static str, &'static str, Leaf, &'static str, AttributeValue<MSG>>

the current vdom representation

root_node: Node

the equivalent actual DOM element where the App is mounted into

active_closures: HashMap<usize, Vec<(&'static str, Closure<dyn FnMut(Event) + 'static>), Global>, RandomState>

The closures that are currently attached to elements in the page.

We keep these around so that they don’t get dropped (and thus stop working);

focused_node: Option<Node>

after mounting or update dispatch call, the element will be focused

Implementations

Creates and instance of this DOM updater, but doesn’t mount the current_vdom to the DOM just yet.

count the total active closures regardless of which element it attached to.

Mount the current_vdom appending to the actual browser DOM specified in the root_node This also gets the closures that was created when mounting the vdom to their actual DOM counterparts.

Mount the current_vdom replacing the actual browser DOM specified in the root_node This also gets the closures that was created when mounting the vdom to their actual DOM counterparts.

Create a new DomUpdater.

A root Node will be created and appended (as a child) to your passed in mount element.

Create a new DomUpdater.

A root Node will be created and it will replace your passed in mount element.

Diff the current virtual dom with the new virtual dom that is being passed in.

Then use that diff to patch the real DOM in the user’s browser so that they are seeing the latest state of the application.

Return the total number of patches applied

Apply patches blindly to the root_node in this DomUpdater.

Warning: only used this for debugging purposes

Return the root node of your application, the highest ancestor of all other nodes in your real DOM tree.

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more

Immutably borrows from an owned value. Read more

Mutably borrows from an owned value. Read more

Returns the argument unchanged.

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

The type returned in the event of a conversion error.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.