Little test with AI + Add the equipment #8

Merged
sandre merged 29 commits from feature/by-ai into master 2026-05-16 09:24:15 +00:00
3 changed files with 34 additions and 1 deletions
Showing only changes of commit 855d85ef67 - Show all commits
@@ -79,6 +79,26 @@
{{ element.equipment }} {{ element.equipment }}
</td> </td>
</ng-container> </ng-container>
<ng-container matColumnDef="actions">
<th
mat-header-cell
*matHeaderCellDef
style="min-width: 80px; text-wrap: nowrap"
></th>
<td
mat-cell
*matCellDef="let element"
style="text-align: left; text-wrap: nowrap"
>
<mat-icon
aria-hidden="false"
aria-label="Update this gear"
style="cursor: pointer; margin-left: 10px"
(click)="openDialog(element, true)"
svgIcon="edit"
></mat-icon>
</td>
</ng-container>
<tr <tr
mat-header-row mat-header-row
*matHeaderRowDef="displayedColumns; sticky: true" *matHeaderRowDef="displayedColumns; sticky: true"
@@ -6,12 +6,14 @@ import { TranslateModule, TranslateService } from "@ngx-translate/core";
import { MatProgressSpinnerModule } from "@angular/material/progress-spinner"; import { MatProgressSpinnerModule } from "@angular/material/progress-spinner";
import { MatButtonModule } from "@angular/material/button"; import { MatButtonModule } from "@angular/material/button";
import { MatIconModule } from "@angular/material/icon";
import { GearService } from "../../services/gear.service"; import { GearService } from "../../services/gear.service";
import { ServiceComm } from "../../services/service-comm.service"; import { ServiceComm } from "../../services/service-comm.service";
import { GearResp } from "../../models/gear"; import { GearResp } from "../../models/gear";
import { AddAction } from "../../models/add-action.enum"; import { AddAction } from "../../models/add-action.enum";
import { NewGearComponent } from "../new-gear/new-gear.component"; import { NewGearComponent } from "../new-gear/new-gear.component";
import { GearInfosComponent } from "../gear-infos/gear-infos.component";
@Component({ @Component({
selector: "app-list-of-gears", selector: "app-list-of-gears",
@@ -23,6 +25,7 @@ import { NewGearComponent } from "../new-gear/new-gear.component";
MatProgressSpinnerModule, MatProgressSpinnerModule,
MatTableModule, MatTableModule,
MatButtonModule, MatButtonModule,
MatIconModule,
], ],
}) })
export class ListOfGearsComponent implements OnInit { export class ListOfGearsComponent implements OnInit {
@@ -34,6 +37,7 @@ export class ListOfGearsComponent implements OnInit {
"mainCanopy", "mainCanopy",
"reserveCanopy", "reserveCanopy",
"equipment", "equipment",
"actions",
]; ];
public dataSourceTable: MatTableDataSource<GearResp>; public dataSourceTable: MatTableDataSource<GearResp>;
public resultsLength = 0; public resultsLength = 0;
@@ -81,6 +85,14 @@ export class ListOfGearsComponent implements OnInit {
}); });
} }
openDialog(item: GearResp, editMode: boolean) {
this.dialog.open(GearInfosComponent, {
data: { gear: item, editMode: editMode },
maxHeight: "400px",
minWidth: "350px",
});
}
private updateTitle() { private updateTitle() {
this.translateService.get("ListGears_Title").subscribe((data) => { this.translateService.get("ListGears_Title").subscribe((data) => {
this.serviceComm.updatedComponentTitle(data); this.serviceComm.updatedComponentTitle(data);
@@ -137,7 +137,8 @@
> >
@for (gear of listOfGear; track gear) { @for (gear of listOfGear; track gear) {
<mat-option [value]="gear"> <mat-option [value]="gear">
{{ gear.name }} ({{ gear.mainCanopy }}) {{ gear.name }} ({{ gear.mainCanopy }} -
{{ gear.equipment }})
</mat-option> </mat-option>
} }
</mat-autocomplete> </mat-autocomplete>