-
Notifications
You must be signed in to change notification settings - Fork 208
/
Copy pathtodo.bundle.js
142 lines (105 loc) · 2.71 KB
/
todo.bundle.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
webpackJsonp([0],[
/* 0 */
/***/ function(module, exports, __webpack_require__) {
'use strict';
var angular = __webpack_require__(1);
angular.module('todoListApp', []);
__webpack_require__(3);
__webpack_require__(4);
__webpack_require__(5);
__webpack_require__(6);
/***/ },
/* 1 */,
/* 2 */,
/* 3 */
/***/ function(module, exports, __webpack_require__) {
'use strict';
var angular = __webpack_require__(1);
angular.module('todoListApp')
.controller('mainCtrl', function($scope, $log, $interval, dataService){
$scope.seconds = 0;
$scope.counter = function(){
$scope.seconds++;
$log.error($scope.seconds + ' have passed');
};
$interval($scope.counter, 1000, 10);
dataService.getTodos(function(response){
var todos = response.data;
$scope.todos = todos;
});
$scope.addTodo = function() {
$scope.todos.unshift({name: 'This is a new todo.',
completed: false});
};
});
/***/ },
/* 4 */
/***/ function(module, exports) {
'use strict';
angular.module('todoListApp')
.controller('todoCtrl', function($scope, dataService) {
$scope.deleteTodo = function(todo, index) {
$scope.todos.splice(index, 1);
dataService.deleteTodo(todo);
};
$scope.saveTodos = function() {
var filteredTodos = $scope.todos.filter(function(todo){
if(todo.edited) {
return todo;
}
});
dataService.saveTodos(filteredTodos)
.finally($scope.resetTodoState());
};
$scope.resetTodoState = function(){
$scope.todos.forEach(function(todo){
todo.edited = false;
});
};
});
/***/ },
/* 5 */
/***/ function(module, exports) {
'use strict';
angular.module('todoListApp')
.service('dataService', function($http, $q) {
this.getTodos = function(cb) {
$http.get('/api/todos').then(cb);
};
this.deleteTodo = function(todo) {
console.log('I deleted the ' + todo.name + ' todo!');
};
this.saveTodos = function(todos) {
console.log(todos);
var queue = [];
todos.forEach(function(todo){
var request;
if(!todo._id){
request = $http.post('/api/todos', todo);
} else {
request = $http.put('/api/todos/' + todo._id, todo).then(function(result){
todo = result.data.todo;
return todo;
});
}
queue.push(request);
});
return $q.all(queue).then(function(results){
console.log('i saved ' + todos.length + ' todos');
});
};
});
/***/ },
/* 6 */
/***/ function(module, exports) {
'use strict';
angular.module('todoListApp')
.directive('todo', function(){
return {
templateUrl: 'templates/todo.html',
replace: true,
controller: 'todoCtrl'
}
});
/***/ }
]);