-
Notifications
You must be signed in to change notification settings - Fork 0
/
app.js
66 lines (54 loc) · 2.29 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
let inputItem = document.getElementById('task');
const ulDOM = document.getElementById('list');
let allLiDOM = document.querySelectorAll("li");
function removeElement(erase) {
erase.remove();
eraseStrorage(erase);
}
function markElement(){
this.classList.toggle("checked");
}
let closeButton = `<button
onclick="removeElement(parentNode)"
style="padding: 13px;" type="button"
class="close"
data-dismiss="toast"
aria-label="Close">
<span aria-hidden="true">×</span>
</button>`
allLiDOM.forEach(e => {
e.addEventListener("click", markElement);
e.innerHTML += `${closeButton}`;
})
function newElement(){
if(inputItem.value.trim() != ""){
let liDOM = document.createElement('li');
liDOM.innerHTML = `${inputItem.value}${closeButton}`;
liDOM.addEventListener("click", markElement);
ulDOM.appendChild(liDOM);
$('.success').toast("show");
setStrorage();
inputItem.value = '';
}
else{
$('.error').toast("show");
}
}
let toDoList = JSON.parse(localStorage.getItem("toDoList"));
toDoList = [];
localStorage.setItem("toDoList", JSON.stringify(toDoList));
function setStrorage(){
let toDoList = JSON.parse(localStorage.getItem("toDoList")); // toDoList ls'sini array'a çevirip olarak çağırdık.
toDoList.push(`${inputItem.value}`); // input'a girdiğimiz yazıyı toDoList array'ine ekledik.
localStorage.setItem("toDoList", JSON.stringify(toDoList)); // toDoList'i tekrar string'e çevirip ls'ye yolladık.
}
function eraseStrorage(erase){
let toDoList = JSON.parse(localStorage.getItem("toDoList")); // toDoList ls'sini array'a çevirip olarak çağırdık.
if (toDoList.includes(erase.firstChild.textContent) == true) { // toDoList array'i listeye yazdığımız metini içeriyorsa
let indexbul = toDoList.findIndex(e => // Bu metinin(array'in elemanı) index nosunu buluyoruz.
e == erase.firstChild.textContent
);
toDoList.splice(indexbul, 1); // index nosundan kendisini bulup array'den siliyoruz.
localStorage.setItem("toDoList", JSON.stringify(toDoList)); // toDoList'i tekrar string'e çevirip ls'ye yolladık.
}
}