-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathapp.js
205 lines (164 loc) · 5.18 KB
/
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
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
// Define UI Varaibles
// NOte: Use # for Ids and . for class references
const form = document.querySelector('#task-form');
const taskList = document.querySelector('.collection');
const clearBtn = document.querySelector('.clear-tasks');
const filter = document.querySelector('#filter');
const taskInput = document.querySelector('#task');
// Load all event listeners
loadEventListners();
// Load event Listners
function loadEventListners(){
// DOM Load event
document.addEventListener('DOMContentLoaded', getTasks);
// Add Task form
form.addEventListener('submit',addTask);
// Remove task from form
taskList.addEventListener('click',removeTask);
// Clear Tasks
clearBtn.addEventListener('click',clearTasks);
// Filter Task
filter.addEventListener('keyup',filterTasks);
}
// Display tasks from local storage
function getTasks() {
// Check Local Storage and put it into an array
let tasks;
if(localStorage.getItem('tasks')===null){
tasks = [];
} else {
// Parse into JSON because local storage only stores in as a string type
tasks = JSON.parse(localStorage.getItem('tasks'));
}
// Loop through tasks
tasks.forEach(function(task){
// Create Li element
const li = document.createElement('li');
// Add class to element
li.className='collection-item';
// Create text node to append to li
li.appendChild(document.createTextNode(task));
// Create new link element
const link = document.createElement('a');
// Add class name
link.className='delete-item secondary-content';
// Add icon HTML
link.innerHTML= '<i class="fa fa-remove"></i>';
// Append the link to li
li.appendChild(link);
// Append li to ul
// console.log(li);
taskList.appendChild(li);
});
}
// Add Task
function addTask(e){
const taskVal = taskInput.value.trim()
// If nothing is entered then do an alerts
if(taskVal ==='') {
alert('Add a Task');
}
// *** Create Element ***
// Create Li element
const li = document.createElement('li');
// Add class to element
li.className='collection-item';
// Create text node to append to li
li.appendChild(document.createTextNode(taskVal));
// Create new link element
const link = document.createElement('a');
// Add class name
link.className='delete-item secondary-content';
// Add icon HTML
link.innerHTML= '<i class="fa fa-remove"></i>';
// Append the link to li
li.appendChild(link);
// Append li to ul
// console.log(li);
taskList.appendChild(li);
// Store in Local Storage
storeTaskInLocalStorage(taskVal);
// Clear Input
taskInput.value='';
// Keep the behavior from happening
e.preventDefault();
}
// FUNCTIONS
function storeTaskInLocalStorage(task){
// Check Local Storage and put it into an array
let tasks;
if(localStorage.getItem('tasks')===null){
tasks = [];
} else {
// Parse into JSON because local storage only stores in as a string type
tasks = JSON.parse(localStorage.getItem('tasks'));
}
// Add task to the tasks array (which is a JSON object)
tasks.push(task);
// Set Item back to local storage
// Note: need to change the value from the Array in a JSON format to a string format for localStorage
localStorage.setItem('tasks',JSON.stringify(tasks));
}
function removeTask(e) {
if(e.target.parentElement.classList.contains ('delete-item')){
// console.log(e.target.parentElement.parentElement);
if(confirm('Are you sure? You want to delete')) {
e.target.parentElement.parentElement.remove();
// Remove from local storage
removeTaskFromLocalStorage(e.target.parentElement.parentElement);
}
}
}
// Remove task from local storage
function removeTaskFromLocalStorage(taskItem){
// Check Local Storage and put it into an array
let tasks;
if(localStorage.getItem('tasks')===null){
tasks = [];
} else {
// Parse into JSON because local storage only stores in as a string type
tasks = JSON.parse(localStorage.getItem('tasks'));
}
// Look through the tasks
tasks.forEach(function(task,index){
if(taskItem.textContent===task){
tasks.splice(index,1);
}
localStorage.setItem('tasks', JSON.stringify(tasks));
});
}
// Clear Tasks
function clearTasks(e) {
// // Use innerHTML to clear tasks
// taskList.innerHTML='';
// Faster method per - https://jsperf.com/innerhtml-vs-removechild
while(taskList.firstChild){
taskList.removeChild(taskList.firstChild);
}
// Clear tasks form local storage
clearTasksFromLocalStorage();
}
// Function Clear Tasks from Local Storage
function clearTasksFromLocalStorage(){
localStorage.clear();
}
function filterTasks (e){
// Text that is being typed in the filter box
const text = e.target.value.toLowerCase();
// console.log('Text '+ text);
// Query selector all returns all list items
document.querySelectorAll('.collection-item').forEach
(
function(task){
// Get text content of first child
const item = task.firstChild.textContent;
// console.log('Item '+item)
// No match equal -1. So if not -1 then
if(item.toLowerCase().indexOf(text) != -1){
task.style.display='block';
} else {
task.style.display='none';
}
}
);
}