feat: Implement product management features including CRUD operations and UI components
This commit is contained in:
@@ -1,6 +1,6 @@
|
|||||||
import { IPaginatedQuery } from '../models/service.model';
|
import { IPaginatedQuery } from '../models/service.model';
|
||||||
|
|
||||||
export const PAGINATED_QUERY_DEFAULT_VALUES: IPaginatedQuery = {
|
export const PAGINATED_QUERY_DEFAULT_VALUES: IPaginatedQuery = {
|
||||||
lastSeen: '',
|
page: 1,
|
||||||
pageSize: 10,
|
pageSize: 50,
|
||||||
};
|
};
|
||||||
|
|||||||
@@ -1,10 +1,16 @@
|
|||||||
export interface IPaginatedQuery<LastSeen = string> {
|
export interface IPaginatedQuery {
|
||||||
lastSeen: LastSeen;
|
page: number;
|
||||||
pageSize: number;
|
pageSize: number;
|
||||||
}
|
}
|
||||||
|
|
||||||
export interface IPaginatedResponse<T, LastSeen = string> {
|
export interface IPaginatedResponse<T> {
|
||||||
lastSeen: LastSeen;
|
meta: IResponseMetadata;
|
||||||
totalCount: number;
|
data: T[];
|
||||||
items: T[];
|
}
|
||||||
|
|
||||||
|
export interface IResponseMetadata {
|
||||||
|
page: number;
|
||||||
|
perPage: number;
|
||||||
|
totalPages: number;
|
||||||
|
totalRecords: number;
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1,3 +1,4 @@
|
|||||||
|
import { IPaginatedResponse } from '@/core/models/service.model';
|
||||||
import { HttpClient } from '@angular/common/http';
|
import { HttpClient } from '@angular/common/http';
|
||||||
import { Injectable } from '@angular/core';
|
import { Injectable } from '@angular/core';
|
||||||
import { Observable } from 'rxjs';
|
import { Observable } from 'rxjs';
|
||||||
@@ -10,8 +11,8 @@ export class CustomersService {
|
|||||||
|
|
||||||
private apiRoutes = CUSTOMERS_API_ROUTES;
|
private apiRoutes = CUSTOMERS_API_ROUTES;
|
||||||
|
|
||||||
getAll(): Observable<ICustomerResponse[]> {
|
getAll(): Observable<IPaginatedResponse<ICustomerResponse>> {
|
||||||
return this.http.get<ICustomerRawResponse[]>(this.apiRoutes.list());
|
return this.http.get<IPaginatedResponse<ICustomerRawResponse>>(this.apiRoutes.list());
|
||||||
}
|
}
|
||||||
|
|
||||||
getSingle(customerId: string): Observable<ICustomerResponse> {
|
getSingle(customerId: string): Observable<ICustomerResponse> {
|
||||||
|
|||||||
@@ -8,5 +8,7 @@
|
|||||||
[items]="items()"
|
[items]="items()"
|
||||||
[loading]="loading()"
|
[loading]="loading()"
|
||||||
[showDetails]="true"
|
[showDetails]="true"
|
||||||
>
|
(onAdd)="openAddForm()"
|
||||||
</app-page-data-list>
|
/>
|
||||||
|
|
||||||
|
<customer-form [(visible)]="visibleForm" (onSubmit)="refresh()" />
|
||||||
|
|||||||
@@ -3,13 +3,14 @@ import {
|
|||||||
PageDataListComponent,
|
PageDataListComponent,
|
||||||
} from '@/shared/components/pageDataList/page-data-list.component';
|
} from '@/shared/components/pageDataList/page-data-list.component';
|
||||||
import { Component, signal } from '@angular/core';
|
import { Component, signal } from '@angular/core';
|
||||||
|
import { CustomerFormComponent } from '../components/form.component';
|
||||||
import { ICustomerResponse } from '../models';
|
import { ICustomerResponse } from '../models';
|
||||||
import { CustomersService } from '../services/main.service';
|
import { CustomersService } from '../services/main.service';
|
||||||
|
|
||||||
@Component({
|
@Component({
|
||||||
selector: 'app-customers',
|
selector: 'app-customers',
|
||||||
templateUrl: './list.component.html',
|
templateUrl: './list.component.html',
|
||||||
imports: [PageDataListComponent],
|
imports: [PageDataListComponent, CustomerFormComponent],
|
||||||
})
|
})
|
||||||
export class CustomersComponent {
|
export class CustomersComponent {
|
||||||
constructor(private customerService: CustomersService) {
|
constructor(private customerService: CustomersService) {
|
||||||
@@ -34,12 +35,21 @@ export class CustomersComponent {
|
|||||||
|
|
||||||
loading = signal(false);
|
loading = signal(false);
|
||||||
items = signal<ICustomerResponse[]>([]);
|
items = signal<ICustomerResponse[]>([]);
|
||||||
|
visibleForm = signal(false);
|
||||||
|
|
||||||
|
refresh() {
|
||||||
|
this.getData();
|
||||||
|
}
|
||||||
|
|
||||||
getData() {
|
getData() {
|
||||||
this.loading.set(true);
|
this.loading.set(true);
|
||||||
this.customerService.getAll().subscribe((res) => {
|
this.customerService.getAll().subscribe((res) => {
|
||||||
this.loading.set(false);
|
this.loading.set(false);
|
||||||
this.items.set(res);
|
this.items.set(res.data);
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
|
openAddForm() {
|
||||||
|
this.visibleForm.set(true);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1,3 +1,4 @@
|
|||||||
|
import { IPaginatedResponse } from '@/core/models/service.model';
|
||||||
import { HttpClient } from '@angular/common/http';
|
import { HttpClient } from '@angular/common/http';
|
||||||
import { Injectable } from '@angular/core';
|
import { Injectable } from '@angular/core';
|
||||||
import { Observable } from 'rxjs';
|
import { Observable } from 'rxjs';
|
||||||
@@ -10,8 +11,8 @@ export class InventoriesService {
|
|||||||
|
|
||||||
private apiRoutes = INVENTORIES_API_ROUTES;
|
private apiRoutes = INVENTORIES_API_ROUTES;
|
||||||
|
|
||||||
getAll(): Observable<IInventoryResponse[]> {
|
getAll(): Observable<IPaginatedResponse<IInventoryResponse>> {
|
||||||
return this.http.get<IInventoryRawResponse[]>(this.apiRoutes.list());
|
return this.http.get<IPaginatedResponse<IInventoryRawResponse>>(this.apiRoutes.list());
|
||||||
}
|
}
|
||||||
|
|
||||||
getSingle(inventoryId: string): Observable<IInventoryResponse> {
|
getSingle(inventoryId: string): Observable<IInventoryResponse> {
|
||||||
|
|||||||
@@ -8,5 +8,7 @@
|
|||||||
[items]="items()"
|
[items]="items()"
|
||||||
[loading]="loading()"
|
[loading]="loading()"
|
||||||
[showDetails]="true"
|
[showDetails]="true"
|
||||||
>
|
(onAdd)="openAddForm()"
|
||||||
</app-page-data-list>
|
/>
|
||||||
|
|
||||||
|
<inventory-form [(visible)]="visibleForm" (onSubmit)="refresh()" />
|
||||||
|
|||||||
@@ -3,13 +3,14 @@ import {
|
|||||||
PageDataListComponent,
|
PageDataListComponent,
|
||||||
} from '@/shared/components/pageDataList/page-data-list.component';
|
} from '@/shared/components/pageDataList/page-data-list.component';
|
||||||
import { Component, signal } from '@angular/core';
|
import { Component, signal } from '@angular/core';
|
||||||
|
import { InventoryFormComponent } from '../components/form.component';
|
||||||
import { IInventoryResponse } from '../models';
|
import { IInventoryResponse } from '../models';
|
||||||
import { InventoriesService } from '../services/main.service';
|
import { InventoriesService } from '../services/main.service';
|
||||||
|
|
||||||
@Component({
|
@Component({
|
||||||
selector: 'app-inventories',
|
selector: 'app-inventories',
|
||||||
templateUrl: './list.component.html',
|
templateUrl: './list.component.html',
|
||||||
imports: [PageDataListComponent],
|
imports: [PageDataListComponent, InventoryFormComponent],
|
||||||
})
|
})
|
||||||
export class InventoriesComponent {
|
export class InventoriesComponent {
|
||||||
constructor(private inventoryService: InventoriesService) {
|
constructor(private inventoryService: InventoriesService) {
|
||||||
@@ -26,12 +27,21 @@ export class InventoriesComponent {
|
|||||||
|
|
||||||
loading = signal(false);
|
loading = signal(false);
|
||||||
items = signal<IInventoryResponse[]>([]);
|
items = signal<IInventoryResponse[]>([]);
|
||||||
|
visibleForm = signal(false);
|
||||||
|
|
||||||
|
refresh() {
|
||||||
|
this.getData();
|
||||||
|
}
|
||||||
|
|
||||||
getData() {
|
getData() {
|
||||||
this.loading.set(true);
|
this.loading.set(true);
|
||||||
this.inventoryService.getAll().subscribe((res) => {
|
this.inventoryService.getAll().subscribe((res) => {
|
||||||
this.loading.set(false);
|
this.loading.set(false);
|
||||||
this.items.set(res);
|
this.items.set(res.data);
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
|
openAddForm() {
|
||||||
|
this.visibleForm.set(true);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1,3 +1,4 @@
|
|||||||
|
import { IPaginatedResponse } from '@/core/models/service.model';
|
||||||
import { HttpClient } from '@angular/common/http';
|
import { HttpClient } from '@angular/common/http';
|
||||||
import { Injectable } from '@angular/core';
|
import { Injectable } from '@angular/core';
|
||||||
import { Observable } from 'rxjs';
|
import { Observable } from 'rxjs';
|
||||||
@@ -10,8 +11,8 @@ export class ProductBrandsService {
|
|||||||
|
|
||||||
private apiRoutes = PRODUCT_BRANDS_API_ROUTES;
|
private apiRoutes = PRODUCT_BRANDS_API_ROUTES;
|
||||||
|
|
||||||
getAll(): Observable<IProductBrandResponse[]> {
|
getAll(): Observable<IPaginatedResponse<IProductBrandResponse>> {
|
||||||
return this.http.get<IProductBrandRawResponse[]>(this.apiRoutes.list());
|
return this.http.get<IPaginatedResponse<IProductBrandRawResponse>>(this.apiRoutes.list());
|
||||||
}
|
}
|
||||||
|
|
||||||
getSingle(brandId: string): Observable<IProductBrandResponse> {
|
getSingle(brandId: string): Observable<IProductBrandResponse> {
|
||||||
|
|||||||
@@ -8,5 +8,7 @@
|
|||||||
[items]="items()"
|
[items]="items()"
|
||||||
[loading]="loading()"
|
[loading]="loading()"
|
||||||
[showDetails]="true"
|
[showDetails]="true"
|
||||||
>
|
(onAdd)="openAddForm()"
|
||||||
</app-page-data-list>
|
/>
|
||||||
|
|
||||||
|
<product-brand-form [(visible)]="visibleForm" (onSubmit)="refresh()" />
|
||||||
|
|||||||
@@ -3,13 +3,14 @@ import {
|
|||||||
PageDataListComponent,
|
PageDataListComponent,
|
||||||
} from '@/shared/components/pageDataList/page-data-list.component';
|
} from '@/shared/components/pageDataList/page-data-list.component';
|
||||||
import { Component, signal } from '@angular/core';
|
import { Component, signal } from '@angular/core';
|
||||||
|
import { ProductBrandFormComponent } from '../components/form.component';
|
||||||
import { IProductBrandResponse } from '../models';
|
import { IProductBrandResponse } from '../models';
|
||||||
import { ProductBrandsService } from '../services/main.service';
|
import { ProductBrandsService } from '../services/main.service';
|
||||||
|
|
||||||
@Component({
|
@Component({
|
||||||
selector: 'app-product-brands',
|
selector: 'app-product-brands',
|
||||||
templateUrl: './list.component.html',
|
templateUrl: './list.component.html',
|
||||||
imports: [PageDataListComponent],
|
imports: [PageDataListComponent, ProductBrandFormComponent],
|
||||||
})
|
})
|
||||||
export class ProductBrandsComponent {
|
export class ProductBrandsComponent {
|
||||||
constructor(private productBrandService: ProductBrandsService) {
|
constructor(private productBrandService: ProductBrandsService) {
|
||||||
@@ -28,12 +29,21 @@ export class ProductBrandsComponent {
|
|||||||
|
|
||||||
loading = signal(false);
|
loading = signal(false);
|
||||||
items = signal<IProductBrandResponse[]>([]);
|
items = signal<IProductBrandResponse[]>([]);
|
||||||
|
visibleForm = signal(false);
|
||||||
|
|
||||||
|
refresh() {
|
||||||
|
this.getData();
|
||||||
|
}
|
||||||
|
|
||||||
getData() {
|
getData() {
|
||||||
this.loading.set(true);
|
this.loading.set(true);
|
||||||
this.productBrandService.getAll().subscribe((res) => {
|
this.productBrandService.getAll().subscribe((res) => {
|
||||||
this.loading.set(false);
|
this.loading.set(false);
|
||||||
this.items.set(res);
|
this.items.set(res.data);
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
|
openAddForm() {
|
||||||
|
this.visibleForm.set(true);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1,3 +1,4 @@
|
|||||||
|
import { IPaginatedResponse } from '@/core/models/service.model';
|
||||||
import { HttpClient } from '@angular/common/http';
|
import { HttpClient } from '@angular/common/http';
|
||||||
import { Injectable } from '@angular/core';
|
import { Injectable } from '@angular/core';
|
||||||
import { Observable } from 'rxjs';
|
import { Observable } from 'rxjs';
|
||||||
@@ -14,8 +15,8 @@ export class ProductCategoriesService {
|
|||||||
|
|
||||||
private apiRoutes = PRODUCT_CATEGORIES_API_ROUTES;
|
private apiRoutes = PRODUCT_CATEGORIES_API_ROUTES;
|
||||||
|
|
||||||
getAll(): Observable<IProductCategoryResponse[]> {
|
getAll(): Observable<IPaginatedResponse<IProductCategoryResponse>> {
|
||||||
return this.http.get<IProductCategoryRawResponse[]>(this.apiRoutes.list());
|
return this.http.get<IPaginatedResponse<IProductCategoryRawResponse>>(this.apiRoutes.list());
|
||||||
}
|
}
|
||||||
|
|
||||||
getSingle(categoryId: string): Observable<IProductCategoryResponse> {
|
getSingle(categoryId: string): Observable<IProductCategoryResponse> {
|
||||||
|
|||||||
@@ -8,5 +8,7 @@
|
|||||||
[items]="items()"
|
[items]="items()"
|
||||||
[loading]="loading()"
|
[loading]="loading()"
|
||||||
[showDetails]="true"
|
[showDetails]="true"
|
||||||
>
|
(onAdd)="openAddForm()"
|
||||||
</app-page-data-list>
|
/>
|
||||||
|
|
||||||
|
<product-category-form [(visible)]="visibleForm" (onSubmit)="refresh()" />
|
||||||
|
|||||||
@@ -3,13 +3,14 @@ import {
|
|||||||
PageDataListComponent,
|
PageDataListComponent,
|
||||||
} from '@/shared/components/pageDataList/page-data-list.component';
|
} from '@/shared/components/pageDataList/page-data-list.component';
|
||||||
import { Component, signal } from '@angular/core';
|
import { Component, signal } from '@angular/core';
|
||||||
|
import { ProductCategoryFormComponent } from '../components/form.component';
|
||||||
import { IProductCategoryResponse } from '../models';
|
import { IProductCategoryResponse } from '../models';
|
||||||
import { ProductCategoriesService } from '../services/main.service';
|
import { ProductCategoriesService } from '../services/main.service';
|
||||||
|
|
||||||
@Component({
|
@Component({
|
||||||
selector: 'app-product-categories',
|
selector: 'app-product-categories',
|
||||||
templateUrl: './list.component.html',
|
templateUrl: './list.component.html',
|
||||||
imports: [PageDataListComponent],
|
imports: [PageDataListComponent, ProductCategoryFormComponent],
|
||||||
})
|
})
|
||||||
export class ProductCategoriesComponent {
|
export class ProductCategoriesComponent {
|
||||||
constructor(private productCategoryService: ProductCategoriesService) {
|
constructor(private productCategoryService: ProductCategoriesService) {
|
||||||
@@ -27,12 +28,21 @@ export class ProductCategoriesComponent {
|
|||||||
|
|
||||||
loading = signal(false);
|
loading = signal(false);
|
||||||
items = signal<IProductCategoryResponse[]>([]);
|
items = signal<IProductCategoryResponse[]>([]);
|
||||||
|
visibleForm = signal(false);
|
||||||
|
|
||||||
|
refresh() {
|
||||||
|
this.getData();
|
||||||
|
}
|
||||||
|
|
||||||
getData() {
|
getData() {
|
||||||
this.loading.set(true);
|
this.loading.set(true);
|
||||||
this.productCategoryService.getAll().subscribe((res) => {
|
this.productCategoryService.getAll().subscribe((res) => {
|
||||||
this.loading.set(false);
|
this.loading.set(false);
|
||||||
this.items.set(res);
|
this.items.set(res.data);
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
|
openAddForm() {
|
||||||
|
this.visibleForm.set(true);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -0,0 +1,11 @@
|
|||||||
|
<p-dialog header="فرم محصول" [(visible)]="visible" [modal]="true" [style]="{ width: '600px' }" [closable]="true">
|
||||||
|
<form [formGroup]="form" (submit)="submit()" class="flex flex-col gap-4">
|
||||||
|
<app-input label="نام" [control]="form.controls.name" name="name" />
|
||||||
|
<app-input label="توضیحات" [control]="form.controls.description" name="description" />
|
||||||
|
<app-input label="نوع محصول" [control]="form.controls.productType" name="productType" />
|
||||||
|
<!-- <app-input label="برند" [control]="form.controls.brandId" name="brandId" type="" />
|
||||||
|
<app-input label="دستهبندی" [control]="form.controls.categoryId" name="categoryId" type="number" />
|
||||||
|
<app-input label="تامینکننده" [control]="form.controls.supplierId" name="supplierId" type="number" /> -->
|
||||||
|
<app-form-footer-actions [submitLabel]="'ذخیره'" [loading]="form.disabled" (onCancel)="close()" />
|
||||||
|
</form>
|
||||||
|
</p-dialog>
|
||||||
@@ -0,0 +1,71 @@
|
|||||||
|
import { InputComponent } from '@/shared/components';
|
||||||
|
import { FormFooterActionsComponent } from '@/shared/components/formFooterActions/form-footer-actions.component';
|
||||||
|
import { Component, effect, EventEmitter, inject, Input, Output, signal } from '@angular/core';
|
||||||
|
import { FormBuilder, ReactiveFormsModule, Validators } from '@angular/forms';
|
||||||
|
import { Dialog } from 'primeng/dialog';
|
||||||
|
import { IProductRequest, IProductResponse } from '../models';
|
||||||
|
import { ProductsService } from '../services/main.service';
|
||||||
|
|
||||||
|
@Component({
|
||||||
|
selector: 'product-form',
|
||||||
|
templateUrl: './form.component.html',
|
||||||
|
imports: [ReactiveFormsModule, Dialog, InputComponent, FormFooterActionsComponent],
|
||||||
|
})
|
||||||
|
export class ProductFormComponent {
|
||||||
|
@Input() initialValues?: IProductResponse;
|
||||||
|
|
||||||
|
@Input()
|
||||||
|
set visible(v: boolean) {
|
||||||
|
this.visibleSignal.set(!!v);
|
||||||
|
}
|
||||||
|
get visible() {
|
||||||
|
return this.visibleSignal();
|
||||||
|
}
|
||||||
|
private visibleSignal = signal(false);
|
||||||
|
|
||||||
|
@Output() visibleChange = new EventEmitter<boolean>();
|
||||||
|
@Output() onSubmit = new EventEmitter<IProductResponse>();
|
||||||
|
|
||||||
|
private fb = inject(FormBuilder);
|
||||||
|
constructor(private service: ProductsService) {
|
||||||
|
effect(() => {
|
||||||
|
const v = this.visibleSignal();
|
||||||
|
if (!v) this.form.reset();
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
form = this.fb.group({
|
||||||
|
name: [this.initialValues?.name || null, [Validators.required]],
|
||||||
|
description: [this.initialValues?.description || null, [Validators.required]],
|
||||||
|
productType: [this.initialValues?.productType || null, [Validators.required]],
|
||||||
|
brandId: [this.initialValues?.brandId || null, [Validators.required]],
|
||||||
|
categoryId: [this.initialValues?.categoryId || null, [Validators.required]],
|
||||||
|
supplierId: [this.initialValues?.supplierId || null, [Validators.required]],
|
||||||
|
});
|
||||||
|
|
||||||
|
submitLoading = signal(false);
|
||||||
|
|
||||||
|
submit() {
|
||||||
|
this.form.markAllAsTouched();
|
||||||
|
if (this.form.valid) {
|
||||||
|
this.form.disable();
|
||||||
|
this.submitLoading.set(true);
|
||||||
|
this.service.create(this.form.value as IProductRequest).subscribe({
|
||||||
|
next: (res) => {
|
||||||
|
this.submitLoading.set(false);
|
||||||
|
this.form.enable();
|
||||||
|
this.form.reset();
|
||||||
|
this.onSubmit.emit(res);
|
||||||
|
},
|
||||||
|
error: () => {
|
||||||
|
this.submitLoading.set(false);
|
||||||
|
this.form.enable();
|
||||||
|
},
|
||||||
|
});
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
close() {
|
||||||
|
this.visibleChange.emit(false);
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -0,0 +1,6 @@
|
|||||||
|
const baseUrl = '/api/v1/products';
|
||||||
|
|
||||||
|
export const PRODUCTS_API_ROUTES = {
|
||||||
|
list: () => `${baseUrl}`,
|
||||||
|
single: (productId: string) => `${baseUrl}/${productId}`,
|
||||||
|
};
|
||||||
@@ -0,0 +1,2 @@
|
|||||||
|
export * from './apiRoutes';
|
||||||
|
export * from './routes';
|
||||||
@@ -0,0 +1,25 @@
|
|||||||
|
import { NamedRoutes } from '@/core';
|
||||||
|
import { Routes } from '@angular/router';
|
||||||
|
|
||||||
|
export type TProductsRouteNames = 'products' | 'product';
|
||||||
|
|
||||||
|
export const productsNamedRoutes: NamedRoutes<TProductsRouteNames> = {
|
||||||
|
products: {
|
||||||
|
path: 'products',
|
||||||
|
loadComponent: () => import('../../views/list.component').then((m) => m.ProductsComponent),
|
||||||
|
meta: {
|
||||||
|
title: 'محصولات',
|
||||||
|
pagePath: () => '/products',
|
||||||
|
},
|
||||||
|
},
|
||||||
|
product: {
|
||||||
|
path: 'products/:productId',
|
||||||
|
loadComponent: () => import('../../views/single.component').then((m) => m.ProductComponent),
|
||||||
|
meta: {
|
||||||
|
title: 'محصول',
|
||||||
|
pagePath: () => '/products/:productId',
|
||||||
|
},
|
||||||
|
},
|
||||||
|
};
|
||||||
|
|
||||||
|
export const PRODUCTS_ROUTES: Routes = Object.values(productsNamedRoutes);
|
||||||
@@ -0,0 +1 @@
|
|||||||
|
export * from './io';
|
||||||
+23
@@ -0,0 +1,23 @@
|
|||||||
|
export interface IProductRawResponse {
|
||||||
|
id: number;
|
||||||
|
name: string;
|
||||||
|
description: string;
|
||||||
|
productType: string;
|
||||||
|
createdAt: Date;
|
||||||
|
updatedAt: Date;
|
||||||
|
deletedAt: Date;
|
||||||
|
brandId: number;
|
||||||
|
categoryId: number;
|
||||||
|
supplierId: number;
|
||||||
|
}
|
||||||
|
|
||||||
|
export interface IProductResponse extends IProductRawResponse {}
|
||||||
|
|
||||||
|
export interface IProductRequest {
|
||||||
|
name: string;
|
||||||
|
description: string;
|
||||||
|
productType: string;
|
||||||
|
brandId: number;
|
||||||
|
categoryId: number;
|
||||||
|
supplierId: number;
|
||||||
|
}
|
||||||
@@ -0,0 +1,25 @@
|
|||||||
|
import { IPaginatedResponse } from '@/core/models/service.model';
|
||||||
|
import { HttpClient } from '@angular/common/http';
|
||||||
|
import { Injectable } from '@angular/core';
|
||||||
|
import { Observable } from 'rxjs';
|
||||||
|
import { PRODUCTS_API_ROUTES } from '../constants';
|
||||||
|
import { IProductRawResponse, IProductRequest, IProductResponse } from '../models';
|
||||||
|
|
||||||
|
@Injectable({ providedIn: 'root' })
|
||||||
|
export class ProductsService {
|
||||||
|
constructor(private http: HttpClient) {}
|
||||||
|
|
||||||
|
private apiRoutes = PRODUCTS_API_ROUTES;
|
||||||
|
|
||||||
|
getAll(): Observable<IPaginatedResponse<IProductResponse>> {
|
||||||
|
return this.http.get<IPaginatedResponse<IProductRawResponse>>(this.apiRoutes.list());
|
||||||
|
}
|
||||||
|
|
||||||
|
getSingle(productId: string): Observable<IProductResponse> {
|
||||||
|
return this.http.get<IProductRawResponse>(this.apiRoutes.single(productId));
|
||||||
|
}
|
||||||
|
|
||||||
|
create(data: IProductRequest): Observable<IProductResponse> {
|
||||||
|
return this.http.post<IProductRawResponse>(this.apiRoutes.list(), data);
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -0,0 +1,2 @@
|
|||||||
|
export * from './list.component';
|
||||||
|
export * from './single.component';
|
||||||
@@ -0,0 +1,14 @@
|
|||||||
|
<app-page-data-list
|
||||||
|
[pageTitle]="'مدیریت محصولات'"
|
||||||
|
[addNewCtaLabel]="'افزودن محصول جدید'"
|
||||||
|
[columns]="columns"
|
||||||
|
[showAdd]="true"
|
||||||
|
emptyPlaceholderTitle="محصولی یافت نشد"
|
||||||
|
emptyPlaceholderDescription="برای افزودن محصول جدید، روی دکمهٔ بالا کلیک کنید."
|
||||||
|
[items]="items()"
|
||||||
|
[loading]="loading()"
|
||||||
|
[showDetails]="true"
|
||||||
|
(onAdd)="openAddForm()"
|
||||||
|
/>
|
||||||
|
|
||||||
|
<product-form [(visible)]="visibleForm" (onSubmit)="refresh()" />
|
||||||
@@ -0,0 +1,52 @@
|
|||||||
|
import {
|
||||||
|
IColumn,
|
||||||
|
PageDataListComponent,
|
||||||
|
} from '@/shared/components/pageDataList/page-data-list.component';
|
||||||
|
import { Component, signal } from '@angular/core';
|
||||||
|
import { ProductFormComponent } from '../components/form.component';
|
||||||
|
import { IProductResponse } from '../models';
|
||||||
|
import { ProductsService } from '../services/main.service';
|
||||||
|
|
||||||
|
@Component({
|
||||||
|
selector: 'app-products',
|
||||||
|
templateUrl: './list.component.html',
|
||||||
|
imports: [PageDataListComponent, ProductFormComponent],
|
||||||
|
})
|
||||||
|
export class ProductsComponent {
|
||||||
|
constructor(private productService: ProductsService) {
|
||||||
|
this.getData();
|
||||||
|
}
|
||||||
|
|
||||||
|
columns = [
|
||||||
|
{ field: 'id', header: 'شناسه' },
|
||||||
|
{ field: 'name', header: 'نام' },
|
||||||
|
{ field: 'description', header: 'توضیحات' },
|
||||||
|
{ field: 'productType', header: 'نوع محصول' },
|
||||||
|
{ field: 'brandId', header: 'برند' },
|
||||||
|
{ field: 'categoryId', header: 'دستهبندی' },
|
||||||
|
{ field: 'supplierId', header: 'تامینکننده' },
|
||||||
|
{ field: 'createdAt', header: 'تاریخ ایجاد' },
|
||||||
|
{ field: 'updatedAt', header: 'تاریخ بهروزرسانی' },
|
||||||
|
{ field: 'actions' },
|
||||||
|
] as IColumn[];
|
||||||
|
|
||||||
|
loading = signal(false);
|
||||||
|
items = signal<IProductResponse[]>([]);
|
||||||
|
visibleForm = signal(false);
|
||||||
|
|
||||||
|
refresh() {
|
||||||
|
this.getData();
|
||||||
|
}
|
||||||
|
|
||||||
|
getData() {
|
||||||
|
this.loading.set(true);
|
||||||
|
this.productService.getAll().subscribe((res) => {
|
||||||
|
this.loading.set(false);
|
||||||
|
this.items.set(res.data);
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
openAddForm() {
|
||||||
|
this.visibleForm.set(true);
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -0,0 +1 @@
|
|||||||
|
<div class=""></div>
|
||||||
@@ -0,0 +1,9 @@
|
|||||||
|
import { Component } from '@angular/core';
|
||||||
|
|
||||||
|
@Component({
|
||||||
|
selector: 'app-product',
|
||||||
|
templateUrl: './single.component.html',
|
||||||
|
})
|
||||||
|
export class ProductComponent {
|
||||||
|
constructor() {}
|
||||||
|
}
|
||||||
@@ -1,3 +1,4 @@
|
|||||||
|
import { IPaginatedResponse } from '@/core/models/service.model';
|
||||||
import { HttpClient } from '@angular/common/http';
|
import { HttpClient } from '@angular/common/http';
|
||||||
import { Injectable } from '@angular/core';
|
import { Injectable } from '@angular/core';
|
||||||
import { Observable } from 'rxjs';
|
import { Observable } from 'rxjs';
|
||||||
@@ -10,8 +11,8 @@ export class StoresService {
|
|||||||
|
|
||||||
private apiRoutes = STORES_API_ROUTES;
|
private apiRoutes = STORES_API_ROUTES;
|
||||||
|
|
||||||
getAll(): Observable<IStoreResponse[]> {
|
getAll(): Observable<IPaginatedResponse<IStoreResponse>> {
|
||||||
return this.http.get<IStoreRawResponse[]>(this.apiRoutes.list());
|
return this.http.get<IPaginatedResponse<IStoreRawResponse>>(this.apiRoutes.list());
|
||||||
}
|
}
|
||||||
|
|
||||||
getSingle(storeId: string): Observable<IStoreResponse> {
|
getSingle(storeId: string): Observable<IStoreResponse> {
|
||||||
|
|||||||
@@ -8,5 +8,7 @@
|
|||||||
[items]="items()"
|
[items]="items()"
|
||||||
[loading]="loading()"
|
[loading]="loading()"
|
||||||
[showDetails]="true"
|
[showDetails]="true"
|
||||||
>
|
(onAdd)="openAddForm()"
|
||||||
</app-page-data-list>
|
/>
|
||||||
|
|
||||||
|
<store-form [(visible)]="visibleForm" (onSubmit)="refresh()" />
|
||||||
|
|||||||
@@ -3,13 +3,14 @@ import {
|
|||||||
PageDataListComponent,
|
PageDataListComponent,
|
||||||
} from '@/shared/components/pageDataList/page-data-list.component';
|
} from '@/shared/components/pageDataList/page-data-list.component';
|
||||||
import { Component, signal } from '@angular/core';
|
import { Component, signal } from '@angular/core';
|
||||||
|
import { StoreFormComponent } from '../components/form.component';
|
||||||
import { IStoreResponse } from '../models';
|
import { IStoreResponse } from '../models';
|
||||||
import { StoresService } from '../services/main.service';
|
import { StoresService } from '../services/main.service';
|
||||||
|
|
||||||
@Component({
|
@Component({
|
||||||
selector: 'app-stores',
|
selector: 'app-stores',
|
||||||
templateUrl: './list.component.html',
|
templateUrl: './list.component.html',
|
||||||
imports: [PageDataListComponent],
|
imports: [PageDataListComponent, StoreFormComponent],
|
||||||
})
|
})
|
||||||
export class StoresComponent {
|
export class StoresComponent {
|
||||||
constructor(private storeService: StoresService) {
|
constructor(private storeService: StoresService) {
|
||||||
@@ -28,12 +29,21 @@ export class StoresComponent {
|
|||||||
|
|
||||||
loading = signal(false);
|
loading = signal(false);
|
||||||
items = signal<IStoreResponse[]>([]);
|
items = signal<IStoreResponse[]>([]);
|
||||||
|
visibleForm = signal(false);
|
||||||
|
|
||||||
|
refresh() {
|
||||||
|
this.getData();
|
||||||
|
}
|
||||||
|
|
||||||
getData() {
|
getData() {
|
||||||
this.loading.set(true);
|
this.loading.set(true);
|
||||||
this.storeService.getAll().subscribe((res) => {
|
this.storeService.getAll().subscribe((res) => {
|
||||||
this.loading.set(false);
|
this.loading.set(false);
|
||||||
this.items.set(res);
|
this.items.set(res.data);
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
|
openAddForm() {
|
||||||
|
this.visibleForm.set(true);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1,3 +1,4 @@
|
|||||||
|
import { IPaginatedResponse } from '@/core/models/service.model';
|
||||||
import { HttpClient } from '@angular/common/http';
|
import { HttpClient } from '@angular/common/http';
|
||||||
import { Injectable } from '@angular/core';
|
import { Injectable } from '@angular/core';
|
||||||
import { Observable } from 'rxjs';
|
import { Observable } from 'rxjs';
|
||||||
@@ -10,8 +11,8 @@ export class SuppliersService {
|
|||||||
|
|
||||||
private apiRoutes = SUPPLIERS_API_ROUTES;
|
private apiRoutes = SUPPLIERS_API_ROUTES;
|
||||||
|
|
||||||
getAll(): Observable<ISupplierResponse[]> {
|
getAll(): Observable<IPaginatedResponse<ISupplierResponse>> {
|
||||||
return this.http.get<ISupplierRawResponse[]>(this.apiRoutes.list());
|
return this.http.get<IPaginatedResponse<ISupplierRawResponse>>(this.apiRoutes.list());
|
||||||
}
|
}
|
||||||
|
|
||||||
getSingle(supplierId: string): Observable<ISupplierResponse> {
|
getSingle(supplierId: string): Observable<ISupplierResponse> {
|
||||||
|
|||||||
@@ -8,5 +8,7 @@
|
|||||||
[items]="items()"
|
[items]="items()"
|
||||||
[loading]="loading()"
|
[loading]="loading()"
|
||||||
[showDetails]="true"
|
[showDetails]="true"
|
||||||
>
|
(onAdd)="openAddForm()"
|
||||||
</app-page-data-list>
|
/>
|
||||||
|
|
||||||
|
<supplier-form [(visible)]="visibleForm" (onSubmit)="refresh()" />
|
||||||
|
|||||||
@@ -3,13 +3,14 @@ import {
|
|||||||
PageDataListComponent,
|
PageDataListComponent,
|
||||||
} from '@/shared/components/pageDataList/page-data-list.component';
|
} from '@/shared/components/pageDataList/page-data-list.component';
|
||||||
import { Component, signal } from '@angular/core';
|
import { Component, signal } from '@angular/core';
|
||||||
|
import { SupplierFormComponent } from '../components/form.component';
|
||||||
import { ISupplierResponse } from '../models';
|
import { ISupplierResponse } from '../models';
|
||||||
import { SuppliersService } from '../services/main.service';
|
import { SuppliersService } from '../services/main.service';
|
||||||
|
|
||||||
@Component({
|
@Component({
|
||||||
selector: 'app-suppliers',
|
selector: 'app-suppliers',
|
||||||
templateUrl: './list.component.html',
|
templateUrl: './list.component.html',
|
||||||
imports: [PageDataListComponent],
|
imports: [PageDataListComponent, SupplierFormComponent],
|
||||||
})
|
})
|
||||||
export class SuppliersComponent {
|
export class SuppliersComponent {
|
||||||
constructor(private supplierService: SuppliersService) {
|
constructor(private supplierService: SuppliersService) {
|
||||||
@@ -34,12 +35,21 @@ export class SuppliersComponent {
|
|||||||
|
|
||||||
loading = signal(false);
|
loading = signal(false);
|
||||||
items = signal<ISupplierResponse[]>([]);
|
items = signal<ISupplierResponse[]>([]);
|
||||||
|
visibleForm = signal(false);
|
||||||
|
|
||||||
|
refresh() {
|
||||||
|
this.getData();
|
||||||
|
}
|
||||||
|
|
||||||
getData() {
|
getData() {
|
||||||
this.loading.set(true);
|
this.loading.set(true);
|
||||||
this.supplierService.getAll().subscribe((res) => {
|
this.supplierService.getAll().subscribe((res) => {
|
||||||
this.loading.set(false);
|
this.loading.set(false);
|
||||||
this.items.set(res);
|
this.items.set(res.data);
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
|
openAddForm() {
|
||||||
|
this.visibleForm.set(true);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1,3 +1,4 @@
|
|||||||
|
import { IPaginatedResponse } from '@/core/models/service.model';
|
||||||
import { HttpClient } from '@angular/common/http';
|
import { HttpClient } from '@angular/common/http';
|
||||||
import { Injectable } from '@angular/core';
|
import { Injectable } from '@angular/core';
|
||||||
import { Observable } from 'rxjs';
|
import { Observable } from 'rxjs';
|
||||||
@@ -10,8 +11,8 @@ export class UsersService {
|
|||||||
|
|
||||||
private apiRoutes = USERS_API_ROUTES;
|
private apiRoutes = USERS_API_ROUTES;
|
||||||
|
|
||||||
getAll(): Observable<IUserResponse[]> {
|
getAll(): Observable<IPaginatedResponse<IUserResponse>> {
|
||||||
return this.http.get<IUserRawResponse[]>(this.apiRoutes.list());
|
return this.http.get<IPaginatedResponse<IUserRawResponse>>(this.apiRoutes.list());
|
||||||
}
|
}
|
||||||
getSingle(userId: string): Observable<IUserResponse> {
|
getSingle(userId: string): Observable<IUserResponse> {
|
||||||
return this.http.get<IUserRawResponse>(this.apiRoutes.single(userId));
|
return this.http.get<IUserRawResponse>(this.apiRoutes.single(userId));
|
||||||
|
|||||||
@@ -5,7 +5,7 @@
|
|||||||
[showAdd]="true"
|
[showAdd]="true"
|
||||||
emptyPlaceholderTitle="کاربری یافت نشد"
|
emptyPlaceholderTitle="کاربری یافت نشد"
|
||||||
emptyPlaceholderDescription="برای افزودن کاربر جدید، روی دکمهٔ بالا کلیک کنید."
|
emptyPlaceholderDescription="برای افزودن کاربر جدید، روی دکمهٔ بالا کلیک کنید."
|
||||||
[items]="[]"
|
[items]="items()"
|
||||||
[loading]="loading()"
|
[loading]="loading()"
|
||||||
[showDetails]="true"
|
[showDetails]="true"
|
||||||
[showAdd]="true"
|
[showAdd]="true"
|
||||||
|
|||||||
@@ -37,8 +37,10 @@ export class UsersComponent {
|
|||||||
getData() {
|
getData() {
|
||||||
this.loading.set(true);
|
this.loading.set(true);
|
||||||
this.userService.getAll().subscribe((res) => {
|
this.userService.getAll().subscribe((res) => {
|
||||||
|
console.log(res);
|
||||||
|
|
||||||
this.loading.set(false);
|
this.loading.set(false);
|
||||||
this.items.set(res);
|
this.items.set(res.data);
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user