-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathscript.js
More file actions
249 lines (216 loc) · 7.92 KB
/
script.js
File metadata and controls
249 lines (216 loc) · 7.92 KB
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
//getting all the items
const preloader = document.querySelector(".loader");
const addbtn1 = document.querySelector(".btn.list");
const inpfd1 = document.querySelector(".new.list");
const addbtn2 = document.querySelector(".btn.taskbt");
const inpfd2 = document.querySelector(".new.task");
const todoList = document.querySelector(".task_list");
const slist = document.querySelectorAll(".task_list li");
const tododiv = document.querySelector(".todo_list");
const task_title = document.querySelector(".list_title");
const todoTask = document.querySelector(".tasks");
const taskcount = document.querySelector(".task_count");
const cleartask = document.querySelector(".btn.delete.cleartask");
const deletelist = document.querySelector(".btn.delete.clearlist");
const f1 = document.querySelector(".f1");
const f2 = document.querySelector(".f2");
window.addEventListener("load", vanish);
function vanish(){
preloader.classList.add("disappear");
}
let listname,taskname,curListInd;
const listitems = todoList.children;//selects the descendants of ul
const taskitems = todoTask.children;//selects the descendants of task
showlists();//display the tasks
tododiv.style.display = "none";
f1.classList.add("slide");
//for getting input of list name
inpfd1.onkeyup = () =>{
listname = inpfd1.value;
if(listname.length != 0){
addbtn1.classList.add("active");
}
else{
addbtn1.classList.remove("active");
}
}
//for getting input of task name
inpfd2.onkeyup = () =>{
taskname = inpfd2.value;
if(taskname.length != 0){
addbtn2.classList.add("active");
}
else{
addbtn2.classList.remove("active");
}
}
// getting list from local storage
addbtn1.onclick = () => {
let listarr = [];
let getloacallist = localStorage.getItem("Lists");
if(getloacallist == null){
listarr = [];
}else{
listarr = JSON.parse(getloacallist);
}
listarr.push(listname);
localStorage.setItem("Lists", JSON.stringify(listarr));
showlists();
addbtn1.classList.remove("active");
inpfd1.value="";
}
//adding task to local storage
addbtn2.onclick = () => {
let name = task_title.innerHTML;
let getloacaltask = localStorage.getItem(`${name}`);
let taskarr = [];
if(getloacaltask == null){
taskarr = [];
}else{
taskarr = JSON.parse(getloacaltask);
}
taskarr.push(taskname);
localStorage.setItem(`${name}`, JSON.stringify(taskarr));
showtasks(name);
addbtn2.classList.remove("active");
inpfd2.value="";
}
// function to show the list of tasks
function showlists(){
todoList.classList.toggle("fade");
let listarr = [];
let getloacallist = localStorage.getItem("Lists");
if(getloacallist == null){
listarr = [];
}else{
listarr = JSON.parse(getloacallist);
}
let newLiTag='';
listarr.forEach((element,index) => {
newLiTag +=`<li onclick="selectlist(${index})"> ${element} </li>`; // add new li tag to ul
});
todoList.innerHTML= newLiTag;
inpfd1.value="";
}
//choosing the list
function selectlist(index){
f2.classList.toggle("slide");
for (var i=0; i<listitems.length;i++)
{
if(listitems[i].classList.contains("act"))
listitems[i].classList.remove("act");
}
listitems[index].classList.add("act");//using the descendants of ul
// to diplay the todo div
tododiv.style.display="block";
// to display the task title
task_title.innerHTML = `${listitems[index].innerHTML}`;
curListInd = index;
showtasks(task_title.innerHTML);
}
// function to show the tasks
function showtasks(name){
todoTask.classList.toggle("fade");
let taskarr = [];
let getloacaltask = localStorage.getItem(`${name}`);
if(getloacaltask == null){
taskarr = [];
}else{
taskarr = JSON.parse(getloacaltask);
}
//to render the available tasks
let newLiTag='';
taskcount.innerHTML = `${taskarr.length} Task Remaining`;
taskarr.forEach((element) => {
newLiTag +=` <li class="task"><input type="checkbox" name="task-1" onclick="selecttask(this)"/>${element}</li>`; // add new task in the list
});
todoTask.innerHTML= newLiTag;
// to render the completed task
let completedtask = [];
let alltask = localStorage.getItem(`${task_title.innerHTML}comp`);
if(alltask == null){
completedtask = [];
}else{
completedtask = JSON.parse(alltask);
}
completedtask.forEach((element) => {
var li = document.createElement('li');
li.innerHTML =`<input type="checkbox" name="task-1" onclick="selecttask(this)"/>${element}`; // add new task in the list
li.classList.add("task");
li.classList.add("addstroke");
li.firstChild.checked = true;
todoTask.appendChild(li);
});
inpfd2.value="";
}
// task handling when a task is selected
function selecttask(elel){
let taskarr = [];
let getloacaltask = localStorage.getItem(`${task_title.innerHTML}`);
if(getloacaltask == null){
taskarr = [];
}else{
taskarr = JSON.parse(getloacaltask);
}
let completedtask = [];
let alltask = localStorage.getItem(`${task_title.innerHTML}comp`);
if(alltask == null){
completedtask = [];
}else{
completedtask = JSON.parse(alltask);
}
if(!completedtask.includes(elel.parentElement.innerText)){
//adds the element to completedtask
completedtask.push(elel.parentElement.innerText);
localStorage.setItem(`${task_title.innerHTML}comp`, JSON.stringify(completedtask));
//removes from taskarray
taskarr.splice(taskarr.indexOf(elel.parentElement.innerText),1);
localStorage.setItem(`${task_title.innerHTML}`, JSON.stringify(taskarr));
elel.parentElement.classList.add("addstroke");
}
else{
//adds the element to taskarray
taskarr.push(elel.parentElement.innerText);
localStorage.setItem(`${task_title.innerHTML}`, JSON.stringify(taskarr));
//removes from completedtask
completedtask.splice(completedtask.indexOf(elel.parentElement.innerText),1);
localStorage.setItem(`${task_title.innerHTML}comp`, JSON.stringify(completedtask));
elel.parentElement.classList.remove("addstroke");
}
taskcount.innerHTML = `${taskarr.length} Task Remaining`;
}
//deleteing the task
cleartask.onclick = () =>{
let completedtask = [],complete = [];
let alltask = localStorage.getItem(`${task_title.innerHTML}comp`);
if(alltask == null){
completedtask = [];
}else{
completedtask = JSON.parse(alltask);
complete = completedtask;
}
//traverse to find the complted task and remove
completedtask.forEach((cb) =>{
complete.splice(complete.indexOf(cb),1);
});
localStorage.setItem(`${task_title.innerHTML}comp`,JSON.stringify(complete));
showtasks(`${task_title.innerHTML}`);
}
//deleteing the list
deletelist.onclick = () =>{
//removing all its task
localStorage.removeItem(`${task_title.innerHTML}`);
localStorage.removeItem(`${task_title.innerHTML}comp`);
//removing list from local storage
let listarr = [];
let getloacallist = localStorage.getItem("Lists");
if(getloacallist == null){
listarr = [];
}else{
listarr = JSON.parse(getloacallist);
}
listarr.splice(curListInd,1);
localStorage.setItem("Lists", JSON.stringify(listarr));
tododiv.style.display="none";
showlists();
}