incremental_dom_bindings

Last updated:

0 purchases

incremental_dom_bindings Image
incremental_dom_bindings Images
Add to Cart

Description:

incremental dom bindings

incremental_dom_bindings #
Dart binding for the Incremental DOM library.
From the original Incremental DOM docuementation:

Incremental DOM is a library for expressing and applying updates to DOM trees. JavaScript can be used to extract, iterate over and transform data into calls generating HTMLElements and Text nodes. It differs from Virtual DOM approaches in that a diff operation is performed incrementally (that is one node at a time) against the DOM, rather than on a virtual DOM tree.
Rather than targeting direct usage, Incremental DOM aims to provide a platform for higher level libraries or frameworks. As you might notice from the examples, Incremental DOM-style markup can be somewhat challenging to write and read. See Why Incremental DOM for an explanation.

Usage #
For a detailed documentation see http://google.github.io/incremental-dom/.
This packages requires the Incremental DOM Javascript library to be loaded. Add
<script src="/packages/incremental_dom/assets/incremental-dom.js"></script>
copied to clipboard
or
<script src="/packages/incremental_dom/assets/incremental-dom-min.js"></script>
copied to clipboard
to your index.html.
Example #
This simple example adds an element to the DOM.
import 'dart:html';

import 'package:incremental_dom_bindings/incremental_dom_bindings.dart';

void main() {
// query the element to patch
final root = querySelector('#root')!;

// patch the element
patch(root, (_) {
// open a div element with the attributes id and style
elementOpen('div', null, [
'id',
'testId',
'style',
{'color': 'red'}
]);

// add a text inside the div element
text('Hello World');

// close the div element
elementClose('div');
});
}
copied to clipboard

License:

For personal and professional use. You cannot resell or redistribute these repositories in their original state.

Files In This Product:

Customer Reviews

There are no reviews.