element-creator
A library that helps to create interactive HTML elements (virtual dom) easily. Inspired by MithrilJs framework.
Installation
element-creator is available on NPM and as a Javascript library.
Install on NPM
npm install element-creator
Or include on html file on unpkg
<script type="text/javascript" src="https://unpkg.com/element-creator@1.0.5/build/element-creator.min.js"></script>
Examples:
A one page content example located at build/index.html
. Or a quick demo below
import e from 'element-creator';
var myDiv = e('div#myElement.class__1[name=awesome-div]', 'My awesome div', {
on: { 'click': function(e) {
alert('You have clicked on My awesome div');
}}
})
The variable myDiv
above generates div
html element with click
event that prop an alert message.
<div id="myElement" class="class__1" name="awesome-div">My awesome div</div>
Documentation
element-creator contains Elementextended (or wrapper) which wraps/adds interactive functions such as .find, .all to standard element and ElementCreator which creates HTML elements then wrap and return an ElementExtended element.
ElementCreator
var vdom = e(elementString, children, options)
Where:
- elementString is a string that specify the element parameters creation with following pattern:
{elementType}{(*)elementId}{(*)elementClasses}{(*)elementAttributes}
(*) is optional
Parameters | Default | Description | Example |
---|
elementType | div | Type of element or element's tag type | p or h1 . Use default incase left empty |
elementId | | Element's id | #firstParagraph |
elementClasses | | Element classes | .class__1 or multiple classes .class__1.class_2 |
elementAtrributes | | Element attributes | [name=title] or multiple attributes [name=title,ref=titleRef] |
ElementExtended
var wrappedElement = e.wrap(querySelector, isMultiple)
Where:
- querySelector is standard query selector string for example
h1
will look for heading h1
, .class__1
will look for any element has class .class__1
. - isMultiple is
false
by default. If set to true
it will return an array of element match with querySelector.