-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathscript.js
More file actions
110 lines (80 loc) · 2.68 KB
/
script.js
File metadata and controls
110 lines (80 loc) · 2.68 KB
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
//other variables
var toDoEntryBox = document.getElementById("todo-entry-box");
var toDoList = document.getElementById("todo-list");
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");
}
}
function emptyList() {
var toDoItems = toDoList.children;
while (toDoItems.length > 0) {
toDoItems.item(0).remove();
}
}
//add button code
var addButton = document.getElementById("add-button");
addButton.addEventListener("click", addToDoItem);
function addToDoItem() {
var itemText = toDoEntryBox.value;
//var itemTextTrim = itemText.trim();
//var itemTextLength = itemTextTrim.length();
if(itemText.trim() !== '') {
newToDoItem(itemText, false);
};
};
//add button code
var clearButton = document.getElementById("clear-completed-button");
clearButton.addEventListener("click", clearCompletedToDoItems);
function clearCompletedToDoItems() {
var completedItems = toDoList.getElementsByClassName("completed");
while (completedItems.length > 0) {
completedItems.item(0).remove();
}
}
//empty button code
var emptyButton = document.getElementById("empty-button");
emptyButton.addEventListener("click", emptyList);
function emptyList() {
var toDoItems = toDoList.children;
while (toDoItems.length > 0) {
toDoItems.item(0).remove();
}
}
//save button code
var saveButton = document.getElementById("save-button");
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));
}
function loadList() {
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);
}
}
}
loadList();