-
Notifications
You must be signed in to change notification settings - Fork 0
/
app_localStorage.js
99 lines (83 loc) · 3.03 KB
/
app_localStorage.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
//* ======================================================
//* TODO APP
//* ======================================================
//? Selectors
const btn = document.getElementById("todo-button");
const todoInput = document.getElementById("todo-input");
const todoUl = document.getElementById("todo-ul");
let todos = JSON.parse(localStorage.getItem("todos")) || [];
renderSavedTodos();
function renderSavedTodos() {
todos.forEach((todo) => {
createListElement(todo);
});
}
function createListElement(todo) {
//? her bir todo objesini destructure yaptık
const { id, content, isDone } = todo;
todoUl.innerHTML += `
<li id=${id} class=${isDone ? "checked" : ""} >
<i class="fa fa-check"></i>
<p>${content}</p>
<i class="fa fa-trash"></i>
</li>`;
}
//? Baslangicta input aktif olsun
window.onload = function () {
todoInput.focus();
};
//? Add Buton Event'inin tanimanmasi
btn.addEventListener("click", () => {
if (!todoInput.value) {
alert("Please enter your todo");
} else {
const todoObject = {
id: new Date().getTime(),
isDone: false,
content: todoInput.value,
};
//?Yeni olsuturulan todo'yu diziye sakla
todos.push(todoObject);
//?todos dizisinin son halini localStorage'e sakla
localStorage.setItem("todos", JSON.stringify(todos));
createListElement(todoObject);
todoInput.value = "";
}
});
//? Klavyeden enter tusuna basilmasi ile add butonunun click fonksiyonunun cagrilmasi
todoInput.addEventListener("keydown", (e) => {
if (e.key === "Enter") {
btn.click();
}
});
//? delete ve ok butonları için event tanimlamasi
todoUl.addEventListener("click", (e) => {
const id = e.target.parentElement.getAttribute("id");
//!Event, sil butonlarının birisinden geldi ise
if (e.target.classList.contains("fa-trash")) {
//? Dizinin ilgili elementini sildi
todos = todos.filter((todo) => todo.id != id);
//?todos dizisinin son halini localStorage'e sakla
localStorage.setItem("todos", JSON.stringify(todos));
//?DOM'daki ilgili li elementini sil
e.target.parentElement.remove();
}
//!Event, silme veya ok butonlarından geldi ise
if (e.target.classList.contains("fa-check")) {
// todos dizisindeki ilgili elementin isDone kismini güncelle
todos.map((todo, index) => {
if (todo.id == id) {
todos[index].isDone = !todos[index].isDone;
}
});
//?todos dizisinin son halini localStorage'e sakla
localStorage.setItem("todos", JSON.stringify(todos));
//? ilgili li elementinde checked adinda bir class varsa bunu sil (DOM)
if (e.target.parentElement.classList.contains("checked")) {
e.target.parentElement.classList.remove("checked");
} else {
//? ilgili li elementinde checked adinda bir class yoksa ekle
e.target.parentElement.classList.add("checked");
}
}
});