-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathscript.js
63 lines (57 loc) · 1.98 KB
/
script.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
// Select The Element
const dateElement = document.getElementById("date");
// Show Today's Date
const options = {weekday:"long", month:"short", day:"numeric"};
const today = new Date();
dateElement.innerHTML = today.toLocaleDateString("en-US", options);
// Selectors
const todoInput = document.querySelector(".todo-input");
const todoButton = document.querySelector(".todo-button");
const todoList = document.querySelector(".todo-list");
// Event Listeners
todoButton.addEventListener("click", addTodo);
todoList.addEventListener("click", deleteCheck);
// Functions
function addTodo(event){
// Prevent Form from submitting
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="fas fa-check"></i>';
completedButton.classList.add("complete-btn");
todoDiv.appendChild(completedButton);
// Check Trash Button
const trashButton = document.createElement('button');
trashButton.innerHTML = '<i class="fas fa-trash"></i>';
trashButton.classList.add("trash-btn");
todoDiv.appendChild(trashButton);
// Append To List (Connect the total div elements to original html list)
todoList.appendChild(todoDiv);
// CLEAR Todo Input Value
todoInput.value = "";
}
function deleteCheck(e) {
const item = e.target;
// DELETE Todo
if (item.classList[0] === "trash-btn") {
const todo = item.parentElement;
// Animation of Falling
todo.classList.add("fall");
todo.addEventListener("transitionend", function() {
todo.remove();
} );
}
// COMPLETE Check Todo
if (item.classList[0] === "complete-btn") {
const todo = item.parentElement;
todo.classList.toggle("completed");
}
}