-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.js
297 lines (256 loc) · 11.4 KB
/
index.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
294
295
296
// grab new lists button
const newListBtn = document.querySelector('#new-list-btn');
// grab task card add button
const addBtn = document.querySelector('#add-btn');
// emojis
const editEmoji = String.fromCodePoint(0x1F58B);
const saveEmoji = String.fromCodePoint(0x1F4CC);
const deleteEmoji = String.fromCodePoint(0x1F5D1);
let isEditing = false;
// event listener on newListBtn to create new lists
newListBtn.addEventListener('click', () => {
// create a div with class task-box
const taskBox = document.createElement('div');
taskBox.classList.add('task-box');
// create filter-container div
const filterContainer = document.createElement('div');
filterContainer.classList.add('filter-container');
// create label for filter button
const filterBtnLabel = document.createElement('label');
filterBtnLabel.setAttribute("for", "filter-btn") ;
filterBtnLabel.textContent = "Hide completed tasks"
// create label with class switch
const switchToggle = document.createElement('label');
switchToggle.classList.add("switch");
// create button type checkbox, id of "filter-btn" and aria-label "Hide completed tasks"
const filterBtn = document.createElement('input');
filterBtn.id = "filter-btn";
filterBtn.type = "checkbox";
filterBtn.ariaLabel = "Hide complete tasks";
// create span with class "slider round"
const span = document.createElement('span');
span.classList.add('slider');
span.classList.add('round');
// append input and span to label
switchToggle.append(filterBtn, span);
// append filter button label and switch toggle label to filter container
filterContainer.append(filterBtnLabel, switchToggle);
// create a form
const form = document.createElement('form');
// create input with id of task, type text and placeholder "add a task"
const userInput = document.createElement('input');
userInput.id = "task";
userInput.type = "text";
userInput.placeholder = "Add a task";
userInput.setAttribute('required', true);
userInput.setAttribute('aria-label', 'Add a task')
// button with id of add-btn and type submit, aria label "Add tasks"
const addBtn = document.createElement('button');
addBtn.id = "add-btn";
addBtn.type = "submit";
addBtn.ariaLabel = "Add tasks";
// create icon with class "far fa-plus-square"
const plusIcon = document.createElement('i');
plusIcon.classList.add("far");
plusIcon.classList.add("fa-plus-square");
// append icon to button
addBtn.append(plusIcon);
// append input and button to form
form.append(userInput, addBtn);
// create output with id of result
const output = document.createElement('output');
output.id = "result";
// append label and output to the task box
taskBox.append(filterContainer, form, output);
// append to container
const tasksContainer = document.querySelector('.flex-container');
tasksContainer.append(taskBox);
// event listener for creating new task cards
addBtn.addEventListener('click', (e) => {
// if user has entered a value, create a new task
if(userInput.value !== "" && userInput.value !== new RegExp("/^\s+$/")) {
e.preventDefault();
// create a div with a class of task-card
const taskCard = document.createElement('div');
taskCard.classList.add('task-card');
// create an input with class task-new
const taskNew = document.createElement('input');
taskNew.classList.add('task-new');
taskNew.value = userInput.value;
taskNew.setAttribute('readonly', 'readonly');
// set checkboxes to appear once task has been added
const checkbox = document.createElement("input");
checkbox.type = 'checkbox';
checkbox.id = 'checkbox';
taskCard.prepend(checkbox);
// once a user clicks the checkbox is ticked, task card gets a "completed task" class
checkbox.addEventListener('click', () => {
if(checkbox.checked) {
taskCard.classList.add("completed-task")
} else {
taskCard.classList.remove("completed-task")
}
})
// create a div with class controls
const controls = document.createElement('div');
controls.classList.add('controls');
// create edit button with class edit-btn
const editBtn = document.createElement('button');
editBtn.innerHTML = 'Edit' + editEmoji;
editBtn.ariaLabel = "Edit";
// assign delete button with class delete-btn
const deleteBtn = document.createElement('button');
deleteBtn.innerHTML = 'Delete' + deleteEmoji;
deleteBtn.ariaLabel = "Delete";
// append buttons to controls
controls.append(editBtn, deleteBtn);
// append controls to task card
taskCard.append(taskNew, controls);
// append the taskCard to the output
output.append(taskCard);
// clear the user input field
userInput.value = "";
// event listener for edit button
editBtn.addEventListener('click', () => {
// enter edit node
if (!isEditing) {
isEditing = true;
// change button to save emoji
editBtn.innerHTML = 'Save' + saveEmoji;
// enable input editing
taskNew.removeAttribute('readonly');
// focus on input in edit mode
taskNew.focus();
console.log('edit mode');
} else {
// save task
isEditing = false;
// make new input value readonly
taskNew.setAttribute('readonly', 'readonly');
// reset button to edit emoji
editBtn.innerHTML = 'Edit' + editEmoji
console.log('saved');
}
})
// event listener for delete button
// increment deletedTasks for testing purposes
// hide task card
deleteBtn.addEventListener('click', () => {
taskCard.style.display = "none";
})
// flag to control hiding and revealing completed tasks
let isHidden = false;
// event listener for filter button
filterBtn.addEventListener('click', () => {
const completedTasks = output.querySelectorAll('.completed-task');
console.log(completedTasks);
console.log(isHidden)
// if tasks are not hidden - hide them
if (!isHidden) {
isHidden = true;
completedTasks.forEach(task => task.style.display = "none");
} else {
// if tasks are hidden - reveal them
isHidden = false;
completedTasks.forEach(task => task.style.display = "flex");
}
})
}
})
})
// add event listener to addButton inside the first task-box in HTML
addBtn.addEventListener('click', (e) => {
// get value of task from input
let userInput = document.querySelector('input#task');
// if user has entered a value, create a new task
if(userInput.value !== "" && userInput.value !== new RegExp("/^\s+$/")) {
e.preventDefault();
// create a div with a class of task-card
const taskCard = document.createElement('div');
taskCard.classList.add('task-card');
// create an input with class task-new
const taskNew = document.createElement('input');
taskNew.classList.add('task-new');
taskNew.value = userInput.value;
taskNew.setAttribute('readonly', 'readonly');
// set checkboxes to appear once task has been added
const checkbox = document.createElement("input");
//checkbox.innerHTML = String.fromCodePoint(0x2705)
checkbox.type = 'checkbox';
checkbox.id = 'checkbox';
taskCard.prepend(checkbox);
// once a user clicks the checkbox is ticked
checkbox.addEventListener('click', () => {
if(checkbox.checked) {
taskCard.classList.add("completed-task")
} else {
taskCard.classList.remove("completed-task")
}
})
// create a div with class controls
const controls = document.createElement('div');
controls.classList.add('controls');
// create edit button with class edit-btn
const editBtn = document.createElement('button');
editBtn.innerHTML = 'Edit' + editEmoji;
editBtn.ariaLabel = "Edit";
// assign delete button with class delete-btn
const deleteBtn = document.createElement('button');
deleteBtn.innerHTML = 'Delete' + deleteEmoji;
deleteBtn.ariaLabel = "Delete";
// append buttons to controls
controls.append(editBtn, deleteBtn);
// append controls to task card
taskCard.append(taskNew, controls);
const taskList = document.querySelector('#result');
taskList.append(taskCard);
// clear the user input field
userInput.value = "";
// event listener for edit button
editBtn.addEventListener('click', () => {
// enter edit node
if (!isEditing) {
isEditing = true;
// change button to save emoji
editBtn.innerHTML = 'Save' + saveEmoji;
// set aria-label to 'Save'
editBtn.setAttribute('aria-label', 'Save');
// enable input editing
taskNew.removeAttribute('readonly');
// focus on input in edit mode
taskNew.focus();
} else {
// save task
isEditing = false;
// reset button to edit emoji
editBtn.innerHTML = 'Edit' + editEmoji;
// reset aria-label to 'Edit'
editBtn.setAttribute('aria-label', 'Edit');
// make new input value readonly
taskNew.setAttribute('readonly', 'readonly');
}
})
// event listener for delete button
// increment deletedTasks for testing purposes
// hide task card
deleteBtn.addEventListener('click', () => {
taskCard.style.display = "none";
})
// grab filter toggle-switch
const filterBtn = document.querySelector('#filter-btn');
// flag to control hiding and revealing completed tasks
let isHidden = false;
filterBtn.addEventListener('click', () => {
const completedTasks = taskList.querySelectorAll('.completed-task');
// if tasks are not hidden - hide them
if (!isHidden) {
isHidden = true;
completedTasks.forEach(task => task.style.display = "none");
} else {
// if tasks are hidden - reveal them
isHidden = false;
completedTasks.forEach(task => task.style.display = "flex");
}
})
}
})