openmct/tutorials/todo/todo.js

50 lines
1.4 KiB
JavaScript
Raw Normal View History

2016-05-27 22:31:54 +00:00
define([
"text!./todo.html",
"text!./todo-task.html",
"zepto"
], function (todoTemplate, taskTemplate, $) {
/**
* @param {mct.MCT} mct
*/
2016-05-27 20:17:16 +00:00
return function todoPlugin(mct) {
var todoType = new mct.Type({
metadata: {
label: "To-Do List",
glyph: "2",
description: "A list of things that need to be done."
},
initialize: function (model) {
model.tasks = [];
},
creatable: true
});
2016-05-27 22:31:54 +00:00
todoType.view(mct.regions.main, function (domainObject) {
var view = new mct.View();
function render() {
var domainObject = view.model();
var $els = $(view.elements());
var tasks = domainObject.getModel().tasks;
var $message = $els.find('.example-message');
var $buttons = {
all: $els.find('.example-todo-button-all'),
incomplete: $els.find('.example-todo-button-incomplete'),
complete: $els.find('.example-todo-button-complete')
};
$message.toggle(tasks.length < 1);
}
view.elements($(todoTemplate));
view.on('model', render);
view.model(domainObject);
return view;
});
2016-05-27 20:17:16 +00:00
mct.type('example.todo', todoType);
return mct;
};
});