delite/Template
delite/Template
is a utility class that's constructed from an AST representing a widget template, and compiles it into
a function for creating a reactive template. It's used by delite/handlerbars! and designed
so it can be used with other template syntax parsers too.
An AST would look like:
{
tag: "BUTTON",
attributes: {},
children: [
{
tag: "SPAN",
attributes: {
class: {expr: "'d-reset' + this.baseClass", dependsOn: ["baseClass"]}
},
connect: {
click: "myClickHandler" // name of method in widget to call on click event
},
attachPoints: [ "focusNode" ],
children: [ ... ]
},
{expr: "'some boilerplate text' + this.label", dependsOn: ["label"]}
]
}