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
|
import {Component, EventEmitter, Input, OnChanges, Output} from '@angular/core';
import {GoalType, Need} from '../../models/Need';
import {CupboardService} from '../../services/cupboard.service';
import {catchError, of} from 'rxjs';
import {ToastsService, ToastType} from '../../services/toasts.service';
import {ModalService} from '../../services/modal.service';
import {Router} from '@angular/router';
@Component({
selector: 'app-need-edit',
standalone: false,
templateUrl: './need-edit.component.html',
styleUrl: './need-edit.component.css'
})
export class NeedEditComponent implements OnChanges {
@Input() mode!: "Create" | "Edit"
@Input() need?: Need;
@Output() refreshNeedList = new EventEmitter<void>();
needCopy: any = {}
constructor(
private cupboardService: CupboardService,
private toastService: ToastsService,
protected modalService: ModalService,
private router: Router
) {}
ngOnChanges() {
this.needCopy = {...this.need}
}
submit(form: any) {
const need: Need = {
name: form.name,
image: form.image,
location: form.location,
id: this.needCopy.id, //system will control this
maxGoal: form.maxGoal,
type: GoalType[form.type as keyof typeof GoalType],
urgent: form.urgent,
filterAttributes: [],
current: 0,
description: form.description
};
if (this.mode == "Edit") {
this.updateNeed(need)
} else if (this.mode === 'Create') {
this.createNeed(need)
}
}
updateNeed(need: Need) {
this.cupboardService.updateNeed(need.id, need)
.pipe(catchError((ex, _) => {
if (ex.status == 500) {
this.toastService.sendToast(ToastType.ERROR, 'Fields cannot be blank');
} else if (ex.status == 400) {
this.toastService.sendToast(ToastType.ERROR, ex.error);
} else {
this.toastService.sendToast(ToastType.ERROR, "Error on creating need");
}
return of()
}))
.subscribe(
(result) => {
if (result) {
let action = {label: 'View Need', onAction: () => this.router.navigate([`/need/${need.id}`])}
this.toastService.sendToast(ToastType.INFO, "Need updated successfully", action)
this.modalService.hideModal()
console.log("need updated successfully");
this.refreshNeedList.emit();
} else {
console.log("need update failed");
}
}
);
}
createNeed(need: Need) {
this.cupboardService.createNeed(need)
.pipe(catchError((ex, _) => {
if (ex.status == 500) {
this.toastService.sendToast(ToastType.ERROR, "Fields cannot be blank");
} else if (ex.status == 400) {
this.toastService.sendToast(ToastType.ERROR, ex.error);
} else {
this.toastService.sendToast(ToastType.ERROR, "Error on creating need");
}
return of()
}))
.subscribe(
(result) => {
if (result) {
let action = {label: 'View Need', onAction: () => this.router.navigate([`/need/${result.id}`])}
this.toastService.sendToast(ToastType.INFO, "Need created successfully", action)
this.modalService.hideModal()
console.log("need created successfully");
this.refreshNeedList.emit();
} else {
console.log("need creation failed");
}
}
);
}
}
|