-
Notifications
You must be signed in to change notification settings - Fork 1
/
controller.js
72 lines (65 loc) · 2.01 KB
/
controller.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
// controller.js
// Logic behind the functionalities
const data = require("./data");
class Controller {
// getting all todos
async getTodos() {
// return all todos
return new Promise((resolve, _) => resolve(data));
}
// getting a single todo
async getTodo(id) {
return new Promise((resolve, reject) => {
// get the todo
let todo = data.find((todo) => todo.id === parseInt(id));
if (todo) {
// return the todo
resolve(todo);
} else {
// return an error
reject(`Todo with id ${id} not found `);
}
});
}
// creating a todo
async createTodo(todo) {
return new Promise((resolve, _) => {
// create a todo, with random id and data sent
let newTodo = {
id: Math.floor(4 + Math.random() * 10),
...todo,
};
// return the new created todo
resolve(newTodo);
});
}
// updating a todo
async updateTodo(id) {
return new Promise((resolve, reject) => {
// get the todo.
let todo = data.find((todo) => todo.id === parseInt(id));
// if no todo, return an error
if (!todo) {
reject(`No todo with id ${id} found`);
}
//else, update it by setting completed to true
todo["completed"] = true;
// return the updated todo
resolve(todo);
});
}
// deleting a todo
async deleteTodo(id) {
return new Promise((resolve, reject) => {
// get the todo
let todo = data.find((todo) => todo.id === parseInt(id));
// if no todo, return an error
if (!todo) {
reject(`No todo with id ${id} found`);
}
// else, return a success message
resolve(`Todo deleted successfully`);
});
}
}
module.exports = Controller;