-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.js
127 lines (111 loc) · 3.16 KB
/
index.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
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
const todoList = () => {
all = [];
const add = (todoItem) => {
all.push(todoItem);
};
const markAsComplete = (index) => {
all[index].completed = true;
};
const overdue = () => {
over = [];
for (let i = 0; i < all.length; i++) {
if (Object.values(all[i])[1] === yesterday) {
over.push(all[i]);
}
}
return over;
};
const dueToday = () => {
duet = [];
for (let i = 0; i < all.length; i++) {
if (Object.values(all[i])[1] === today) {
duet.push(all[i]);
}
}
return duet;
};
const dueLater = () => {
duel = [];
for (let i = 0; i < all.length; i++) {
if (Object.values(all[i])[1] === tomorrow) {
duel.push(all[i]);
}
}
return duel;
};
const toDisplayableList = (l) => {
a = "";
for (let i = 0; i < l.length; i++) {
if (Object.values(l[i])[1] === today) {
if (Object.values(l[i])[2] === true) {
a += "[" + "x] " + Object.values(l[i])[0] + "\n";
} else {
a += "[ ] " + Object.values(l[i])[0] + " " + "\n";
}
} else {
if (Object.values(l[i])[2] === true) {
a +=
"[" +
"x] " +
Object.values(l[i])[0] +
" " +
Object.values(l[i])[1] +
"\n";
} else {
a +=
"[ ] " +
Object.values(l[i])[0] +
" " +
Object.values(l[i])[1] +
"\n";
}
}
}
return a;
};
return {
all,
add,
markAsComplete,
overdue,
dueToday,
dueLater,
toDisplayableList,
};
};
// ####################################### #
// DO NOT CHANGE ANYTHING BELOW THIS LINE. #
// ####################################### #
const todos = todoList();
const formattedDate = (d) => {
return d.toISOString().split("T")[0];
};
var dateToday = new Date();
const today = formattedDate(dateToday);
const yesterday = formattedDate(
new Date(new Date().setDate(dateToday.getDate() - 1))
);
const tomorrow = formattedDate(
new Date(new Date().setDate(dateToday.getDate() + 1))
);
todos.add({ title: "Submit assignment", dueDate: yesterday, completed: false });
todos.add({ title: "Pay rent", dueDate: today, completed: true });
todos.add({ title: "Service Vehicle", dueDate: today, completed: false });
todos.add({ title: "File taxes", dueDate: tomorrow, completed: false });
todos.add({ title: "Pay electric bill", dueDate: tomorrow, completed: false });
console.log("My Todo-list\n\n");
console.log("Overdue");
var overdues = todos.overdue();
var formattedOverdues = todos.toDisplayableList(overdues);
console.log(formattedOverdues);
console.log("\n");
console.log("Due Today");
let itemsDueToday = todos.dueToday();
let formattedItemsDueToday = todos.toDisplayableList(itemsDueToday);
console.log(formattedItemsDueToday);
console.log("\n");
console.log("Due Later");
let itemsDueLater = todos.dueLater();
let formattedItemsDueLater = todos.toDisplayableList(itemsDueLater);
console.log(formattedItemsDueLater);
console.log("\n");