[][src]Enum virtual_dom_rs::Patch

pub enum Patch<'a> {
    AppendChildren(usizeVec<&'a VirtualNode>),
    TruncateChildren(usizeusize),
    Replace(usize, &'a VirtualNode),
    AddAttributes(usizeHashMap<&'a str, &'a str>),
    RemoveAttributes(usizeVec<&'a str>),
    ChangeText(usize, &'a VText),
}

A Patch encodes an operation that modifies a real DOM element.

To update the real DOM that a user sees you'll want to first diff your old virtual dom and new virtual dom.

This diff operation will generate Vec<Patch> with zero or more patches that, when applied to your real DOM, will make your real DOM look like your new virtual dom.

Each Patch has a u32 node index that helps us identify the real DOM node that it applies to.

Our old virtual dom's nodes are indexed depth first, as shown in this illustration (0 being the root node, 1 being it's first child, 2 being it's first child's first child).

This example is not tested
            .─.
           ( 0 )
            `┬'
        ┌────┴──────┐
        │           │
        ▼           ▼
       .─.         .─.
      ( 1 )       ( 4 )
       `┬'         `─'
   ┌────┴───┐       │
   │        │       ├─────┬─────┐
   ▼        ▼       │     │     │
  .─.      .─.      ▼     ▼     ▼
 ( 2 )    ( 3 )    .─.   .─.   .─.
  `─'      `─'    ( 5 ) ( 6 ) ( 7 )
                   `─'   `─'   `─'

The patching process is tested in a real browser in crates/virtual-dom-rs/tests/diff_patch.rs

Variants

AppendChildren(usizeVec<&'a VirtualNode>)

Append a vector of child nodes to a parent node id.

TruncateChildren(usizeusize)

For a node_i32, remove all children besides the first len

Replace(usize, &'a VirtualNode)

Replace a node with another node. This typically happens when a node's tag changes. ex:

becomes

AddAttributes(usizeHashMap<&'a str, &'a str>)

Add attributes that the new node has that the old node does not

RemoveAttributes(usizeVec<&'a str>)

Remove attributes that the old node had that the new node doesn't

ChangeText(usize, &'a VText)

Change the text of a Text node.

Methods

impl<'a> Patch<'a>[src]

pub fn node_idx(&self) -> usize[src]

Every Patch is meant to be applied to a specific node within the DOM. Get the index of the DOM node that this patch should apply to. DOM nodes are indexed depth first with the root node in the tree having index 0.

Trait Implementations

impl<'a> PartialEq<Patch<'a>> for Patch<'a>[src]

impl<'a> Debug for Patch<'a>[src]

Auto Trait Implementations

impl<'a> !Send for Patch<'a>

impl<'a> !Sync for Patch<'a>

Blanket Implementations

impl<T, U> Into for T where
    U: From<T>, 
[src]

impl<T> From for T[src]

impl<T, U> TryFrom for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T> Borrow for T where
    T: ?Sized
[src]

impl<T> BorrowMut for T where
    T: ?Sized
[src]

impl<T, U> TryInto for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<T> Any for T where
    T: 'static + ?Sized
[src]