Add delivery and ingredients CRUD
This commit is contained in:
@@ -1,7 +1,13 @@
|
|||||||
Tiramisu
|
Tiramisu
|
||||||
|
|
||||||
<button mat-button [routerLink]="['/recipes']">Les recettes</button>
|
<button mat-button routerLink="/recipes">Les recettes</button>
|
||||||
<button mat-button [routerLink]="['/recipe/add']">Ajout recette</button>
|
<button mat-button routerLink="/recipe/add">Ajout recette</button>
|
||||||
|
@if (login.isLoggedIn()) {
|
||||||
|
<button mat-button routerLink="/ingredients">Ingrédients</button>
|
||||||
|
<button mat-button routerLink="/ingredients/add">Ajout ingrédient</button>
|
||||||
|
<button mat-button routerLink="/logout">Déconnexion</button>
|
||||||
|
} @else {
|
||||||
|
<button mat-button routerLink="/login">Connexion</button>
|
||||||
|
}
|
||||||
|
|
||||||
|
<router-outlet></router-outlet>
|
||||||
<router-outlet></router-outlet>
|
|
||||||
|
@@ -1,8 +1,10 @@
|
|||||||
import { Component } from '@angular/core';
|
import { Component } from '@angular/core';
|
||||||
import { RouterLink, RouterLinkActive, RouterOutlet } from '@angular/router';
|
|
||||||
import { RecipeService } from './recipe.service';
|
|
||||||
import { MatMenuModule } from '@angular/material/menu';
|
|
||||||
import { MatButtonModule } from '@angular/material/button';
|
import { MatButtonModule } from '@angular/material/button';
|
||||||
|
import { MatMenuModule } from '@angular/material/menu';
|
||||||
|
import { RouterLink, RouterLinkActive, RouterOutlet } from '@angular/router';
|
||||||
|
import { DeliveryService } from './delivery.service';
|
||||||
|
import { LoginService } from './login.service';
|
||||||
|
import { RecipeService } from './recipe.service';
|
||||||
|
|
||||||
@Component({
|
@Component({
|
||||||
selector: 'app-root',
|
selector: 'app-root',
|
||||||
@@ -10,11 +12,11 @@ import { MatButtonModule } from '@angular/material/button';
|
|||||||
imports: [RouterOutlet, RouterLink, RouterLinkActive, MatMenuModule, MatButtonModule],
|
imports: [RouterOutlet, RouterLink, RouterLinkActive, MatMenuModule, MatButtonModule],
|
||||||
templateUrl: './app.component.html',
|
templateUrl: './app.component.html',
|
||||||
styleUrl: './app.component.css',
|
styleUrl: './app.component.css',
|
||||||
providers: [RecipeService],
|
providers: [RecipeService, LoginService, DeliveryService],
|
||||||
})
|
})
|
||||||
export class AppComponent {
|
export class AppComponent {
|
||||||
title = 'tiramisu';
|
title = 'tiramisu';
|
||||||
|
|
||||||
constructor(protected recipes: RecipeService) {
|
constructor(protected recipes: RecipeService, protected login: LoginService) {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@@ -1,6 +1,9 @@
|
|||||||
import { inject } from '@angular/core';
|
import { inject } from '@angular/core';
|
||||||
import { CanActivateFn, Routes } from '@angular/router';
|
import { CanActivateFn, Routes } from '@angular/router';
|
||||||
import { AuthComponent } from './auth/auth.component';
|
import { AuthComponent } from './auth/auth.component';
|
||||||
|
import { DeliveryComponent } from './delivery/delivery.component';
|
||||||
|
import { IngredientAddComponent } from './ingredient-add/ingredient-add.component';
|
||||||
|
import { IngredientsComponent } from './ingredients/ingredients.component';
|
||||||
import { LoginService } from './login.service';
|
import { LoginService } from './login.service';
|
||||||
import { RecipeAddComponent } from './recipe-add/recipe-add.component';
|
import { RecipeAddComponent } from './recipe-add/recipe-add.component';
|
||||||
import { RecipeComponent } from './recipe/recipe.component';
|
import { RecipeComponent } from './recipe/recipe.component';
|
||||||
@@ -8,11 +11,14 @@ import { RecipesComponent } from './recipes/recipes.component';
|
|||||||
|
|
||||||
const LoggedGuard: CanActivateFn = () => inject(LoginService).isLoggedIn();
|
const LoggedGuard: CanActivateFn = () => inject(LoginService).isLoggedIn();
|
||||||
export const routes: Routes = [
|
export const routes: Routes = [
|
||||||
|
{ path: '', component: DeliveryComponent, pathMatch: 'full' },
|
||||||
{ path: 'recipes', component: RecipesComponent },
|
{ path: 'recipes', component: RecipesComponent },
|
||||||
{ path: 'recipe/add', component: RecipeAddComponent },
|
{ path: 'recipe/add', component: RecipeAddComponent },
|
||||||
{ path: 'recipe/:id', component: RecipeComponent },
|
{ path: 'recipe/:id', component: RecipeComponent },
|
||||||
{ path: 'recipe/:id/edit', component: RecipeAddComponent },
|
{ path: 'recipe/:id/edit', component: RecipeAddComponent },
|
||||||
{ path: 'ingredients', component: RecipesComponent, canActivate: [LoggedGuard] },
|
{ path: 'ingredients', component: IngredientsComponent, canActivate: [LoggedGuard] },
|
||||||
|
{ path: 'ingredients/add', component: IngredientAddComponent, canActivate: [LoggedGuard] },
|
||||||
|
{ path: 'ingredients/:id/edit', component: IngredientAddComponent, canActivate: [LoggedGuard] },
|
||||||
{ path: 'login', component: AuthComponent },
|
{ path: 'login', component: AuthComponent },
|
||||||
{ path: 'logout', component: AuthComponent, data: { registering: false }, canActivate: [LoggedGuard] },
|
{ path: 'logout', component: AuthComponent, data: { registering: false }, canActivate: [LoggedGuard] },
|
||||||
];
|
];
|
||||||
|
16
src/app/delivery.service.spec.ts
Normal file
16
src/app/delivery.service.spec.ts
Normal file
@@ -0,0 +1,16 @@
|
|||||||
|
import { TestBed } from '@angular/core/testing';
|
||||||
|
|
||||||
|
import { DeliveryService } from './delivery.service';
|
||||||
|
|
||||||
|
describe('DeliveryService', () => {
|
||||||
|
let service: DeliveryService;
|
||||||
|
|
||||||
|
beforeEach(() => {
|
||||||
|
TestBed.configureTestingModule({});
|
||||||
|
service = TestBed.inject(DeliveryService);
|
||||||
|
});
|
||||||
|
|
||||||
|
it('should be created', () => {
|
||||||
|
expect(service).toBeTruthy();
|
||||||
|
});
|
||||||
|
});
|
22
src/app/delivery.service.ts
Normal file
22
src/app/delivery.service.ts
Normal file
@@ -0,0 +1,22 @@
|
|||||||
|
import { Injectable } from '@angular/core';
|
||||||
|
import { Recipe } from '../cookbook/type';
|
||||||
|
|
||||||
|
@Injectable({
|
||||||
|
providedIn: 'root',
|
||||||
|
})
|
||||||
|
export class DeliveryService {
|
||||||
|
readonly #shoppingCart: Recipe[];
|
||||||
|
|
||||||
|
constructor() {
|
||||||
|
this.#shoppingCart = JSON.parse(localStorage.getItem('shoppingCart') || '[]');
|
||||||
|
}
|
||||||
|
|
||||||
|
addToCart(recipe: Recipe): void {
|
||||||
|
this.#shoppingCart.push(recipe);
|
||||||
|
localStorage.setItem('shoppingCart', JSON.stringify(this.#shoppingCart));
|
||||||
|
}
|
||||||
|
|
||||||
|
get shoppingCart(): readonly Recipe[] {
|
||||||
|
return this.#shoppingCart;
|
||||||
|
}
|
||||||
|
}
|
13
src/app/delivery/delivery.component.html
Normal file
13
src/app/delivery/delivery.component.html
Normal file
@@ -0,0 +1,13 @@
|
|||||||
|
<h3>Commande en cours</h3>
|
||||||
|
|
||||||
|
@for (item of delivery.shoppingCart; track item.id) {
|
||||||
|
<div class="container">
|
||||||
|
<img [src]="item.image || 'https://placehold.co/200x200'" [alt]="item.image ? item.name : ''" width="200" height="200">
|
||||||
|
<div class="container_text">
|
||||||
|
<h1>{{item.name}}</h1>
|
||||||
|
<p>
|
||||||
|
{{item.description}}
|
||||||
|
</p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
}
|
23
src/app/delivery/delivery.component.spec.ts
Normal file
23
src/app/delivery/delivery.component.spec.ts
Normal file
@@ -0,0 +1,23 @@
|
|||||||
|
import { ComponentFixture, TestBed } from '@angular/core/testing';
|
||||||
|
|
||||||
|
import { DeliveryComponent } from './delivery.component';
|
||||||
|
|
||||||
|
describe('DeliveryComponent', () => {
|
||||||
|
let component: DeliveryComponent;
|
||||||
|
let fixture: ComponentFixture<DeliveryComponent>;
|
||||||
|
|
||||||
|
beforeEach(async () => {
|
||||||
|
await TestBed.configureTestingModule({
|
||||||
|
imports: [DeliveryComponent],
|
||||||
|
})
|
||||||
|
.compileComponents();
|
||||||
|
|
||||||
|
fixture = TestBed.createComponent(DeliveryComponent);
|
||||||
|
component = fixture.componentInstance;
|
||||||
|
fixture.detectChanges();
|
||||||
|
});
|
||||||
|
|
||||||
|
it('should create', () => {
|
||||||
|
expect(component).toBeTruthy();
|
||||||
|
});
|
||||||
|
});
|
12
src/app/delivery/delivery.component.ts
Normal file
12
src/app/delivery/delivery.component.ts
Normal file
@@ -0,0 +1,12 @@
|
|||||||
|
import { Component } from '@angular/core';
|
||||||
|
import { DeliveryService } from '../delivery.service';
|
||||||
|
|
||||||
|
@Component({
|
||||||
|
selector: 'app-delivery',
|
||||||
|
standalone: true,
|
||||||
|
imports: [],
|
||||||
|
templateUrl: './delivery.component.html',
|
||||||
|
})
|
||||||
|
export class DeliveryComponent {
|
||||||
|
constructor(protected delivery: DeliveryService) {}
|
||||||
|
}
|
15
src/app/ingredient-add/ingredient-add.component.html
Normal file
15
src/app/ingredient-add/ingredient-add.component.html
Normal file
@@ -0,0 +1,15 @@
|
|||||||
|
<form [formGroup]="createForm" (ngSubmit)="onSubmit()">
|
||||||
|
<div>
|
||||||
|
<mat-form-field>
|
||||||
|
<label for="name">Nom</label>
|
||||||
|
<input matInput id="name" type="text" formControlName="name" required>
|
||||||
|
@if (createForm.controls.name.errors?.['minlength']) {
|
||||||
|
<mat-error>Le nom doit contenir au moins {{ createForm.controls.name.errors!['minlength'].requiredLength }} caractères.</mat-error>
|
||||||
|
}
|
||||||
|
@if (createForm.controls.name.errors?.['maxlength']) {
|
||||||
|
<mat-error>Le nom ne peut dépasser {{ createForm.controls.name.errors!['maxlength'].requiredLength }} caractères.</mat-error>
|
||||||
|
}
|
||||||
|
</mat-form-field>
|
||||||
|
</div>
|
||||||
|
<button mat-flat-button class="button" type="submit">{{ ingredientId === -1 ? 'Ajouter' : 'Éditer' }}</button>
|
||||||
|
</form>
|
23
src/app/ingredient-add/ingredient-add.component.spec.ts
Normal file
23
src/app/ingredient-add/ingredient-add.component.spec.ts
Normal file
@@ -0,0 +1,23 @@
|
|||||||
|
import { ComponentFixture, TestBed } from '@angular/core/testing';
|
||||||
|
|
||||||
|
import { IngredientAddComponent } from './ingredient-add.component';
|
||||||
|
|
||||||
|
describe('IngredientAddComponent', () => {
|
||||||
|
let component: IngredientAddComponent;
|
||||||
|
let fixture: ComponentFixture<IngredientAddComponent>;
|
||||||
|
|
||||||
|
beforeEach(async () => {
|
||||||
|
await TestBed.configureTestingModule({
|
||||||
|
imports: [IngredientAddComponent],
|
||||||
|
})
|
||||||
|
.compileComponents();
|
||||||
|
|
||||||
|
fixture = TestBed.createComponent(IngredientAddComponent);
|
||||||
|
component = fixture.componentInstance;
|
||||||
|
fixture.detectChanges();
|
||||||
|
});
|
||||||
|
|
||||||
|
it('should create', () => {
|
||||||
|
expect(component).toBeTruthy();
|
||||||
|
});
|
||||||
|
});
|
63
src/app/ingredient-add/ingredient-add.component.ts
Normal file
63
src/app/ingredient-add/ingredient-add.component.ts
Normal file
@@ -0,0 +1,63 @@
|
|||||||
|
import { Component, Input } from '@angular/core';
|
||||||
|
import { FormBuilder, ReactiveFormsModule } from '@angular/forms';
|
||||||
|
import { MatButton } from '@angular/material/button';
|
||||||
|
import { MatOption } from '@angular/material/core';
|
||||||
|
import { MatError, MatFormField } from '@angular/material/form-field';
|
||||||
|
import { MatInput } from '@angular/material/input';
|
||||||
|
import { MatSelect } from '@angular/material/select';
|
||||||
|
import { Router } from '@angular/router';
|
||||||
|
import { RecipeService } from '../recipe.service';
|
||||||
|
|
||||||
|
@Component({
|
||||||
|
selector: 'app-ingredient-add',
|
||||||
|
standalone: true,
|
||||||
|
imports: [
|
||||||
|
MatButton,
|
||||||
|
MatError,
|
||||||
|
MatFormField,
|
||||||
|
MatInput,
|
||||||
|
MatOption,
|
||||||
|
MatSelect,
|
||||||
|
ReactiveFormsModule,
|
||||||
|
],
|
||||||
|
templateUrl: './ingredient-add.component.html',
|
||||||
|
})
|
||||||
|
export class IngredientAddComponent {
|
||||||
|
createForm = this.formBuilder.group({
|
||||||
|
name: '',
|
||||||
|
});
|
||||||
|
|
||||||
|
#ingredientId: number = -1;
|
||||||
|
@Input()
|
||||||
|
set id(recipeId: string) {
|
||||||
|
if (recipeId === undefined) return;
|
||||||
|
this.#ingredientId = parseInt(recipeId);
|
||||||
|
const ingredient = this.recipes.getIngredientById(this.#ingredientId);
|
||||||
|
if (ingredient === null) {
|
||||||
|
this.router.navigateByUrl('404');
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
this.createForm.patchValue({
|
||||||
|
name: ingredient.name,
|
||||||
|
});
|
||||||
|
}
|
||||||
|
get ingredientId() {
|
||||||
|
return this.#ingredientId;
|
||||||
|
}
|
||||||
|
|
||||||
|
constructor(private formBuilder: FormBuilder, private recipes: RecipeService, private router: Router) {
|
||||||
|
}
|
||||||
|
|
||||||
|
onSubmit() {
|
||||||
|
if (this.createForm.invalid) {
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
const value = this.createForm.value;
|
||||||
|
if (this.ingredientId !== -1) {
|
||||||
|
this.recipes.editIngredient({ id: this.ingredientId, name: value.name! });
|
||||||
|
} else {
|
||||||
|
this.recipes.addIngredient({ name: value.name! });
|
||||||
|
}
|
||||||
|
this.router.navigateByUrl('/ingredients');
|
||||||
|
}
|
||||||
|
}
|
34
src/app/ingredients/ingredients.component.html
Normal file
34
src/app/ingredients/ingredients.component.html
Normal file
@@ -0,0 +1,34 @@
|
|||||||
|
<div class="mat-elevation-z8">
|
||||||
|
<table mat-table [dataSource]="dataSource">
|
||||||
|
|
||||||
|
<ng-container matColumnDef="id">
|
||||||
|
<th mat-header-cell *matHeaderCellDef> id </th>
|
||||||
|
<td mat-cell *matCellDef="let element">
|
||||||
|
{{element.id}}
|
||||||
|
</td>
|
||||||
|
</ng-container>
|
||||||
|
|
||||||
|
<ng-container matColumnDef="name">
|
||||||
|
<th mat-header-cell *matHeaderCellDef> name </th>
|
||||||
|
<td mat-cell *matCellDef="let element">
|
||||||
|
{{element.name}}
|
||||||
|
</td>
|
||||||
|
</ng-container>
|
||||||
|
|
||||||
|
<ng-container matColumnDef="actions">
|
||||||
|
<th mat-header-cell *matHeaderCellDef> actions </th>
|
||||||
|
<td mat-cell *matCellDef="let element">
|
||||||
|
<button mat-button [routerLink]="['/ingredients', element.id, 'edit']">Modifier</button>
|
||||||
|
<button mat-button (click)="delete(element)" color="warn">Supprimer</button>
|
||||||
|
</td>
|
||||||
|
</ng-container>
|
||||||
|
|
||||||
|
<tr mat-header-row *matHeaderRowDef="displayedColumns"></tr>
|
||||||
|
<tr mat-row *matRowDef="let element; columns: displayedColumns"></tr>
|
||||||
|
</table>
|
||||||
|
|
||||||
|
<mat-paginator [pageSizeOptions]="[5, 10, 20]"
|
||||||
|
showFirstLastButtons
|
||||||
|
aria-label="Select page of recipes">
|
||||||
|
</mat-paginator>
|
||||||
|
</div>
|
23
src/app/ingredients/ingredients.component.spec.ts
Normal file
23
src/app/ingredients/ingredients.component.spec.ts
Normal file
@@ -0,0 +1,23 @@
|
|||||||
|
import { ComponentFixture, TestBed } from '@angular/core/testing';
|
||||||
|
|
||||||
|
import { IngredientsComponent } from './ingredients.component';
|
||||||
|
|
||||||
|
describe('IngredientsComponent', () => {
|
||||||
|
let component: IngredientsComponent;
|
||||||
|
let fixture: ComponentFixture<IngredientsComponent>;
|
||||||
|
|
||||||
|
beforeEach(async () => {
|
||||||
|
await TestBed.configureTestingModule({
|
||||||
|
imports: [IngredientsComponent],
|
||||||
|
})
|
||||||
|
.compileComponents();
|
||||||
|
|
||||||
|
fixture = TestBed.createComponent(IngredientsComponent);
|
||||||
|
component = fixture.componentInstance;
|
||||||
|
fixture.detectChanges();
|
||||||
|
});
|
||||||
|
|
||||||
|
it('should create', () => {
|
||||||
|
expect(component).toBeTruthy();
|
||||||
|
});
|
||||||
|
});
|
52
src/app/ingredients/ingredients.component.ts
Normal file
52
src/app/ingredients/ingredients.component.ts
Normal file
@@ -0,0 +1,52 @@
|
|||||||
|
import { Component } from '@angular/core';
|
||||||
|
import { MatButton } from '@angular/material/button';
|
||||||
|
import { MatPaginator } from '@angular/material/paginator';
|
||||||
|
import {
|
||||||
|
MatCell,
|
||||||
|
MatCellDef,
|
||||||
|
MatColumnDef,
|
||||||
|
MatHeaderCell,
|
||||||
|
MatHeaderCellDef,
|
||||||
|
MatHeaderRow,
|
||||||
|
MatHeaderRowDef,
|
||||||
|
MatRow,
|
||||||
|
MatRowDef,
|
||||||
|
MatTable,
|
||||||
|
MatTableDataSource,
|
||||||
|
} from '@angular/material/table';
|
||||||
|
import { RouterLink } from '@angular/router';
|
||||||
|
import { Ingredient } from '../../cookbook/type';
|
||||||
|
import { RecipeService } from '../recipe.service';
|
||||||
|
|
||||||
|
@Component({
|
||||||
|
selector: 'app-ingredients',
|
||||||
|
standalone: true,
|
||||||
|
imports: [
|
||||||
|
MatButton,
|
||||||
|
MatCell,
|
||||||
|
MatCellDef,
|
||||||
|
MatColumnDef,
|
||||||
|
MatHeaderCell,
|
||||||
|
MatHeaderRow,
|
||||||
|
MatHeaderRowDef,
|
||||||
|
MatPaginator,
|
||||||
|
MatRow,
|
||||||
|
MatRowDef,
|
||||||
|
MatTable,
|
||||||
|
MatHeaderCellDef,
|
||||||
|
RouterLink,
|
||||||
|
],
|
||||||
|
templateUrl: './ingredients.component.html',
|
||||||
|
})
|
||||||
|
export class IngredientsComponent {
|
||||||
|
displayedColumns: string[] = ['id', 'name', 'actions'];
|
||||||
|
dataSource = new MatTableDataSource<Ingredient>();
|
||||||
|
|
||||||
|
constructor(protected recipes: RecipeService) {
|
||||||
|
this.dataSource = new MatTableDataSource<Ingredient>(recipes.getAllIngredients());
|
||||||
|
}
|
||||||
|
|
||||||
|
delete(ingredient: Ingredient): void {
|
||||||
|
this.recipes.deleteIngredient(ingredient);
|
||||||
|
}
|
||||||
|
}
|
@@ -67,4 +67,28 @@ export class RecipeService {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
addIngredient(ingredient: Omit<Ingredient, 'id'>) {
|
||||||
|
const id = this.#ingredients.length ? Math.max(...this.#ingredients.map((ingredient) => ingredient.id)) + 1 : 1;
|
||||||
|
this.#ingredients.push({
|
||||||
|
id,
|
||||||
|
...ingredient,
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
editIngredient(ingredient: Ingredient) {
|
||||||
|
for (let i = 0; i < this.#ingredients.length; ++i) {
|
||||||
|
if (this.#ingredients[i].id === ingredient.id) {
|
||||||
|
this.#ingredients[i] = ingredient;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
deleteIngredient(ingredient: Ingredient) {
|
||||||
|
const index = this.#ingredients.findIndex((v) => v.id === ingredient.id);
|
||||||
|
if (index === -1) {
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
this.#ingredients.splice(index, 1);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
@@ -1,10 +1,10 @@
|
|||||||
import { CommonModule } from '@angular/common';
|
import { CommonModule } from '@angular/common';
|
||||||
import { Component, Input } from '@angular/core';
|
import { Component, Input } from '@angular/core';
|
||||||
|
import { MatButtonModule } from '@angular/material/button';
|
||||||
|
import { MatIconModule } from '@angular/material/icon';
|
||||||
|
import { RouterLink } from '@angular/router';
|
||||||
import { Recipe } from '../../cookbook/type';
|
import { Recipe } from '../../cookbook/type';
|
||||||
import { RecipeService } from '../recipe.service';
|
import { RecipeService } from '../recipe.service';
|
||||||
import { MatIconModule } from '@angular/material/icon';
|
|
||||||
import { MatButtonModule } from '@angular/material/button';
|
|
||||||
import { RouterLink } from '@angular/router';
|
|
||||||
|
|
||||||
@Component({
|
@Component({
|
||||||
selector: 'app-recipe',
|
selector: 'app-recipe',
|
||||||
|
@@ -1,10 +1,10 @@
|
|||||||
<div class="mat-elevation-z8">
|
<div class="mat-elevation-z8">
|
||||||
<table mat-table [dataSource]="dataSource">
|
<table mat-table [dataSource]="dataSource">
|
||||||
|
|
||||||
<!-- Position Column -->
|
<!-- Position Column -->
|
||||||
<ng-container matColumnDef="id">
|
<ng-container matColumnDef="id">
|
||||||
<th mat-header-cell *matHeaderCellDef> id </th>
|
<th mat-header-cell *matHeaderCellDef> id </th>
|
||||||
<td mat-cell *matCellDef="let element">
|
<td mat-cell *matCellDef="let element">
|
||||||
{{element.id}}
|
{{element.id}}
|
||||||
</td>
|
</td>
|
||||||
</ng-container>
|
</ng-container>
|
||||||
@@ -30,13 +30,18 @@
|
|||||||
</td>
|
</td>
|
||||||
</ng-container>
|
</ng-container>
|
||||||
|
|
||||||
|
<ng-container matColumnDef="actions">
|
||||||
|
<th mat-header-cell *matHeaderCellDef> actions </th>
|
||||||
|
<td mat-cell *matCellDef="let element">
|
||||||
|
<button mat-button (click)="deliver(element)">Commander</button>
|
||||||
|
<button mat-button [routerLink]="['/recipe', element.id, 'edit']">Modifier</button>
|
||||||
|
</td>
|
||||||
|
</ng-container>
|
||||||
|
|
||||||
<tr mat-header-row *matHeaderRowDef="displayedColumns"></tr>
|
<tr mat-header-row *matHeaderRowDef="displayedColumns"></tr>
|
||||||
<tr mat-row *matRowDef="let element; columns: displayedColumns" [routerLink]="['/recipe/', element.id]"></tr>
|
<tr mat-row *matRowDef="let element; columns: displayedColumns" [routerLink]="['/recipe/', element.id]"></tr>
|
||||||
|
|
||||||
|
|
||||||
</table>
|
</table>
|
||||||
|
|
||||||
<mat-paginator [pageSizeOptions]="[5, 10, 20]"
|
<mat-paginator [pageSizeOptions]="[5, 10, 20]"
|
||||||
showFirstLastButtons
|
showFirstLastButtons
|
||||||
aria-label="Select page of recipes">
|
aria-label="Select page of recipes">
|
||||||
|
@@ -1,21 +1,23 @@
|
|||||||
import { AfterViewInit, Component, ViewChild } from '@angular/core';
|
import { AfterViewInit, Component, ViewChild } from '@angular/core';
|
||||||
|
import { MatButton } from '@angular/material/button';
|
||||||
import { MatPaginator, MatPaginatorModule } from '@angular/material/paginator';
|
import { MatPaginator, MatPaginatorModule } from '@angular/material/paginator';
|
||||||
import { MatTableDataSource, MatTableModule } from '@angular/material/table';
|
import { MatTableDataSource, MatTableModule } from '@angular/material/table';
|
||||||
import { RouterLink } from '@angular/router';
|
import { RouterLink } from '@angular/router';
|
||||||
import { Recipe } from '../../cookbook/type';
|
import { Recipe } from '../../cookbook/type';
|
||||||
|
import { DeliveryService } from '../delivery.service';
|
||||||
import { RecipeService } from '../recipe.service';
|
import { RecipeService } from '../recipe.service';
|
||||||
|
|
||||||
@Component({
|
@Component({
|
||||||
selector: 'app-recipes',
|
selector: 'app-recipes',
|
||||||
standalone: true,
|
standalone: true,
|
||||||
imports: [MatTableModule, MatPaginatorModule, RouterLink],
|
imports: [MatTableModule, MatPaginatorModule, RouterLink, MatButton],
|
||||||
templateUrl: './recipes.component.html',
|
templateUrl: './recipes.component.html',
|
||||||
})
|
})
|
||||||
export class RecipesComponent implements AfterViewInit {
|
export class RecipesComponent implements AfterViewInit {
|
||||||
displayedColumns: string[] = ['id', 'name', 'description', 'image'];
|
displayedColumns: string[] = ['id', 'name', 'description', 'image', 'actions'];
|
||||||
dataSource = new MatTableDataSource<Recipe>();
|
dataSource = new MatTableDataSource<Recipe>();
|
||||||
|
|
||||||
constructor(protected recipes: RecipeService) {
|
constructor(protected recipes: RecipeService, private delivery: DeliveryService) {
|
||||||
this.dataSource = new MatTableDataSource<Recipe>(recipes.getAll());
|
this.dataSource = new MatTableDataSource<Recipe>(recipes.getAll());
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -25,4 +27,8 @@ export class RecipesComponent implements AfterViewInit {
|
|||||||
ngAfterViewInit() {
|
ngAfterViewInit() {
|
||||||
this.dataSource.paginator = this.paginator;
|
this.dataSource.paginator = this.paginator;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
deliver(recipe: Recipe): void {
|
||||||
|
this.delivery.addToCart(recipe);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user