-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathapp.js
112 lines (92 loc) · 3.19 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
//All my selectors goes here:
const todoInput = document.querySelector(".todo-input");
const todoButton = document.querySelector(".todo-button");
const todoList = document.querySelector(".todo-list");
const filterOption = document.querySelector(".filter-todo");
const dateElement = document.getElementById('date');
//Event Listeners:
todoButton.addEventListener("click", addTodo);
// todoList.addEventListener('click', editList);
todoList.addEventListener('click', deleteCheck);
filterOption.addEventListener('click', filterTodo);
//SHOW DATE
let options = {weekday: "long", month: "short", day:"numeric"};
let today = new Date();
dateElement.innerHTML = today.toLocaleDateString("en-Us", options);
//FUNCTIONS:
//A function to Add a new Todo List
function addTodo(event) {
//To prevent the form from submitting we do
event.preventDefault();
//Todo Div
const todoDiv = document.createElement("div");
todoDiv.classList.add("todo");
//create Li
const newTodo = document.createElement('li');
newTodo.innerText = todoInput.value;
newTodo.classList.add('todo-item');
todoDiv.appendChild(newTodo);
//Check mark button
const completedButton = document.createElement('button');
completedButton.innerHTML = '<i class="fa fa-check"></i>';
completedButton.classList.add("complete-btn");
todoDiv.appendChild(completedButton);
//Edit button
const editButton = document.createElement('button');
editButton.innerHTML = '<i class="fa fa-edit" title="Edit"></i>'
editButton.classList.add('edit-btn');
todoDiv.appendChild(editButton);
//Check trash button
const trashButton = document.createElement('button');
trashButton.innerHTML = '<i class="fa fa-trash"></i>';
trashButton.classList.add("trash-btn");
todoDiv.appendChild(trashButton);
//Validating input
let inputValue = todoInput.value;
if (inputValue === '') {
alert('Please enter a todo!');
return;
}
//But if There is a value in the input,
todoList.appendChild(todoDiv);
//Clear Todo Input value
todoInput.value = "";
};
//A function to Delete an added Todo List
function deleteCheck(e){
const item = e.target;
//Delete TODO
if (item.classList[0] === "trash-btn"){
const todo = item.parentElement;
todo.remove();
};
//CHECK MARK BTN
if (item.classList[0] === "complete-btn"){
const todo = item.parentElement;
todo.classList.toggle('completed');
}
};
function filterTodo(e){
const todos = todoList.childNodes;
todos.forEach( (todo) => {
switch(e.target.value){
case "all":
todo.style.display = 'flex';
break;
case "completed":
if(todo.classList.contains('completed')){
todo.style.display = 'flex';
}else{
todo.style.display = 'none';
}
break;
case "uncompleted":
if(!todo.classList.contains('completed')){
todo.style.display = 'flex';
}else{
todo.style.display = 'none';
}
break;
}
});
};