-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathtodo.js
90 lines (73 loc) · 2.18 KB
/
todo.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
angular.module('todoApp', [])
.controller('TodoListController', function($scope) {
$scope.todos =[];
$scope.todoText = '';
$scope.archived = [];
function generateUUID() {
var d = new Date().getTime();
if (typeof performance !== 'undefined' && typeof performance.now === 'function'){
d += performance.now(); //use high-precision timer if available
}
return 'xxxxxxxx-xxxx-4xxx-yxxx-xxxxxxxxxxxx'.replace(/[xy]/g, function (c) {
var r = (d + Math.random() * 16) % 16 | 0;
d = Math.floor(d / 16);
return (c === 'x' ? r : (r & 0x3 | 0x8)).toString(16);
});
}
function add () {
if ($scope.todoText.length === 0 || $scope.todoText === ' ') {
window.alert('Error: The todo is empty, please write something');
} else {
$scope.todos.push({
name: $scope.todoText,
done: false,
uuid: generateUUID(),
archived: false
});
$scope.todoText = '';
}
}
$scope.add = add;
function remove(removeObject) {
var removeText = 'Do you want to remove ' + removeObject.name + '?';
var confirmation = window.confirm(removeText);
if (confirmation) {
$scope.todos = $scope.todos.filter(function(val) {
val.uuid = removeObject.uuid;
});
}
}
$scope.remove = remove;
function count () {
var count = 0;
for (var index = 0; index < $scope.todos.length; index++) {
if ($scope.todos[index].done) {
count = count + 1;
}
}
return count;
}
$scope.count = count;
function getTotal () {
return $scope.todos.length;
}
$scope.getTotal = getTotal;
function archive (activity) {
$scope.todos = $scope.todos.map(function(val) {
if (val.uuid === activity.uuid) {
val.archived = true;
}
return val;
});
}
$scope.archive = archive;
function unarchive(activity) {
$scope.todos = $scope.todos.map(function(val) {
if (val.uuid === activity.uuid) {
val.archived = false;
}
return val;
});
}
$scope.unarchive = unarchive;
})