-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtodo.js
44 lines (36 loc) · 995 Bytes
/
todo.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
const todoList = () => {
all = [];
const add = (todoItem) => {
all.push(todoItem);
};
const markAsComplete = (index) => {
all[index].completed = true;
};
let today = new Date().toLocaleDateString("en-CA");
const overdue = () => {
return all.filter((item) => item.dueDate < today);
};
const dueToday = () => {
return all.filter((item) => item.dueDate === today);
};
const dueLater = () => {
return all.filter((item) => item.dueDate > today);
};
const toDisplayableList = (list) =>{
return list.map((list)=>{
const complttionStatus = item.completed ? "[x]" : "";
const displayedDate = item.dueDate === new Date().toLocaleDateString("en-CA") ? "" : item.dueDate;
return `${complttionStatus} ${item.title} ${displayedDate}`
} )
}
return {
all,
add,
markAsComplete,
overdue,
dueToday,
dueLater,
toDisplayableList,
};
};
module.exports = todoList;