angular-cn/public/docs/_examples/homepage-todo/ts/app/todo_app.js

66 lines
3.1 KiB
JavaScript

System.register(['angular2/core', './todo_list', './todo_form'], function(exports_1) {
var __decorate = (this && this.__decorate) || function (decorators, target, key, desc) {
var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
if (typeof Reflect === "object" && typeof Reflect.decorate === "function") r = Reflect.decorate(decorators, target, key, desc);
else for (var i = decorators.length - 1; i >= 0; i--) if (d = decorators[i]) r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
return c > 3 && r && Object.defineProperty(target, key, r), r;
};
var __metadata = (this && this.__metadata) || function (k, v) {
if (typeof Reflect === "object" && typeof Reflect.metadata === "function") return Reflect.metadata(k, v);
};
var core_1, todo_list_1, todo_form_1;
var TodoApp;
return {
setters:[
function (core_1_1) {
core_1 = core_1_1;
},
function (todo_list_1_1) {
todo_list_1 = todo_list_1_1;
},
function (todo_form_1_1) {
todo_form_1 = todo_form_1_1;
}],
execute: function() {
TodoApp = (function () {
function TodoApp() {
this.todos = [
{ text: 'learn angular', done: true },
{ text: 'build an angular app', done: false }
];
}
Object.defineProperty(TodoApp.prototype, "remaining", {
get: function () {
return this.todos.reduce(function (count, todo) { return count + +!todo.done; }, 0);
},
enumerable: true,
configurable: true
});
TodoApp.prototype.archive = function () {
var _this = this;
var oldTodos = this.todos;
this.todos = [];
oldTodos.forEach(function (todo) {
if (!todo.done)
_this.todos.push(todo);
});
};
TodoApp.prototype.addTask = function (task) {
this.todos.push(task);
};
TodoApp = __decorate([
core_1.Component({
selector: 'todo-app',
template: "\n <h2>Todo</h2>\n <span>{{remaining}} of {{todos.length}} remaining</span>\n [ <a (click)=\"archive()\">archive</a> ]\n\n <todo-list [todos]=\"todos\"></todo-list>\n <todo-form (newTask)=\"addTask($event)\"></todo-form>",
styles: ['a { cursor: pointer; cursor: hand; }'],
directives: [todo_list_1.TodoList, todo_form_1.TodoForm]
}),
__metadata('design:paramtypes', [])
], TodoApp);
return TodoApp;
})();
exports_1("TodoApp", TodoApp);
}
}
});
//# sourceMappingURL=todo_app.js.map