Commit 2bebace2 authored by asudoh's avatar asudoh

Merge branch 'dojo18-tests' into dojo18

parents 00780aa7 8ad56184
......@@ -39,8 +39,7 @@
parseOnLoad: true,
locale: "en",
paths: {
"dijit": "../dijit-1.8",
"todo": "../../todo"
"dijit": "../dijit-1.8"
},
deps: ["dojo/parser", "dojo/domReady!"],
mvc: {debugBindings: true}
......
......@@ -2,11 +2,12 @@ define([
"dojo/_base/array",
"dojo/_base/declare",
"dojo/_base/lang",
"dojo/dom-class"
], function(array, declare, lang, domClass){
return declare(null, {
"dojo/dom-class",
"dijit/_WidgetBase"
], function(array, declare, lang, domClass, _WidgetBase){
return declare(_WidgetBase, {
// summary:
// Mixin class to support widget attributes with classExists type.
// Widget supporting widget attributes with classExists type.
// classExists type allows boolean value of an attribute to reflect existence of a CSS class in a DOM node in the widget.
// example:
// In this example, the text will be bold when the check box is checked.
......@@ -25,8 +26,7 @@ define([
// | <body>
// | <script type="dojo/require">at: "dojox/mvc/at"</script>
// | <input id="checkbox" data-dojo-type="dijit/form/CheckBox">
// | <div data-dojo-type="dijit/_WidgetBase"
// | data-dojo-mixins="todo/_CssToggleMixin"
// | <div data-dojo-type="todo/CssToggleWidget"
// | data-dojo-props="_setBoldAttr: {type: 'classExists', className: 'boldText'},
// | bold: at('widget:checkbox', 'checked')">This text will be bold when above check box is checked.</div>
// | </body>
......
define([
"dojo/_base/declare",
"dojo/_base/lang",
"dijit/_WidgetBase",
"dijit/_TemplatedMixin",
"dijit/_WidgetsInTemplateMixin",
"dojox/mvc/at"
], function(declare, lang, _WidgetBase, _TemplatedMixin, _WidgetsInTemplateMixin, at){
return declare([_WidgetBase, _TemplatedMixin, _WidgetsInTemplateMixin], {
// summary:
// A templated widget, mostly the same as dijit/_Templated, but without deprecated features in it.
// bindings: Object
// The data binding declaration for child widgets.
bindings: null,
startup: function(){
// Code to support childBindings property in dojox/mvc/WidgetList, etc.
// This implementation makes sure childBindings is set before this widget starts up, as dijit/_WidgetsInTemplatedMixin starts up child widgets before it starts itself up.
for(var s in this.bindings){
var w = this[s], props = this.bindings[s];
if(w){
for(var prop in props){
w.set(prop, props[prop]);
}
}
}
this.inherited(arguments);
}
});
});
define([
"dojo/_base/declare",
"dijit/_TemplatedMixin",
"dijit/_WidgetsInTemplateMixin",
"dojox/mvc/WidgetList",
"dojox/mvc/_InlineTemplateMixin",
"todo/CssToggleWidget",
"todo/ctrl/_HashCompletedMixin"
], function(declare, _TemplatedMixin, _WidgetsInTemplateMixin, WidgetList, _InlineTemplateMixin, CssToggleWidget, _HashCompletedMixin){
return declare([WidgetList, _InlineTemplateMixin], {
childClz: declare([CssToggleWidget, _TemplatedMixin, _WidgetsInTemplateMixin, _HashCompletedMixin], {
_setCompletedAttr: {type: "classExists", className: "completed"},
_setHiddenAttr: {type: "classExists", className: "hidden"},
onRemoveClick: function(){
this.parent.listCtrl.removeItem(this.uniqueId);
},
onEditBoxChange: function(){
if(!this.editBox.value){
this.parent.listCtrl.removeItem(this.uniqueId);
}
}
})
});
});
<section>
<!-- This is the widgets-in-template that composes the application UI of TodoMVC (Dojo 1.8 version) -->
<!--
Notes:
data-dojo-id creates object reference of the widget. Though TodoMVC application does not have multiple instances of this widgets-in-template, "${id}_" prefix is added to data-dojo-id attribute to avoid ID duplication.
-->
<!--
This <script> tag assigns module references to variables that can be used in this template, as well as the parameter file for the data binding setting, etc. (app18bindings.json) for this template.
The modules used here are:
- dojo/_base/lang: A utility library containing a function to control what object "this" in a function points to
- dojox/mvc/at: Function to create a pointer to dojo/Stateful, for the purpose of data binding
- todo/model/SimpleTodoModel: The data model class for TodoMVC data
- todo/misc/HashSelectedConverter: dojox/mvc data converter for widgets of the <a> tags for All/Active/Completed, for the selected state of the <a> tags
- todo/misc/LessThanOrEqualToConverter: dojox/mvc data converter for the shown/hidden state of "s" in "items left", as well as for the check box to mark all todo items complete/incomplete
-->
<script type="dojo/require">
lang: "dojo/_base/lang",
at: "dojox/mvc/at",
SimpleTodoModel: "todo/model/SimpleTodoModel",
HashSelectedConverter: "todo/misc/HashSelectedConverter",
LessThanOrEqualToConverter: "todo/misc/LessThanOrEqualToConverter"
</script>
<!-- A controller that keeps its hash attribute in sync with the URL hash -->
<span data-dojo-attach-point="routeCtrl"
data-dojo-type="todo/ctrl/RouteController"></span>
<!-- A Dojo Object Store for fetching/saving data from/to localStorage -->
<span data-dojo-id="${id}_localStorage"
data-dojo-type="todo/store/LocalStorage"></span>
<!-- Our custom controller, based on dojox/mvc/EditStoreRefController, that loads and saves data using a Dojo Object Store, and provides references to the data model (from the Dojo Object Store). -->
<span data-dojo-attach-point="ctrl"
<span data-dojo-id="${id}_routeCtl" data-dojo-type="todo/ctrl/RouteController"></span>
<span data-dojo-id="${id}_localStorage" data-dojo-type="todo/store/LocalStorage"></span>
<span data-dojo-id="${id}_ctrl"
data-dojo-type="todo/ctrl/TodoRefController"
data-dojo-props="store: ${id}_localStorage,
modelClass: SimpleTodoModel,
defaultId: 'todos-dojo'"></span>
<!-- Our custom controller, based on dojox/mvc/ModelRefController, that provides references to the todo list in data model, and handles actions like adding/removing/marking. -->
data-dojo-props="defaultId: 'todos-dojo', store: ${id}_localStorage, modelClass: SimpleTodoModel, complete: at('widget:${id}', 'complete')"></span>
<span data-dojo-id="${id}_listCtrl"
data-dojo-attach-point="listCtrl"
data-dojo-type="todo/ctrl/TodoListRefController"></span>
data-dojo-type="todo/ctrl/TodoListRefController"
data-dojo-props="model: at(${id}_ctrl, 'todos'), length: at('widget:${id}', 'present').direction(at.to)"></span>
<header id="header">
<h1>todos</h1>
<!--
The text box to enter new todo item.
The keypress event is handled by a method of parent widgets-in-template, so that pressing Enter key ends up with adds the new todo item.
-->
<input id="new-todo" placeholder="What needs to be done?" type="text" autofocus
data-dojo-attach-event="onkeypress: onKeyPressNewItem">
<span class="ui-tooltip-top" style="display:none;">Press Enter to save this task</span>
</header>
<section id="main">
<input id="toggle-all" type="checkbox"
data-dojo-attach-point="toggleAll"
data-dojo-type="dijit/form/CheckBox">
data-dojo-type="dijit/form/CheckBox"
data-dojo-props="checked: at(${id}_ctrl, 'incomplete').transform(LessThanOrEqualToConverter),
onClick: function(e){ ${id}_listCtrl.markAll(e.target.checked); }">
<label for="toggle-all">Mark all as complete</label>
<!--
The todo UI, composed by repeating <li> for each todo item with dojox/mvc/WidgetList.
Each <li> is created along with a widgets-in-template associated with it.
-->
<ul id="todo-list"
data-dojo-attach-point="todoList"
data-dojo-type="dojox/mvc/WidgetList"
data-dojo-mixins="dojox/mvc/_InlineTemplateMixin"
data-mvc-child-type="todo/TodoListItem">
<!--
dojox/mvc/_InlineTemplateMixin picks up the contents in <script type="dojox/mvc/InlineTemplate"> as the template string.
dojox/mvc/WidgetList used its template string for each child widget.
-->
data-dojo-type="todo/TodoList"
data-dojo-props="children: at(${id}_listCtrl, 'model'), partialRebuild: true, listCtrl: ${id}_listCtrl"
data-mvc-child-props="uniqueId: at(this.target, 'uniqueId'), completed: at(this.target, 'completed'), hash: at(${id}_routeCtl, 'hash')">
<script type="dojox/mvc/InlineTemplate">
<li>
<div class="view">
<!-- The title of the todo item, with in-line editing feature. -->
<label class="dijitInline inline_edit"
data-dojo-attach-point="editBox"
data-dojo-type="todo/form/InlineEditBox"></label>
<!-- The check box indicating whether the todo item is completed or not. -->
data-dojo-attach-event="onChange: onEditBoxChange"
data-dojo-type="todo/form/InlineEditBox"
data-dojo-props="value: at('rel:', 'title'), editor: 'dijit/form/TextBox', autosave: true"></label>
<input class="toggle" type="checkbox"
data-dojo-attach-point="checkBox"
data-dojo-type="dijit/form/CheckBox">
<button class="destroy" data-dojo-attach-event="onclick: removeItem"></button>
data-dojo-type="dijit/form/CheckBox"
data-dojo-props="checked: at('rel:', 'completed')">
<button class="destroy" data-dojo-attach-event="onclick: onRemoveClick"></button>
</div>
</li>
</script>
......@@ -86,42 +50,42 @@
<span id="todo-count">
<strong>
<span class="number"
data-dojo-attach-point="countIncompleteItems"
data-dojo-type="dijit/_WidgetBase"></span>
data-dojo-type="dijit/_WidgetBase"
data-dojo-props="_setValueAttr: {type: 'innerText', node: 'domNode'}, value: at(${id}_ctrl, 'incomplete')"></span>
</strong>
<span class="word">item<!--
--><span data-dojo-attach-point="pluralIncompleteItems"
data-dojo-type="dijit/_WidgetBase"
data-dojo-mixins="todo/_CssToggleMixin">s</span></span>
--><span data-dojo-type="todo/CssToggleWidget"
data-dojo-props="_setSingleAttr: {type: 'classExists', className: 'plural'},
constraints: {lessThanOrEqualTo: 1},
single: at(${id}_ctrl, 'incomplete').transform(LessThanOrEqualToConverter)">s</span></span>
left.
</span>
<!-- Remove this if you don't implement routing -->
<ul id="filters">
<li>
<a href="#/"
data-dojo-attach-point="hashAll"
data-dojo-type="dijit/_WidgetBase"
data-dojo-mixins="todo/_CssToggleMixin">All</a>
data-dojo-type="todo/CssToggleWidget"
data-dojo-props="_setSelectedAttr: {type: 'classExists', className: 'selected'},
selected: at(${id}_routeCtl, 'hash').transform(HashSelectedConverter)">All</a>
</li>
<li>
<a href="#/active"
data-dojo-attach-point="hashActive"
data-dojo-type="dijit/_WidgetBase"
data-dojo-mixins="todo/_CssToggleMixin">Active</a>
data-dojo-type="todo/CssToggleWidget"
data-dojo-props="_setSelectedAttr: {type: 'classExists', className: 'selected'},
selected: at(${id}_routeCtl, 'hash').transform(HashSelectedConverter)">Active</a>
</li>
<li>
<a href="#/completed"
data-dojo-attach-point="hashCompleted"
data-dojo-type="dijit/_WidgetBase"
data-dojo-mixins="todo/_CssToggleMixin"
data-dojo-props="">Completed</a>
data-dojo-type="todo/CssToggleWidget"
data-dojo-props="_setSelectedAttr: {type: 'classExists', className: 'selected'},
selected: at(${id}_routeCtl, 'hash').transform(HashSelectedConverter)">Completed</a>
</li>
</ul>
<button id="clear-completed" onclick="${id}_listCtrl.removeCompletedItems();">
Clear completed (
<span class="number-done"
data-dojo-attach-point="countCompleted"
data-dojo-type="dijit/_WidgetBase"></span>
data-dojo-type="dijit/_WidgetBase"
data-dojo-props="_setValueAttr: {type: 'innerText', node: 'domNode'}, value: at(${id}_ctrl, 'complete')"></span>
)
</button>
</footer>
......
define([
"dojo/_base/declare",
"dojo/_base/lang",
"dojo/_base/unload",
"dojo/keys",
"dojo/string",
"todo/Templated",
"todo/_CssToggleMixin",
"dijit/_TemplatedMixin",
"dijit/_WidgetsInTemplateMixin",
"todo/CssToggleWidget",
"dojo/text!./app18.html",
"dojo/text!./app18bindings.json",
// Below modules are referred in template.
// dijit/_WidgetsInTemplateMixin requires all modules referred in template to have been loaded before it's instantiated.
"dijit/form/CheckBox",
"dijit/form/TextBox",
"dojox/mvc/at",
"dojox/mvc/_InlineTemplateMixin",
"dojox/mvc/WidgetList",
"todo/TodoListItem",
"todo/TodoList",
"todo/ctrl/RouteController",
"todo/ctrl/TodoListRefController",
"todo/ctrl/TodoRefController",
......@@ -23,24 +22,22 @@ define([
"todo/misc/LessThanOrEqualToConverter",
"todo/model/SimpleTodoModel",
"todo/store/LocalStorage"
], function(declare, unload, keys, string, Templated, _CssToggleMixin, template, bindings){
function runEval(js){ return eval(js); } // To let eval script point to app18 instance as "this"
return declare([Templated, _CssToggleMixin], {
], function(declare, lang, unload, keys, string, _TemplatedMixin, _WidgetsInTemplateMixin, CssToggleWidget, template){
return declare([CssToggleWidget, _TemplatedMixin, _WidgetsInTemplateMixin], {
// summary:
// A widgets-in-template widget that composes the application UI of TodoMVC (Dojo 1.8 version).
// Also, this class inherits todo/_CssToggleMixin so that it can react to change in "present"/"complete" attributes and add/remove CSS class to the root DOM node of this widget.
// Also, this class inherits todo/CssToggleWidget so that it can react to change in "present"/"complete" attributes and add/remove CSS class to the root DOM node of this widget.
// templateString: String
// The HTML of widget template.
templateString: template,
// _setPresentAttr: Object
// A object used by todo/_CssToggleMixin to reflect true/false state of "present" attribute to existence of "todos_present" CSS class in this widget's root DOM.
// A object used by todo/CssToggleWidget to reflect true/false state of "present" attribute to existence of "todos_present" CSS class in this widget's root DOM.
_setPresentAttr: {type: "classExists", className: "todos_present"},
// _setCompleteAttr: Object
// A object used by todo/_CssToggleMixin to reflect true/false state of "complete" attribute to existence of "todos_selected" CSS class in this widget's root DOM.
// A object used by todo/CssToggleWidget to reflect true/false state of "complete" attribute to existence of "todos_selected" CSS class in this widget's root DOM.
_setCompleteAttr: {type: "classExists", className: "todos_selected"},
startup: function(){
......@@ -49,7 +46,6 @@ define([
// See documentation for dijit/_WidgetBase.startup() for more details.
var _self = this;
this.bindings = runEval.call(this, "(" + bindings + ")");
this.inherited(arguments);
unload.addOnUnload(function(){
_self.destroy(); // When this page is being unloaded, call destroy callbacks of inner-widgets to let them clean up
......@@ -66,7 +62,7 @@ define([
return; // If the key is not Enter, or the input field is empty, bail
}
this.listCtrl.addItem(event.target.value); // Add a todo item with the given text
lang.getObject(this.id + "_listCtrl").addItem(event.target.value); // Add a todo item with the given text
event.target.value = ""; // Clear the input field
event.preventDefault();
event.stopPropagation();
......
// This file defines data binding, etc. settings for child widgets in app18.html template.
// The 1st-level object key here (ctrl/listCtrl, etc.) is the data-dojo-attach-point set in app18.html.
{
// Our custom controller, based on dojox/mvc/EditStoreRefController, that loads and saves data using a Dojo Object Store, and provides references to the data model (from the Dojo Object Store).
ctrl: {
// The complete attribute (count of completed todo items, coming as a reference in the data model) is bound to the parent widgets-in-template, so that it can update a CSS class in its root DOM node.
complete: at(this, "complete")
},
// Our custom controller, based on dojox/mvc/ModelRefController, that provides references to the todo list in data model, and handles actions like adding/removing/marking.
listCtrl: {
// The model attribute (the todo list in data model) is bound to above todo/ctrl/TodoRefController instance, so that it's updated as soon as todo/ctrl/TodoRefController obtains the data from Dojo Object Store.
model: at(this.ctrl, "todos"),
// The length attribute (count of all todo items, coming as a reference in the todo list in the data model) is bound to the parent widgets-in-template, so that it can update a CSS class in its root DOM node.
length: at(this, "present").direction(at.to)
},
// The check box to mark todo items complete/incomplete.
toggleAll: {
// It's automatically checked when there is no incomplete items, by the data binding to the count of incomplete todo items (via the todo/ctrl/TodoRefController instance), which is converted to a boolean state representing whether there is no incomplete todo items.
checked: at(this.ctrl, "incomplete").transform(LessThanOrEqualToConverter),
onClick: lang.hitch(this, function(e){ this.listCtrl.markAll(e.target.checked); })
},
// The todo list UI.
todoList: {
// The children attribute (the list of the todo items) is bound to the todo/ctrl/TodoListRefController instance, so that it's updated as soon as todo/ctrl/TodoRefController obtains the data from Dojo Object Store.
children: at(this.listCtrl, "model"),
partialRebuild: true,
childParams: {
listCtrl: this.listCtrl,
// Bind hash attribute to the todo/ctrl/RouteController instance, so that todo/ctrl/_HashCompletedMixin code can determine the shown/hidden state with the completed state
hash: at(this.routeCtrl, "hash")
},
childBindings: {
editBox: {
// The value attribute is bound to the data model for the todo item, so that the title of the todo item is in sync with the data model.
value: at("rel:", "title"),
// The uniqueId attribute is bound to the data model for the todo item, so that the action handler for removing the todo item (when its title is empty) can specify which todo item should be removed.
uniqueId: at("rel:", "uniqueId"),
editor: "dijit/form/TextBox",
autosave: true,
listCtrl: this.listCtrl,
onChange: function(){ if(!this.value){ this.listCtrl.removeItem(this.uniqueId); return false; } }
},
checkBox: {
// The checked attribute is bound to the data model for the todo item, so that the checked state is in sync with the completed state in the data model.
checked: at("rel:", "completed")
}
}
},
// The count of incomplete todo items.
countIncompleteItems: {
// The value attribute is associated with the text in this widget, and bound to the todo/ctrl/TodoRefController instance, so that the count of incomplete todo items is updated as soon as todo/ctrl/TodoRefController obtains the data from Dojo Object Store.
_setValueAttr: {type: "innerText", node: "domNode"},
value: at(this.ctrl, "incomplete")
},
// The 's' in "items" showing the count of incomplete todo items.
pluralIncompleteItems: {
// The single attribute is associated with the existence of "plural" CSS class of its root DOM node. (Such association is used by todo/_CssToggleMixin code)
_setSingleAttr: {type: "classExists", className: "plural"},
// The single attribute is bound to the todo/ctrl/TodoRefController instance, so that the state whether the count of incomplete todo item is less than or equal to 1 is updated as soon as todo/ctrl/TodoRefController obtains the data from Dojo Object Store.
single: at(this.ctrl, "incomplete").transform(LessThanOrEqualToConverter),
constraints: {lessThanOrEqualTo: 1}
},
// The link to show all todo items.
hashAll: {
// The selected attribute is associated with the existence of "selected" CSS class of its root DOM node. (Such association is used by todo/_CssToggleMixin code)
_setSelectedAttr: {type: "classExists", className: "selected"},
// The selected attribute is bound to todo/ctrl/RouteController instance, so that change in URL hash will be reflected here.
// The URL hash is converted to the state whether the hash matches to the href here, by HashSelectedConverter (a dojox/mvc data converter).
selected: at(this.routeCtrl, "hash").transform(HashSelectedConverter)
},
// The link to show incomplete todo items.
hashActive: {
// The selected attribute is associated with the existence of "selected" CSS class of its root DOM node. (Such association is used by todo/_CssToggleMixin code)
_setSelectedAttr: {type: "classExists", className: "selected"},
// The selected attribute is bound to todo/ctrl/RouteController instance, so that change in URL hash will be reflected here.
// The URL hash is converted to the state whether the hash matches to the href here, by HashSelectedConverter (a dojox/mvc data converter).
selected: at(this.routeCtrl, "hash").transform(HashSelectedConverter)
},
// The link to show completed todo items.
hashCompleted: {
// The selected attribute is associated with the existence of "selected" CSS class of its root DOM node. (Such association is used by todo/_CssToggleMixin code)
_setSelectedAttr: {type: "classExists", className: "selected"},
// The selected attribute is bound to todo/ctrl/RouteController instance, so that change in URL hash will be reflected here.
// The URL hash is converted to the state whether the hash matches to the href here, by HashSelectedConverter (a dojox/mvc data converter).
selected: at(this.routeCtrl, "hash").transform(HashSelectedConverter)
},
// The count of completed todo items.
countCompleted: {
// The value attribute is associated with the text in this widget, and bound to the todo/ctrl/TodoRefController instance, so that the count of completed todo items is updated as soon as todo/ctrl/TodoRefController obtains the data from Dojo Object Store.
_setValueAttr: {type: "innerText", node: "domNode"},
value: at(this.ctrl, "complete")
}
}
......@@ -47,7 +47,6 @@ define([
}));
router.startup(); // Activate dojo/router
this.set("hash", router._currentPath); // Set the inital value of hash property
this._started = true;
},
_setHashAttr: function(value){
......
......@@ -16,26 +16,6 @@ define([
// Actions are implemented in the manner of manipulating array.
// The change will automatically be reflected to the UI via the notification system of dojox/mvc/StatefulArray.
postscript: function(/*Object?*/ params, /*DOMNode?*/ srcNodeRef){
// summary:
// Kicks off instantiation of this controller, in a similar manner as dijit/_WidgetBase.postscript().
// params: Object?
// The optional parameters for this controller.
// srcNodeRef: DOMNode?
// The DOM node declaring this controller. Set if this controller is created via Dojo parser.
this.inherited(arguments);
srcNodeRef && srcNodeRef.setAttribute("widgetId", this.id); // If this is created via Dojo parser, set widgetId attribute so that destroyDescendants() of parent widget works
},
startup: function(){
// summary:
// A function called after the DOM fragment declaring this controller is added to the document, in a similar manner as dijit/_WidgetBase.startup().
this.inherited(arguments);
this._started = true;
},
addItem: function(/*String*/ title){
// summary:
// Adds a todo item with the given title.
......@@ -79,15 +59,6 @@ define([
array.forEach(this[this._refModelProp], function(item){
item.set("completed", markComplete);
});
},
hasControllerProperty: function(/*String*/ name){
// summary:
// Returns true if this controller itself owns the given property.
// name: String
// The property name.
return this.inherited(arguments) || /^dojoAttach(Point|Event)$/i.test(name); // Let dojoAttachPoint/dojoAttachEvent be this controller's property
}
});
});
......@@ -74,7 +74,6 @@ define([
this.inherited(arguments);
this.getStore(this.defaultId); // Obtain data from Dojo Object Store as soon as this starts up
this._started = true;
},
set: function(/*String*/ name, /*Anything*/ value){
......@@ -87,15 +86,6 @@ define([
this.inherited(arguments);
},
hasControllerProperty: function(/*String*/ name){
// summary:
// Returns true if this controller itself owns the given property.
// name: String
// The property name.
return this.inherited(arguments) || /^dojoAttach(Point|Event)$/i.test(name); // Let dojoAttachPoint/dojoAttachEvent be this controller's property
},
destroy: function(){
// summary:
// A function called when this controller is being destroyed, in a similar manner as dijit/_WidgetBase.destroy().
......
define([
"dojo/_base/declare",
"dojox/mvc/at",
"todo/_CssToggleMixin",
"todo/Templated"
], function(declare, at, _CssToggleMixin, Templated){
define(["dojo/_base/declare"], function(declare){
var ACTIVE = "/active",
COMPLETED = "/completed";
......@@ -18,24 +13,15 @@ define([
false;
}
return declare([Templated, _CssToggleMixin], {
return declare(null, {
// summary:
// The widgets-in-template for todo item.
// A mix-in class for widgets-in-template for todo item, that looks at URL hash and completed state of todo item, and updates the hidden state.
// description:
// Defines data bindings for uniqueId/completed, and the mapping between several widget attributes to CSS classes (using todo/_CssToggleMixin).
// Also, looks at URL hash and completed state of todo item, and updates the hidden state. A todo item should be hidden if:
// A todo item should be hidden if:
//
// - URL hash is "/active" and the todo item is complete -OR-
// - URL hash is "/copleted" and the todo item is incomplete
// _setStrikeAttr: Object
// A object used by todo/_CssToggleMixin to reflect true/false state of "strike" attribute to existence of "completed" CSS class in this widget's root DOM.
_setStrikeAttr: {type: "classExists", className: "completed"},
// _setHiddenAttr: Object
// A object used by todo/_CssToggleMixin to reflect true/false state of "hidden" attribute to existence of "hidden" CSS class in this widget's root DOM.
_setHiddenAttr: {type: "classExists", className: "hidden"},
_setHashAttr: function(/*String*/ value){
// summary:
// Handler for calls to set("hash", val), to update hidden state given the new value and the completed state.
......@@ -49,26 +35,7 @@ define([
// Handler for calls to set("completed", val), to update hidden state given the new value and the hash.
this.set("hidden", getHiddenState({hash: this.hash, completed: value})); // Update hidden state given the new value and the hash
this.set("strike", value); // Update completed strike-through
this._set("completed", value); // Assign the new value to the attribute
},
startup: function(){
// summary:
// A function called after the DOM fragment declaring this controller is added to the document, in a similar manner as dijit/_WidgetBase.startup().
// description:
// Defines data binding for uniqueId/completed.
this.set("uniqueId", at(this.target, "uniqueId")); // Bind its uniqueId attribute to the data model for the todo item, so that the action handler for removing a todo item can specify which todo item should be removed
this.set("completed", at(this.target, "completed")); // Bind its completed attribute to the data model for the todo item, so that todo/ctrl/_HashCompletedMixin code can determine the shown/hidden state with the URL hash
this.inherited(arguments);
},
removeItem: function(){
// summary:
// Implements an action to remove a todo item.
this.listCtrl.removeItem(this.uniqueId);
}
});
});
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment