-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathc.js
More file actions
157 lines (81 loc) · 2.48 KB
/
Copy pathc.js
File metadata and controls
157 lines (81 loc) · 2.48 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
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
const addButton= document.getElementById('add-button');
addButton.addEventListener('click', addTodoItem);
function addTodoItem(){
}
const clearButton =document.getElementById('clear-completed-button');
clearButton.addEventListener('click', clearTodoItem);
function clearTodoItem(){
}
const emptyButton= document.getElementById('empty-button');
emptyButton.addEventListener('click', emptyTodo);
function emptyTodo(){
}
const saveButton=document.getElementById('save-button');
saveButton.addEventListener('click', saveTodo);
function saveTodo(){
}
const todoEntryBox= document.getElementById('todo-entry-box');
const toDoList=document.getElementById('todo-list');
function newTodoItem(itemText, completed){
let todoItem = document.createElement('li');
let toDoText=document.createTextNode(itemText);
todoItem.appendChild(toDoText);
if(completed){
todoItem.classList.add('completed');
}
toDoList.appendChild(todoItem);
todoItem.addEventListener('dblclick', toggleTodo);
}
function addTodoItem(){
let itemText=todoEntryBox.value;
newTodoItem(itemText, false)
}
function toggleToDoItemState() {
if (this.classList.contains("completed")) {
this.classList.remove("completed");
} else {
this.classList.add("completed");
}
}
function clearCompletedToDoItems() {
var completedItems = toDoList.getElementsByClassName("completed");
while (completedItems.length > 0) {
completedItems.item(0).remove();
}
}
function emptyList() {
let toDoItems = toDoList.children;
while (toDoItems.length > 0) {
toDoItems.item(0).remove();
}
}
let myArray = [];
myArray.push("something to store");
myArray.push("something else to store");
alert(myArray[0]);
let toDoInfo = {
"task": "Thing I need to do",
"completed": false
};
function saveList() {
let toDos = [];
for (let i = 0; i < toDoList.children.length; i++) {
let toDo = toDoList.children.item(i);
let 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) {
let toDos = JSON.parse(localStorage.getItem("toDos"));
for (let i = 0; i < toDos.length; i++) {
let toDo = toDos[i];
newToDoItem(toDo.task, toDo.completed);
}
}
}
loadList();