forked from blacksag/To-Dos
-
Notifications
You must be signed in to change notification settings - Fork 0
/
todos.js
238 lines (205 loc) · 6.18 KB
/
todos.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
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
var todoList = {
todos : [],
// displayTodos : function() { //for displaying in console
// if (this.todos.length === 0) {
// console.log('Your todo list is empty!')
// }
// else {
// console.log('My todos :');
// for (var i = 0; i < this.todos.length; i++) {
// if (this.todos[i].completed === true) {
// console.log('(x) ',this.todos[i].todoText);
// }
// else {
// console.log('( ) ',this.todos[i].todoText);
// }
// }
// }
// },
addTodos : function(todoText) {
this.todos.push({
todoText : todoText,
completed : false
});
},
changeTodos : function(position,todoText) {
var todo = this.todos[position];
todo.todoText = todoText;
},
deleteTodos : function (position) {
this.todos.splice(position,1);
},
toggleCompleted : function (position) {
var todo = this.todos[position];
todo.completed = !todo.completed;
},
toggleAll : function () {
var totalTodos = this.todos.length;
var completedTodos = 0;
//get number of completed todos
this.todos.forEach( function (todo) {
if (todo.completed === true) {
completedTodos++;
}
});
//if everything is true make everything false
if (completedTodos === totalTodos) {
this.todos.forEach( function (todo) {
todo.completed = false;
});
}
//otherwise make all true
else {
this.todos.forEach( function (todo) {
todo.completed = true;
});
}
//toggleAll should simply toggle the truth value for the completed flag instead of setting the same value for each todo
//use the following code if this is the required functionality as per your use case
// this.todos.forEach(todo=>{
// todo.completed=!todo.completed;
// })
}
};
var handler = {
size : 0,
addTodos : function() {
var todoAddTextInput = document.getElementById('todoAddTextInput');
if (todoAddTextInput.value === '') {
this.emptyHandler();
}
else {
todoList.addTodos(todoAddTextInput.value);
todoAddTextInput.value = '';
this.size++;
view.displayTodos();
}
},
changeTodos : function() {
var todoChangePositionInput = document.getElementById('todoChangePositionInput');
var todoChangeNameInput = document.getElementById('todoChangeNameInput');
var inputValue = todoChangePositionInput.valueAsNumber;
var hasDuplicate = todoList.todos.some(todo =>
todo.todoText === todoChangeNameInput.value
)
if (hasDuplicate) {
this.duplicateHanlder(todoChangeNameInput.value)
} else if (
todoChangePositionInput.value === '' ||
todoChangeNameInput.value === ''
) {
this.emptyHandler();
} else if (inputValue >= this.size || inputValue < 0) {
this.indexHandler(this.size);
} else {
todoList.changeTodos(inputValue,todoChangeNameInput.value);
todoChangePositionInput.value = '';
todoChangeNameInput.value = '';
view.displayTodos();
}
},
deleteTodos : function() {
var todoDeletePositionInput = document.getElementById('todoDeletePositionInput');
var inputValue = todoDeletePositionInput.valueAsNumber;
if (todoDeletePositionInput.value === '') {
this.emptyHandler();
}
else if (inputValue >= this.size || inputValue < 0) {
this.indexHandler(this.size);
}
else {
todoList.deleteTodos(inputValue);
todoDeletePositionInput.value = '';
this.size--;
view.displayTodos();
}
},
advanceDeleteTodos : function(position) {
todoList.deleteTodos(position);
this.size--;
view.displayTodos();
},
toggleCompleted : function() {
var todoTogglePositionInput = document.getElementById('todoTogglePositionInput');
var inputValue = todoTogglePositionInput.valueAsNumber;
if (todoTogglePositionInput.value === '' ) {
this.emptyHandler();
}
else if (inputValue >= this.size || inputValue < 0) {
this.indexHandler(this.size);
}
else
{
todoList.toggleCompleted(todoTogglePositionInput.valueAsNumber);
todoTogglePositionInput.value = '';
view.displayTodos();
}
},
advanceToggleCompleted : function(position) {
todoList.toggleCompleted(position);
view.displayTodos();
},
toggleAll : function() {
todoList.toggleAll();
view.displayTodos();
},
emptyHandler : function() {
window.alert("Enter some value!");
},
duplicateHanlder : function(value) {
window.alert(
'"' + value + '" already exists from the open tasks.\n' +
'Try to use another name.'
);
},
indexHandler : function (s) {
window.alert("Index out of size!\n" + s + " is the maximum size!!");
}
};
// var myButton = document.getElementById('myButton');
// myButton.addEventListener('click',function() {
// var todoTextInput = document.getElementById('todoTextInput');
// console.log(todoTextInput.value);
// });
var view = {
displayTodos : function() {
var todosUl = document.querySelector('ul');
todosUl.innerHTML = '';
todoList.todos.forEach(function (todo,position) {
var todoLi = document.createElement('li');
var todoSpan = document.createElement('span');
if (todo.completed === true) {
todoSpan.textContent = '☒ ' + todo.todoText + ' ';
}
else {
todoSpan.textContent = '☐ ' + todo.todoText + ' ';
}
todoLi.id = position;
todoLi.appendChild(todoSpan)
todoLi.appendChild(this.createDeleteButton());
todoLi.appendChild(this.createToggleButton());
todosUl.appendChild(todoLi);
}, this);
},
createDeleteButton : function() {
var deleteButton = document.createElement('button');
deleteButton.textContent = 'Delete';
deleteButton.className = 'advanceDeleteButton danger';
deleteButton.onclick = function() {
var position = this.parentNode.id; //this->deleteButton
//console.log(this.parentNode)
handler.advanceDeleteTodos(position);
}
return deleteButton;
},
createToggleButton : function() {
var toggleButton = document.createElement('button');
toggleButton.textContent = 'Toggle';
toggleButton.className = 'advanceToggleButton success';
toggleButton.onclick = function() {
var position = this.parentNode.id;
handler.advanceToggleCompleted(position);
}
return toggleButton;
}
};