forked from Valtn/to-do-list
-
Notifications
You must be signed in to change notification settings - Fork 0
/
main.js
293 lines (272 loc) Β· 9.72 KB
/
main.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
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
// Main JSON Object
var json;
var newItemMode = false;
var newItemModeText = `<strong class='visible-md visible-lg'>Press <span class="label label-default">Enter</span> to save or <span class="label label-default">Esc</span> to cancel</strong>`;
var newItemModeHtml = document.getElementById("newTaskP").innerHTML; // Save html for after adding new task
var viewMode = "to-do";
var editMode = false;
// Load data
if(localStorage.getItem("data") === null){
json = {};
var items = [];
json.items = items;
} else {
json = JSON.parse(localStorage.getItem("data"));
//console.log(JSON.stringify(json));
populateHtml();
}
function saveData(){
var stringJson = JSON.stringify(json);
localStorage.setItem("data", stringJson);
}
function populateHtml(){
//$("#content").empty();
$("#content").html("");
$("#contentCompleted").html("");
var i = json.items;
for(var c in i){
if(i[c].completed == false) {
var row = `
<tr id="item${i[c].id}">
<td><input type="checkbox" onclick="checkboxChangeState(${i[c].id})"></td>
<td ondblclick="editExistingItem(${i[c].id})">${i[c].text}</td>
<td>
<div class="btn-group">
<button class="btn btn-default btn-xs dropdown-toggle" type="button" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
<span class="glyphicon glyphicon-cog" aria-hidden="false"></span>
</button>
<ul class="dropdown-menu">
<li><a onclick="editExistingItem(${i[c].id})"><span class="glyphicon glyphicon-pencil" aria-hidden="true"></span> Edit</a></li>
<li><a onclick="deleteItem(${i[c].id})"><span class="glyphicon glyphicon-trash" aria-hidden="true"></span> Delete</a></li>
</ul>
</div>
</td>
</tr>
`;
//console.log(i[c].id);
//console.log(i[c].text);
$("#content").append(row);
} else {
var row = `
<tr id="item${i[c].id}">
<td><input type="checkbox" onclick="checkboxChangeState(${i[c].id})" checked></td>
<td ondblclick="editExistingItem(${i[c].id})">${i[c].text}</td>
<td>
<div class="btn-group">
<button class="btn btn-default btn-xs dropdown-toggle" type="button" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
<span class="glyphicon glyphicon-cog" aria-hidden="false"></span>
</button>
<ul class="dropdown-menu">
<li><a onclick="editExistingItem(${i[c].id})"><span class="glyphicon glyphicon-pencil" aria-hidden="true"></span> Edit</a></li>
<li><a onclick="deleteItem(${i[c].id})"><span class="glyphicon glyphicon-trash" aria-hidden="true"></span> Delete</a></li>
</ul>
</div>
</td>
</tr>
`;
//console.log(i[c].id);
//console.log(i[c].text);
$("#contentCompleted").append(row);
}
}
}
function newItem(){
newItemMode = true;
$("#newTaskP").html(newItemModeText);
// Add a new item row
var newItemRow = `
<tr id="editModeTr">
<td></td>
<td colspan="2">
<div class="input-group">
<input id="editModeInput" type="text" class="form-control" placeholder="Task">
<div id='addItem' class="input-group-addon">
<span class="glyphicon glyphicon-plus" aria-hidden="true"></span>
</div>
<div id='cancelItem' class="input-group-addon">
<span class="glyphicon glyphicon-remove" aria-hidden="true"></span>
</div>
</div>
</td>
</tr>
`;
$("#content").prepend(newItemRow);
$("#editModeInput").focus();
}
function saveNewItem(){
json.items.push({"id":Date.now(),"text":document.getElementById("editModeInput").value,"completed":false});
saveData();
populateHtml();
}
function editExistingItem(id){
var item = "#item" + id;
/*var input = `<input type="text" value="${$(item + " td:nth-child(2)").html()}" class="form-control">`;
$(item + " td:nth-child(2)").html(input);*/
$('#editModal').modal('toggle');
$('#modalInput').val($(item + " td:nth-child(2)").html());
$('#modalSave').attr("onclick", "saveChangesToItem(" + id + ")");
$('#modalInput').focus();
editMode = true;
}
function saveChangesToItem(id){
var i = json.items;
var tmp = [];
for(var c in i){
if(i[c].id == id){
var text = $('#modalInput').val();
tmp.push({"id":i[c].id,"text":text,"completed":i[c].completed});
} else {
tmp.push({"id":i[c].id,"text":i[c].text,"completed":i[c].completed});
}
}
json.items = tmp;
saveData();
populateHtml();
hideEditModal();
}
function deleteItem(id){
// Disable edit mode
$("#newTaskP").html(newItemModeHtml);
newItemMode = false;
$("#editModeTr").remove();
var i = json.items;
var tmp = [];
for(var c in i){
if(i[c].id !== id){
tmp.push({"id":i[c].id,"text":i[c].text,"completed":i[c].completed});
}
}
json.items = tmp;
saveData();
$("#item"+id).closest('tr').fadeOut(200);
setTimeout(function () {
populateHtml();
}, 210);
}
function deleteAllCompletedTasks(){
var i = json.items;
var tmp = [];
for(var c in i){
if(i[c].completed == false){
tmp.push({"id":i[c].id,"text":i[c].text,"completed":i[c].completed});
}
}
json.items = tmp;
saveData();
populateHtml();
$('#confirmDeleteModal').modal('toggle');
}
// Not in use, let Bootstrap handle all the tab switching
function changeView(){
if(viewMode === "to-do"){
// Change to completed tasks
$("#content").css("display","none");
$("#contentCompleted").css("display","");
$("#title").html("Completed Tasks");
viewMode = "completed";
} else {
// Change back to to-do tasks
$("#content").css("display","");
$("#contentCompleted").css("display","none");
$("#title").html("To-Do Tasks");
viewMode = "to-do";
}
}
function checkboxChangeState(id) {
var i = json.items;
var tmp = [];
for(var c in i){
if(i[c].id == id){
// if(i[c].completed){
// // Mark as non completed
// tmp.push({"id":i[c].id,"text":text,"completed":false});
// } else {
// // Mark as completed
// tmp.push({"id":i[c].id,"text":text,"completed":true});
// }
// Change completed to opposite value
tmp.push({"id":i[c].id,"text":i[c].text,"completed":!(i[c].completed)});
} else {
tmp.push({"id":i[c].id,"text":i[c].text,"completed":i[c].completed});
}
}
json.items = tmp;
saveData();
$("#item"+id).closest('tr').fadeOut(200);
setTimeout(function () {
populateHtml();
}, 210);
}
// Key press listener
$(document).keypress(function(e) {
// Check if newItemMode enabled, else no values to grab.
if(newItemMode) {
// Enter key
if (e.which == 13) {
//Save item
saveNewItem();
//Disable edit mode
$("#newTaskP").html(newItemModeHtml);
newItemMode = false;
$("#editModeTr").remove();
}
}
});
// Key up listener (Esc doesn't seem to work properly on keyPress
$(document).keyup(function(e) {
// Esc key
if (e.keyCode == 27) {
// Check if newItemMode enabled, else no values to grab.
if(newItemMode) {
$("#newTaskP").html(newItemModeHtml);
newItemMode = false;
$("#editModeTr").remove();
} else if (editMode){
hideEditModal();
}
}
});
// Add listener to the edit task text field so that when Enter
// is pressed, it gets saved instead of adding a new line
$('#modalInput').keypress(function(e){
if(e.keyCode == 13){
$('#modalSave').click();
}
});
// Shortcut key listener
$(document).keypress(function (e) {
// a || n || A || N
if (e.keyCode == 97 || e.keyCode == 110 || e.keyCode == 65 || e.keyCode == 78) {
// Ignore if editing item
if (editMode){
return;
}
// In case user is in Completed tab
if($('.nav-tabs .active').text() == "Completed") {
$('#tabs a[href="#tabToDo"]').tab('show');
// .focus must be delayed till after fade
setTimeout(function () {
$("#editModeInput").focus();
}, 180);
}
if(!newItemMode) {
e.preventDefault(); // To avoid having the letter pressed put into the input field
newItem();
newItemMode = true;
}
}
});
$(document).on('click touchend', '#addItem', function(){
saveNewItem();
$("#newTaskP").html(newItemModeHtml);
newItemMode = false;
});
$(document).on('click touchend', '#cancelItem', function(){
$("#newTaskP").html(newItemModeHtml);
newItemMode = false;
$("#editModeTr").remove();
});
function hideEditModal(){
editMode = false;
$("#editModal").modal('hide');
}