Chore: Removed Mat Card from everywhere.

Chore: Removed the Toaster Service.
Chore: Updated to Material Theme 3
This commit is contained in:
2025-07-11 11:30:35 +00:00
parent 5c1c474e93
commit 88a1572747
117 changed files with 2895 additions and 3236 deletions

View File

@ -1,64 +1,60 @@
<mat-card>
<mat-card-header>
<mat-card-title-group>
<mat-card-title>Product Update Report</mat-card-title>
<button mat-icon-button (click)="exportCsv()">
<mat-icon>save_alt</mat-icon>
</button>
</mat-card-title-group>
</mat-card-header>
<mat-card-content>
<form [formGroup]="form" class="flex flex-col">
<div class="row-container sm:max-lg:flex-col">
<mat-form-field class="flex-auto basis-2-5">
<mat-label>Date</mat-label>
<input matInput [matDatepicker]="date" (focus)="date.open()" formControlName="date" autocomplete="off" />
<mat-datepicker-toggle matSuffix [for]="date"></mat-datepicker-toggle>
<mat-datepicker #date></mat-datepicker>
<h2 class="row-container space-between">
<span>Product Update Report</span>
<button mat-icon-button (click)="exportCsv()">
<mat-icon>save_alt</mat-icon>
</button>
</h2>
<form [formGroup]="form" class="flex flex-col">
<div class="row-container sm:max-lg:flex-col">
<mat-form-field class="flex-auto basis-2-5">
<mat-label>Date</mat-label>
<input matInput [matDatepicker]="date" (focus)="date.open()" formControlName="date" autocomplete="off" />
<mat-datepicker-toggle matSuffix [for]="date"></mat-datepicker-toggle>
<mat-datepicker #date></mat-datepicker>
</mat-form-field>
<mat-form-field class="flex-auto basis-2-5">
<mat-label>Menu Category</mat-label>
<mat-select formControlName="menuCategory">
@for (s of menuCategories; track s) {
<mat-option [value]="s.id">
{{ s.name }}
</mat-option>
}
</mat-select>
</mat-form-field>
<button mat-raised-button class="flex-auto basis-1-5" color="primary" (click)="show()">Show</button>
</div>
<mat-table #table [dataSource]="dataSource" aria-label="Elements" formArrayName="prices">
<!-- Name Column -->
<ng-container matColumnDef="name">
<mat-header-cell *matHeaderCellDef>Name</mat-header-cell>
<mat-cell *matCellDef="let row">{{ row.name }}</mat-cell>
</ng-container>
<!-- Old Price Column -->
<ng-container matColumnDef="oldPrice">
<mat-header-cell *matHeaderCellDef class="right">Old Price</mat-header-cell>
<mat-cell *matCellDef="let row" class="right">{{ row.oldPrice | currency: 'INR' }}</mat-cell>
</ng-container>
<!-- New Price Column -->
<ng-container matColumnDef="newPrice">
<mat-header-cell *matHeaderCellDef class="right">New Price</mat-header-cell>
<mat-cell *matCellDef="let row; let i = index" [formGroupName]="i" class="right">
<mat-form-field class="flex-auto">
<mat-label>New Price</mat-label>
<input matInput type="number" formControlName="newPrice" />
<span matTextPrefix>&nbsp;</span>
</mat-form-field>
<mat-form-field class="flex-auto basis-2-5">
<mat-label>Menu Category</mat-label>
<mat-select formControlName="menuCategory">
@for (s of menuCategories; track s) {
<mat-option [value]="s.id">
{{ s.name }}
</mat-option>
}
</mat-select>
</mat-form-field>
<button mat-raised-button class="flex-auto basis-1-5" color="primary" (click)="show()">Show</button>
</div>
<mat-table #table [dataSource]="dataSource" aria-label="Elements" formArrayName="prices">
<!-- Name Column -->
<ng-container matColumnDef="name">
<mat-header-cell *matHeaderCellDef>Name</mat-header-cell>
<mat-cell *matCellDef="let row">{{ row.name }}</mat-cell>
</ng-container>
</mat-cell>
</ng-container>
<!-- Old Price Column -->
<ng-container matColumnDef="oldPrice">
<mat-header-cell *matHeaderCellDef class="right">Old Price</mat-header-cell>
<mat-cell *matCellDef="let row" class="right">{{ row.oldPrice | currency: 'INR' }}</mat-cell>
</ng-container>
<mat-header-row *matHeaderRowDef="displayedColumns"></mat-header-row>
<mat-row *matRowDef="let row; columns: displayedColumns"></mat-row>
</mat-table>
</form>
<!-- New Price Column -->
<ng-container matColumnDef="newPrice">
<mat-header-cell *matHeaderCellDef class="right">New Price</mat-header-cell>
<mat-cell *matCellDef="let row; let i = index" [formGroupName]="i" class="right">
<mat-form-field class="flex-auto">
<mat-label>New Price</mat-label>
<input matInput type="number" formControlName="newPrice" />
<span matTextPrefix>&nbsp;</span>
</mat-form-field>
</mat-cell>
</ng-container>
<mat-header-row *matHeaderRowDef="displayedColumns"></mat-header-row>
<mat-row *matRowDef="let row; columns: displayedColumns"></mat-row>
</mat-table>
</form>
</mat-card-content>
<mat-card-actions>
<button mat-raised-button color="primary" (click)="save()">Save</button>
</mat-card-actions>
</mat-card>
<div class="row-container">
<button mat-raised-button color="primary" (click)="save()">Save</button>
</div>

