Deleted search bar

This commit is contained in:
2026-05-26 14:09:09 +01:00
parent 6e9daf3e60
commit f233c46853
19 changed files with 7 additions and 150 deletions
@@ -57,8 +57,6 @@
</td> </td>
<td> <td>
<div style="justify-content: center; display: flex"> <div style="justify-content: center; display: flex">
<nz-icon nzType="plus-circle" nzTheme="outline" class="cursor-pointer text-green-700"/>
<nz-divider nzType="vertical"></nz-divider>
<nz-icon nzType="edit" nzTheme="outline" class="cursor-pointer" <nz-icon nzType="edit" nzTheme="outline" class="cursor-pointer"
(click)="openEditModal(purchaseOrder)"></nz-icon> (click)="openEditModal(purchaseOrder)"></nz-icon>
<nz-divider nzType="vertical"></nz-divider> <nz-divider nzType="vertical"></nz-divider>
@@ -57,8 +57,6 @@
</td> </td>
<td> <td>
<div style="justify-content: center; display: flex"> <div style="justify-content: center; display: flex">
<nz-icon nzType="plus-circle" nzTheme="outline" class="cursor-pointer text-green-700"/>
<nz-divider nzType="vertical"></nz-divider>
<nz-icon nzType="edit" nzTheme="outline" class="cursor-pointer" <nz-icon nzType="edit" nzTheme="outline" class="cursor-pointer"
(click)="openEditModal(quotation)"></nz-icon> (click)="openEditModal(quotation)"></nz-icon>
<nz-divider nzType="vertical"></nz-divider> <nz-divider nzType="vertical"></nz-divider>
-36
View File
@@ -1,36 +0,0 @@
/* From Uiverse.io by LightAndy1 */
.group {
box-shadow: 0 1px 2px 1px #001529;
border-radius: 15px;
padding: 0.1rem 0.5rem 0.1rem 1rem;
display: flex;
line-height: 28px;
align-items: center;
position: relative;
max-width: 400px;
}
.input {
width: 100%;
height: 32px;
line-height: 28px;
padding: 0 1rem;
border: 2px solid transparent;
border-radius: 8px;
outline: none;
background-color: #f3f3f4;
color: #0d0c22;
transition: 0.3s ease;
}
.input::placeholder {
color: #9e9ea7;
}
.input:focus,
input:hover {
outline: none;
border-color: #40A9FF;
background-color: #fff;
box-shadow: 0 0 0 4px rgba(199, 199, 197, 0.1);
}
-10
View File
@@ -1,10 +0,0 @@
<form nz-form nzLayout="horizontal" [formGroup]="searchForm">
<nz-form-item nz-flex>
<nz-form-control nzSpan="12">
<div class="group">
<nz-icon nzType="search" nzTheme="outline" class="mr-2 text-xl" (click)="OnSearch()"></nz-icon>
<input class="input" placeholder="Rechercher" formControlName="searchValue" (input)="OnSearch()"/>
</div>
</nz-form-control>
</nz-form-item>
</form>
-35
View File
@@ -1,35 +0,0 @@
import {Component, output} from '@angular/core';
import {NzIconDirective} from "ng-zorro-antd/icon";
import {NzColDirective} from "ng-zorro-antd/grid";
import {NzFlexDirective} from "ng-zorro-antd/flex";
import {NzFormControlComponent, NzFormDirective, NzFormItemComponent} from "ng-zorro-antd/form";
import {FormControl, FormGroup, ReactiveFormsModule} from "@angular/forms";
@Component({
selector: 'app-search',
imports: [
NzIconDirective,
NzColDirective,
NzFlexDirective,
NzFormControlComponent,
NzFormDirective,
NzFormItemComponent,
ReactiveFormsModule
],
templateUrl: './search.html',
styleUrl: './search.css',
})
export class Search {
searchForm: FormGroup = new FormGroup({
searchValue: new FormControl<string>(null)
})
searchEvent = output<string>();
OnSearch(): void {
const raw = this.searchForm.controls['searchValue'].value ?? '';
const value = String(raw).trim();
this.searchEvent.emit(value);
}
}
+1 -5
View File
@@ -8,12 +8,8 @@
<app-deliverer-form #delivererForm></app-deliverer-form> <app-deliverer-form #delivererForm></app-deliverer-form>
</app-modal-button> </app-modal-button>
<div class="ml-95 w-150">
<app-search class="w-full"></app-search>
</div>
</div> </div>
<div class="mt-1"> <div class="mt-4">
<app-deliverer-table #delivererTable></app-deliverer-table> <app-deliverer-table #delivererTable></app-deliverer-table>
</div> </div>
-2
View File
@@ -2,7 +2,6 @@ import {Component, inject, viewChild} from '@angular/core';
import {ModalButton} from "../../components/modal-button/modal-button"; import {ModalButton} from "../../components/modal-button/modal-button";
import {DelivererTable} from "../../components/deliverer-table/deliverer-table"; import {DelivererTable} from "../../components/deliverer-table/deliverer-table";
import {DelivererForm} from "../../components/deliverer-form/deliverer-form"; import {DelivererForm} from "../../components/deliverer-form/deliverer-form";
import {Search} from "../../components/search/search";
import {DeliverersService} from "../../services/api"; import {DeliverersService} from "../../services/api";
import {NzNotificationService} from "ng-zorro-antd/notification"; import {NzNotificationService} from "ng-zorro-antd/notification";
import {firstValueFrom} from "rxjs"; import {firstValueFrom} from "rxjs";
@@ -13,7 +12,6 @@ import {firstValueFrom} from "rxjs";
ModalButton, ModalButton,
DelivererTable, DelivererTable,
DelivererForm, DelivererForm,
Search
], ],
templateUrl: './deliverer.html', templateUrl: './deliverer.html',
styleUrl: './deliverer.css', styleUrl: './deliverer.css',
@@ -1,9 +1,3 @@
<div class="flex mt-2"> <div class="mt-2">
<div class="ml-95 w-150">
<app-search></app-search>
</div>
</div>
<div class="mt-1">
<app-deliverery-note-table></app-deliverery-note-table> <app-deliverery-note-table></app-deliverery-note-table>
</div> </div>
@@ -1,14 +1,10 @@
import {Component} from '@angular/core'; import {Component} from '@angular/core';
import {DelivereryNoteTable} from "../../components/deliverery-note-table/deliverery-note-table"; import {DelivereryNoteTable} from "../../components/deliverery-note-table/deliverery-note-table";
import {ModalButton} from "../../components/modal-button/modal-button";
import {DelivereryNoteForm} from "../../components/deliverery-note-form/deliverery-note-form";
import {Search} from "../../components/search/search";
@Component({ @Component({
selector: 'app-delivery-note', selector: 'app-delivery-note',
imports: [ imports: [
DelivereryNoteTable, DelivereryNoteTable,
Search
], ],
templateUrl: './delivery-note.html', templateUrl: './delivery-note.html',
styleUrl: './delivery-note.css', styleUrl: './delivery-note.css',
@@ -1,10 +1,4 @@
<div class="flex mt-2"> <div class="mt-2">
<div class="ml-95 w-150">
<app-search></app-search>
</div>
</div>
<div class="mt-1">
<app-purchase-order-table></app-purchase-order-table> <app-purchase-order-table></app-purchase-order-table>
</div> </div>
@@ -1,11 +1,9 @@
import {Component} from '@angular/core'; import {Component} from '@angular/core';
import {Search} from "../../components/search/search";
import {PurchaseOrderTable} from "../../components/purchase-order-table/purchase-order-table"; import {PurchaseOrderTable} from "../../components/purchase-order-table/purchase-order-table";
@Component({ @Component({
selector: 'app-purchase-order', selector: 'app-purchase-order',
imports: [ imports: [
Search,
PurchaseOrderTable, PurchaseOrderTable,
], ],
templateUrl: './purchase-order.html', templateUrl: './purchase-order.html',
+1 -7
View File
@@ -1,9 +1,3 @@
<div class="flex mt-2"> <div class="mt-2">
<div class="ml-95 w-150">
<app-search></app-search>
</div>
</div>
<div class="mt-1">
<app-quotation-table></app-quotation-table> <app-quotation-table></app-quotation-table>
</div> </div>
-2
View File
@@ -1,11 +1,9 @@
import {Component} from '@angular/core'; import {Component} from '@angular/core';
import {Search} from "../../components/search/search";
import {QuotationTable} from "../../components/quotation-table/quotation-table"; import {QuotationTable} from "../../components/quotation-table/quotation-table";
@Component({ @Component({
selector: 'app-quotation', selector: 'app-quotation',
imports: [ imports: [
Search,
QuotationTable QuotationTable
], ],
templateUrl: './quotation.html', templateUrl: './quotation.html',
+1 -6
View File
@@ -22,13 +22,8 @@
<app-create-quotation-form #quotationForm></app-create-quotation-form> <app-create-quotation-form #quotationForm></app-create-quotation-form>
</app-modal-button> </app-modal-button>
} }
<div class="ml-95 w-150">
<app-search (searchEvent)="onProductSearch($event)"></app-search>
</div>
</div> </div>
<div class="mt-1"> <div class="mt-4">
<app-stock-table #stockTable (selectionChange)="onSelectionChange($event)"></app-stock-table> <app-stock-table #stockTable (selectionChange)="onSelectionChange($event)"></app-stock-table>
</div> </div>
-6
View File
@@ -1,6 +1,5 @@
import {Component, inject, viewChild} from '@angular/core'; import {Component, inject, viewChild} from '@angular/core';
import {StockTable} from "../../components/stock-table/stock-table"; import {StockTable} from "../../components/stock-table/stock-table";
import {Search} from "../../components/search/search";
import {ModalButton} from "../../components/modal-button/modal-button"; import {ModalButton} from "../../components/modal-button/modal-button";
import {PurchaseordersService, QuotationsService} from "../../services/api"; import {PurchaseordersService, QuotationsService} from "../../services/api";
import {NzNotificationService} from "ng-zorro-antd/notification"; import {NzNotificationService} from "ng-zorro-antd/notification";
@@ -12,7 +11,6 @@ import {CreateQuotationForm} from "../../components/create-quotation-form/create
selector: 'app-stock', selector: 'app-stock',
imports: [ imports: [
StockTable, StockTable,
Search,
ModalButton, ModalButton,
CreatePurchaseorderForm, CreatePurchaseorderForm,
CreateQuotationForm, CreateQuotationForm,
@@ -37,10 +35,6 @@ export class Stock {
this.hasSelection = value; this.hasSelection = value;
} }
onProductSearch(query: string) {
this.productTable().applySearch(query);
}
async addPurchaseOrder() { async addPurchaseOrder() {
const form = this.createPurchaseOrder().createPurchaseOrderForm; const form = this.createPurchaseOrder().createPurchaseOrderForm;
if (form.invalid) { if (form.invalid) {
+1 -4
View File
@@ -8,11 +8,8 @@
<app-supplier-form #supplierForm></app-supplier-form> <app-supplier-form #supplierForm></app-supplier-form>
</app-modal-button> </app-modal-button>
<div class="ml-95 w-150">
<app-search (searchEvent)="onSupplierSearch($event)"></app-search>
</div>
</div> </div>
<div class="mt-1"> <div class="mt-4">
<app-supplier-table #supplierTable></app-supplier-table> <app-supplier-table #supplierTable></app-supplier-table>
</div> </div>
-6
View File
@@ -1,5 +1,4 @@
import {Component, inject, viewChild} from '@angular/core'; import {Component, inject, viewChild} from '@angular/core';
import {Search} from "../../components/search/search";
import {ModalButton} from "../../components/modal-button/modal-button"; import {ModalButton} from "../../components/modal-button/modal-button";
import {SupplierTable} from "../../components/supplier-table/supplier-table"; import {SupplierTable} from "../../components/supplier-table/supplier-table";
import {SupplierForm} from "../../components/supplier-form/supplier-form"; import {SupplierForm} from "../../components/supplier-form/supplier-form";
@@ -10,7 +9,6 @@ import {firstValueFrom} from "rxjs";
@Component({ @Component({
selector: 'app-supplier', selector: 'app-supplier',
imports: [ imports: [
Search,
SupplierForm, SupplierForm,
SupplierTable, SupplierTable,
ModalButton ModalButton
@@ -36,10 +34,6 @@ export class Supplier {
this.modal().isVisible = false; this.modal().isVisible = false;
} }
onSupplierSearch(query: string) {
this.supplierTable().applySearch(query);
}
async addSupplier() { async addSupplier() {
if (this.createSupplier().supplierForm.invalid) { if (this.createSupplier().supplierForm.invalid) {
this.notificationService.error( this.notificationService.error(
+1 -5
View File
@@ -8,12 +8,8 @@
<app-profil-form #profilForm></app-profil-form> <app-profil-form #profilForm></app-profil-form>
</app-modal-button> </app-modal-button>
<div class="ml-95 w-150">
<app-search></app-search>
</div>
</div> </div>
<div class="mt-1"> <div class="mt-4">
<app-user-table #userTable></app-user-table> <app-user-table #userTable></app-user-table>
</div> </div>
-2
View File
@@ -2,7 +2,6 @@ import {Component, inject, viewChild} from '@angular/core';
import {UserTable} from "../../components/user-table/user-table"; import {UserTable} from "../../components/user-table/user-table";
import {ModalButton} from "../../components/modal-button/modal-button"; import {ModalButton} from "../../components/modal-button/modal-button";
import {ProfilForm} from "../../components/profil-form/profil-form"; import {ProfilForm} from "../../components/profil-form/profil-form";
import {Search} from "../../components/search/search";
import {UsersService} from "../../services/api"; import {UsersService} from "../../services/api";
import {NzNotificationService} from "ng-zorro-antd/notification"; import {NzNotificationService} from "ng-zorro-antd/notification";
import {firstValueFrom} from "rxjs"; import {firstValueFrom} from "rxjs";
@@ -13,7 +12,6 @@ import {firstValueFrom} from "rxjs";
UserTable, UserTable,
ModalButton, ModalButton,
ProfilForm, ProfilForm,
Search
], ],
templateUrl: './user.html', templateUrl: './user.html',
styleUrl: './user.css', styleUrl: './user.css',