aboutsummaryrefslogtreecommitdiff
path: root/ufund-ui/src/app/components/funding-basket/funding-basket.component.ts
diff options
context:
space:
mode:
Diffstat (limited to 'ufund-ui/src/app/components/funding-basket/funding-basket.component.ts')
-rw-r--r--ufund-ui/src/app/components/funding-basket/funding-basket.component.ts96
1 files changed, 41 insertions, 55 deletions
diff --git a/ufund-ui/src/app/components/funding-basket/funding-basket.component.ts b/ufund-ui/src/app/components/funding-basket/funding-basket.component.ts
index 847baee..78ce958 100644
--- a/ufund-ui/src/app/components/funding-basket/funding-basket.component.ts
+++ b/ufund-ui/src/app/components/funding-basket/funding-basket.component.ts
@@ -2,9 +2,11 @@ import {Component, Input, OnInit, ViewChild} from '@angular/core';
import {UsersService} from '../../services/users.service';
import {Router} from '@angular/router';
import {CupboardService} from '../../services/cupboard.service';
-import {catchError, firstValueFrom, Observable} from 'rxjs';
+import {BehaviorSubject, firstValueFrom, of} from 'rxjs';
import {AuthService} from '../../services/auth.service';
import {ToastsService, ToastType} from '../../services/toasts.service';
+import {userType} from '../../models/User';
+import {GoalType} from '../../models/Need';
@Component({
selector: 'app-funding-basket',
@@ -18,77 +20,61 @@ export class FundingBasketComponent implements OnInit {
private router: Router,
protected cupboardService: CupboardService,
protected usersService: UsersService,
- private authService: AuthService,
+ protected authService: AuthService,
private toastService: ToastsService
) {}
+ public runningTotal = new BehaviorSubject(0)
@ViewChild("contribution") contribution?: Input;
- @Input() isValid: boolean = true;
- // this is for login rerouting
ngOnInit(): void {
- if (!this.authService.getCurrentUser()) {
- this.router.navigate(['/login'], {queryParams: {redir: this.router.url}});
- return;
- }
this.usersService.refreshBasket();
- // this.usersService.removeNeed(); <- call this to remove
}
async checkout() {
- this.isValid = true;
- for (let c of document.querySelectorAll('.contribution')!) {
- let contribution = c as HTMLInputElement;
- contribution.setAttribute("style", "");
- if (contribution.value == '' || contribution.valueAsNumber <= 0) {
- this.isValid = false;
+ let order: { needID: number, quantity: number }[] = []
+ let isNotValid = false
+ for (let contribution of document.querySelectorAll<HTMLInputElement>('.contribution')!) {
+ if (contribution.value == '' || contribution.valueAsNumber <= 0) {
+ isNotValid = true
contribution.setAttribute("style", "border-color: #ff0000");
- this.toastService.sendToast(ToastType.ERROR, "Invalid input in funding basket!")
-
- setTimeout(() => {
- contribution.setAttribute("style", "border-color: #ffffff");
- }, 3000);
}
+ order.push({needID: +contribution.id, quantity: contribution.valueAsNumber});
}
- // if (this.usersService.getBasket().value != await firstValueFrom(this.usersService.getUser(1))
- // for (let c of this.usersService.getBasket().value) {
- // if (c == null) {
- // this.isValid = false;
- // this.statusText.next("One or more needs have been deleted")
- // } else {
- // this.statusText.next("test")
- // }
- // }
- if (this.isValid) {
- for (let c of document.querySelectorAll('.contribution')!) {
- let contribution = c as HTMLInputElement;
- let need = await firstValueFrom(this.cupboardService.getNeed(+contribution.id));
- need.current += +contribution.value;
- this.usersService.removeNeed(+need.id);
- this.cupboardService.checkoutNeed(need.id, +contribution.value)
- .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 new Observable<string>();
- }))
- .subscribe((result) => {
- if (result) {
- //this.needList?.refresh()
- } else {
- console.log('need update failed');
- }
- this.toastService.sendToast(ToastType.INFO, "Checkout successful");
- });
- }
+
+ if (isNotValid) {
+ this.toastService.sendToast(ToastType.ERROR, "Invalid input in funding basket!")
+ return;
+ }
+
+ try {
+ await firstValueFrom(this.cupboardService.checkoutNeed(order))
+ } catch (ex:any) {
+ this.toastService.sendToast(ToastType.ERROR, ex.error);
+ return
}
+
+ order.forEach(contribution => this.usersService.removeNeed(contribution.needID))
+ this.toastService.sendToast(ToastType.INFO, "Checkout successful");
}
+ resetColor(ev: any) {
+ let total = 0
+ this.runningTotal.next(total);
+ for (let contribution of document.querySelectorAll<HTMLInputElement>('.contribution')!) {
+ this.cupboardService.getNeed(+contribution.id).subscribe(need => {
+ if (contribution.value != '' && need.type != GoalType.PHYSICAL) {
+ total += contribution.valueAsNumber
+ }
+ this.runningTotal.next(total);
+ })
+ }
+
+ (ev.target as HTMLInputElement).setAttribute("style", "border-color: unset")
+ }
+ protected readonly of = of;
+ protected readonly userType = userType;
}