-
-
Notifications
You must be signed in to change notification settings - Fork 2.9k
Expand file tree
/
Copy pathfake-http.service.ts
More file actions
60 lines (57 loc) · 1.49 KB
/
Copy pathfake-http.service.ts
File metadata and controls
60 lines (57 loc) · 1.49 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
import { HttpClient } from '@angular/common/http';
import { inject, Injectable, signal } from '@angular/core';
import { randText } from '@ngneat/falso';
import { TODO } from '../model/todo.model';
@Injectable({
providedIn: 'root',
})
export class FakeHttpService {
private http = inject(HttpClient);
todoSignal = signal<TODO[]>([]);
getAllTodos() {
this.http
.get<TODO[]>('https://jsonplaceholder.typicode.com/todos')
.subscribe({
next: (todosResponse: TODO[]) => {
this.todoSignal.set(todosResponse);
},
error: (err) => {
console.error('Failed to load todos:', err);
},
});
}
updateTodo(todo: TODO) {
this.http
.put<TODO>(
`https://jsonplaceholder.typicode.com/todos/${todo.id}`,
{
...todo,
title: randText(),
},
{
headers: {
'Content-type': 'application/json; charset=UTF-8',
},
},
)
.subscribe({
next: (updated) => {
this.todoSignal.update((todos) =>
todos.map((t) => (t.id === updated.id ? updated : t)),
);
},
error: (err) => {
console.error('Failed to load todos:', err);
},
});
}
deleteTodo(todo: TODO) {
this.http
.delete<TODO>(`https://jsonplaceholder.typicode.com/todos/${todo.id}`)
.subscribe(() =>
this.todoSignal.update((todos) =>
todos.filter((t) => t.id !== todo.id),
),
);
}
}