View File

@ -2,20 +2,19 @@ import { CurrencyPipe } from '@angular/common';
import { Component, OnInit, inject } from '@angular/core';
import { FormArray, FormControl, FormGroup, ReactiveFormsModule } from '@angular/forms';
import { MatButtonModule } from '@angular/material/button';
import { MatCardModule } from '@angular/material/card';
import { MatOptionModule } from '@angular/material/core';
import { MatDatepickerModule } from '@angular/material/datepicker';
import { MatFormFieldModule } from '@angular/material/form-field';
import { MatIconModule } from '@angular/material/icon';
import { MatInputModule } from '@angular/material/input';
import { MatSelectModule } from '@angular/material/select';
import { MatSnackBar } from '@angular/material/snack-bar';
import { MatTableModule } from '@angular/material/table';
import { ActivatedRoute, Router } from '@angular/router';
import moment from 'moment';
import { map } from 'rxjs/operators';
import { MenuCategory } from '../core/menu-category';
import { ToasterService } from '../core/toaster.service';
import { ToCsvService } from '../shared/to-csv.service';
import { UpdateProductPrices } from './update-product-prices';
import { UpdateProductPricesDataSource } from './update-product-prices-datasource';
@ -28,7 +27,7 @@ import { UpdateProductPricesService } from './update-product-prices.service';
imports: [
CurrencyPipe,
MatButtonModule,
MatCardModule,
MatDatepickerModule,
MatFormFieldModule,
MatIconModule,
@ -43,7 +42,7 @@ export class UpdateProductPricesComponent implements OnInit {
private route = inject(ActivatedRoute);
private router = inject(Router);
private toCsv = inject(ToCsvService);
private toaster = inject(ToasterService);
private snackBar = inject(MatSnackBar);
private ser = inject(UpdateProductPricesService);
info: UpdateProductPrices = new UpdateProductPrices();
@ -152,11 +151,11 @@ export class UpdateProductPricesComponent implements OnInit {
save() {
this.ser.save(this.getInfo()).subscribe({
next: (result: UpdateProductPrices) => {
this.toaster.show('Success', '');
this.snackBar.open('', 'Success');
this.loadData(result);
},
error: (error) => {
this.toaster.show('Error', error);
this.snackBar.open(error, 'Error');
},
});
}