Chore: Moved edit and delete in guestbook to the details from list.

This will give more space.
Also removed the old table button
This commit is contained in:
Amritanshu Agrawal 2023-08-17 22:18:14 +05:30
parent e8a33cd80e
commit 1cb2677ad1
4 changed files with 35 additions and 38 deletions

View File

@ -52,6 +52,7 @@
</form>
</mat-card-content>
<mat-card-actions>
<button mat-raised-button color="primary" (click)="save()">Save</button>
<button mat-raised-button color="primary" class="mr-5" (click)="save()">Save</button>
<button mat-raised-button color="warn" (click)="confirmDelete()" *ngIf="!!item.id">Delete</button>
</mat-card-actions>
</mat-card>

View File

@ -1,6 +1,7 @@
import { AfterViewInit, Component, ElementRef, OnInit, ViewChild } from '@angular/core';
import { FormControl, FormGroup, Validators } from '@angular/forms';
import { MatAutocompleteSelectedEvent } from '@angular/material/autocomplete';
import { MatDialog } from '@angular/material/dialog';
import { ActivatedRoute, Router } from '@angular/router';
import { Observable, of as observableOf } from 'rxjs';
import { debounceTime, distinctUntilChanged, map, startWith, switchMap } from 'rxjs/operators';
@ -8,6 +9,7 @@ import { debounceTime, distinctUntilChanged, map, startWith, switchMap } from 'r
import { Customer } from '../../core/customer';
import { ToasterService } from '../../core/toaster.service';
import { CustomerService } from '../../customers/customer.service';
import { ConfirmDialogComponent } from '../../shared/confirm-dialog/confirm-dialog.component';
import { GuestBook } from '../guest-book';
import { GuestBookService } from '../guest-book.service';
@ -33,6 +35,7 @@ export class GuestBookDetailComponent implements OnInit, AfterViewInit {
constructor(
private route: ActivatedRoute,
private router: Router,
private dialog: MatDialog,
private toaster: ToasterService,
private ser: GuestBookService,
private customerService: CustomerService,
@ -111,6 +114,31 @@ export class GuestBookDetailComponent implements OnInit, AfterViewInit {
});
}
confirmDelete(): void {
const dialogRef = this.dialog.open(ConfirmDialogComponent, {
width: '250px',
data: { title: 'Delete Guest Book Entry?', content: 'Are you sure? This cannot be undone.' },
});
dialogRef.afterClosed().subscribe((result: boolean) => {
if (result) {
this.delete(this.item.id ?? '');
}
});
}
delete(id: string) {
this.ser.delete(id).subscribe({
complete: () => {
this.toaster.show('Success', '');
this.router.navigateByUrl('/guest-book');
},
error: (error) => {
this.toaster.show('Error', error);
},
});
}
getItem(): GuestBook {
const formModel = this.form.value;
this.item.name = formModel.name ?? '';

View File

@ -29,7 +29,9 @@
<!-- Name Column -->
<ng-container matColumnDef="name">
<mat-header-cell *matHeaderCellDef>Name</mat-header-cell>
<mat-cell *matCellDef="let row">{{ row.name }}</mat-cell>
<mat-cell *matCellDef="let row"
><a [routerLink]="['/guest-book/', row.id]">{{ row.name }}</a></mat-cell
>
</ng-container>
<!-- Phone Column -->
@ -71,7 +73,7 @@
>
{{ row.tableName }}
</button>
<button
<!-- <button
mat-stroked-button
color="primary"
[routerLink]="['/sales', 'bill']"
@ -79,13 +81,7 @@
*ngIf="!row.tableId && row.voucherId"
>
{{ row.tableName }}
</button>
<button mat-icon-button [routerLink]="['/guest-book/', row.id]">
<mat-icon>edit</mat-icon>
</button>
<button mat-icon-button color="warn" (click)="confirmDelete(row.id)">
<mat-icon>delete</mat-icon>
</button>
</button> -->
</mat-cell>
</ng-container>

View File

@ -1,13 +1,11 @@
import { Component, OnInit } from '@angular/core';
import { FormControl, FormGroup } from '@angular/forms';
import { MatDialog } from '@angular/material/dialog';
import { ActivatedRoute, Router } from '@angular/router';
import * as moment from 'moment';
import { BehaviorSubject } from 'rxjs';
import { map } from 'rxjs/operators';
import { ToasterService } from '../../core/toaster.service';
import { ConfirmDialogComponent } from '../../shared/confirm-dialog/confirm-dialog.component';
import { GuestBook } from '../guest-book';
import { GuestBookList } from '../guest-book-list';
import { GuestBookService } from '../guest-book.service';
@ -32,7 +30,6 @@ export class GuestBookListComponent implements OnInit {
constructor(
private route: ActivatedRoute,
private router: Router,
private dialog: MatDialog,
private toaster: ToasterService,
private ser: GuestBookService,
) {
@ -59,29 +56,4 @@ export class GuestBookListComponent implements OnInit {
});
this.dataSource = new GuestBookListDataSource(this.data);
}
delete(id: string) {
this.ser.delete(id).subscribe(
() => {
this.toaster.show('Success', '');
this.router.navigateByUrl('/guest-book');
},
(error) => {
this.toaster.show('Error', error);
},
);
}
confirmDelete(id: string): void {
const dialogRef = this.dialog.open(ConfirmDialogComponent, {
width: '250px',
data: { title: 'Delete Guest Book Entry?', content: 'Are you sure? This cannot be undone.' },
});
dialogRef.afterClosed().subscribe((result: boolean) => {
if (result) {
this.delete(id);
}
});
}
}