marko-widgets
Version:
Module to support binding of behavior to rendered UI components rendered on the server or client
27 lines (23 loc) • 739 B
JavaScript
var template = require('marko').load(require.resolve('./template.marko'));
module.exports = function(input, out) {
var label = input.label;
var checked = input.checked === true;
var className = 'app-extend-checkbox';
if (input['class']) {
className += ' ' + input['class'];
}
if (checked) {
className += ' checked';
}
template.render({
name: input.name,
// widgetConfig is a special property that is used to control
// what data gets passed to the widget constructor
widgetConfig: {
data: input.data
},
className: className,
label: label,
checked: checked
}, out);
};