generated from codersforcauses/todo-app-vanilla
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtodo-app.js
88 lines (77 loc) · 2.57 KB
/
todo-app.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
var addButton = document.getElementById("add-button");
var clearCompletedButton = document.getElementById("clear-completed-button");
var emptyListButton = document.getElementById("empty-button");
var saveButton = document.getElementById("save-button");
var loadButton = document.getElementById("load-button")
var toDoEntryBox = document.getElementById("todo-entry-box");
var toDoList = document.getElementById("todo-list");
var toDoInfo = {
"task": "Thing I need to do",
"completed": false
}
addButton.addEventListener("click", addToDoItem);
function addToDoItem(){
var itemText = toDoEntryBox.value;
newToDoItem(itemText, false);
// alert("Add button pressed");
}
clearCompletedButton.addEventListener("click", clearCompletedToDoItems);
function clearCompletedToDoItems(){
var completedItems = toDoList.getElementsByClassName("completed");
while (completedItems.length > 0){
completedItems.item(0).remove();
}
// alert("Clear button pressed");
}
emptyListButton.addEventListener("click", emptyList);
function emptyList(){
var toDoItems = toDoList.children;
while (toDoItems.length > 0){
toDoItems.item(0).remove();
}
// alert("Empty list button pressed");
}
saveButton.addEventListener("click", saveList);
function saveList(){
var toDos = [];
for(var i = 0; i < toDoList.children.length; i++){
var toDo = toDoList.children.item(i);
var toDoInfo = {
"task": toDo.innerText,
"completed": toDo.classList.contains("completed")
}
toDos.push(toDoInfo);
}
localStorage.setItem("toDos", JSON.stringify(toDos));
alert("Save list button pressed");
}
loadButton.addEventListener("click", loadList);
function loadList(){
if(toDoList.children.length > 0){
emptyList();
}
if(localStorage.getItem("toDos") != null){
var toDos = JSON.parse(localStorage.getItem("toDos"));
for(var i = 0; i < toDos.length; i++){
var toDo = toDos[i];
newToDoItem(toDo.task, toDo.completed);
}
}
}
function newToDoItem(itemText, completed){
var toDoItem = document.createElement("li");
var toDoText = document.createTextNode(itemText);
toDoItem.appendChild(toDoText);
if (completed) {
toDoItem.classList.add("Completed");
}
toDoList.appendChild(toDoItem);
toDoItem.addEventListener("dblclick", toggleToDoItemState);
}
function toggleToDoItemState(){
if(this.classList.contains("completed")){
this.classList.remove("completed");
} else {
this.classList.add("completed");
}
}