This is Shaco
Shaco is a simple experiment with Shadow DOM and "component", Shaco permit you create Components that use Shado DOM templates.
This will create a new custom HTML element and inside will put you Shadow DOW template. Shaco use Incremental DOM from Google in order to render components
A Shaco Component is created in this way:
Shaco.ComponentFactory({
elementName: string
state(),
onMount(),
onUnMount(),
template: string,
view: string | function,
events: Array
})
The other 2 important concepts are:
- The Shaco.createElement
- Event Object
The Shaco.createElement
This is a function that create a new HTML element, this element could be assigned to your custom element innerHTML
Shaco.createElement(TagName, key, state, DOMElementAttributesObj, Child)
- TagName: This is the name of the element to create, could be a estandar HTML tag or a custom Tag (like one component created with shaco)
- key: in order to indentify array of elements, use it when you map over and array of objects
- state: If the tag is a Shaco Component, this will be the initial state of the component
- DOMElementAttributesObj: Whatever DOM element attibute that is right now supported, like style or class, etc.
- Child: Another Shaco.createElement or a string that will be inside the element created
Event Object
IMPORTANT: This is no longer required. Now you use normal events on Shaco.createElement
The event object will be used to delegate listeners on the Component. This is the structure of the Event Objet:
{
selector: string,
type: string,
calback: function
}
Example
This is an example of how to use Shaco, see the example folder or the TODO example in this Repository