Struct sauron::DomUpdater[][src]

pub struct DomUpdater<MSG> {
    pub current_vdom: Node<&'static str, &'static str, &'static str, AttributeValue, Callback<Event, MSG>>,
    pub root_node: Node,
    pub active_closures: HashMap<u32, 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, &'static str, AttributeValue, Callback<Event, MSG>>

the current vdom representation

root_node: Node

the equivalent actual DOM element where the App is mounted into

active_closures: HashMap<u32, 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.

Apply patches to the dom updater Warning: only used this for debuggin purposes

map this DomUpdater such that the Node will become Node

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

Performs the conversion.

Performs the conversion.

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.