-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdb.ts
48 lines (38 loc) · 1.1 KB
/
db.ts
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
import { v4 } from "uuid";
export interface TodoRequest {
state: 'done' | 'ongoing';
text: string;
}
export type Todo = { id: string; } & TodoRequest;
export class DB {
private todos = new Map<string, Todo>();
constructor(...ts: Todo[]) {
ts.forEach((t) => this.todos.set(t.id, t));
}
getTodo(id: string) : Todo | undefined {
const todo = this.todos.get(id);
return !!todo ? { ...todo } as Todo : undefined;
}
delete(id: string) {
return this.todos.delete(id)
}
updateTodo(id: string, td: Partial<TodoRequest>) {
const todo = this.getTodo(id);
if (todo === undefined) {
return undefined;
}
this.todos.set(id, { ...todo, ...td} as Todo);
return this.getTodo(id);
}
addTodo(t: TodoRequest): Todo {
const todo: Todo = {
id: v4(),
...t,
}
this.todos.set(todo.id, todo);
return todo;
}
getAll(state: string | undefined): Todo[] {
return [...this.todos.values()].filter((t) => !state || t.state === state);
}
}