incremental-dom-loader
v0.0.6
Published
An incremental-dom loader for webpack. It compiles an HTML file into an incremental-dom script
Downloads
6
Readme
incremental-dom-loader
An incremental-dom loader for webpack. It compiles an HTML file into an incremental-dom script.
Getting Started
Install incremental-dom-loader
via npm
:
$ npm install --save-dev incremental-dom-loader
then add it to your webpack.config.js
:
module.exports = {
...
module: {
rules: [{
test: /\.html$/,
loader: 'incremental-dom-loader'
}, ...]
}
};
Usage
incremental-dom-loader
transpiles HTML code into incremental-dom js scripts so that you can seamless include them as part of your webpack bundle.
In your project dir create a plain HTML file (e.g. simple.html
):
<h1>Hello!</h1>
and in your js code require it as usual:
const simple = require('./simple.html');
During the build step the HTML file will be converted into:
var id = require('incremental-dom');
module.exports = function(state) {
id.elementOpen('h1', 'lh5kf', []);
id.text(`Hello!`);
id.elementClose('h1');
};
that can be passed as argument of the patch function:
patch(root, function() {
simple(data);
});
Rules
incremental-dom-loader
levereges on htmlparser2 for the HTML code parsing.
The build process follows the following rules:
- Static suffix/prefix are added to the code including
incremental-dom
requires andexports
, - An open tag is converted into:
id.elementOpen('tagName', 'an unique id', [ 'static', 'attribute' ], 'dynamic', 'attribute');
- A text element is converted into:
id.text(`Hello!`);
- A close tag is converted into:
id.elementClose('tagName');
Template
incremental-dom-loader
provides a template engine system based on the ES6 template literals.
<h1>Hello!</h1>
<dom-if test="${ state.check() }">
<dom-loop items="${ state.items }">
<h2>${ value.title }</h2>
<p>${ value.text }</p>
<button onclick="${ state.love }">Show Love!</button>
</dom-loop>
</dom-if>
var id = require('incremental-dom');
module.exports = function(state) {
id.elementOpen('h1', 'hio0k', []);
id.text(`Hello!`);
id.elementClose('h1');
if(state.check()) {
for(const key of Object.keys(state.items)) {
const value = state.items[key];
id.elementOpen('h2', `ncj5k-${ key }`, []);
id.text(`${ value.title }`);
id.elementClose('h2');
id.elementOpen('p', `jde79-${ key }`, []);
id.text(`${ value.text }`);
id.elementClose('p');
id.elementOpen('button', `eima7-${ key }`, [], 'onclick', state.love);
id.text(`Show Love!`);
id.elementClose('button');
}
}
}
All the attributes/text nodes containing ${ ... }
are converted into js template litterals. The state
variable represents the argument you pass to the template function.
The dom-if
and dom-loop
pseudo-elements can be used to create if
and for
statements:
dom-if
<dom-if test="${ state.check() }">
<!-- if test is true -->
</dom-if>
if(state.check()) {
// ...
}
dom-loop
<dom-loop items="${ state.items }">
<!-- loop over state.items -->
</dom-loop>
for(const key of Object.keys(state.items)) {
const value = state.items[key];
// ...
}