"implement product CRUD API endpoints and frontend integration"
This commit is contained in:
@@ -195,32 +195,32 @@ model ProductItem {
|
||||
createdAt DateTime @default(now())
|
||||
updatedAt DateTime @updatedAt
|
||||
//
|
||||
sku String
|
||||
name String
|
||||
code String
|
||||
price Float
|
||||
taxes Float
|
||||
tags String[]
|
||||
sizes String[]
|
||||
publish String
|
||||
gender String[]
|
||||
coverUrl String
|
||||
images String[]
|
||||
colors String[]
|
||||
quantity Int
|
||||
category String
|
||||
available Int
|
||||
totalSold Int
|
||||
category String
|
||||
code String
|
||||
colors String[]
|
||||
coverUrl String
|
||||
description String
|
||||
totalRatings Float
|
||||
totalReviews Int
|
||||
gender String[]
|
||||
images String[]
|
||||
inventoryType String
|
||||
subDescription String
|
||||
priceSale Float?
|
||||
name String
|
||||
newLabel Json
|
||||
saleLabel Json
|
||||
price Float
|
||||
priceSale Float?
|
||||
publish String
|
||||
quantity Int
|
||||
ratings Json[]
|
||||
reviews ProductReview[]
|
||||
saleLabel Json
|
||||
sizes String[]
|
||||
sku String
|
||||
subDescription String
|
||||
tags String[]
|
||||
taxes Float
|
||||
totalRatings Float
|
||||
totalReviews Int
|
||||
totalSold Int
|
||||
}
|
||||
|
||||
model MailSender {
|
||||
|
43
03_source/cms_backend/src/app/api/product/create/route.ts
Normal file
43
03_source/cms_backend/src/app/api/product/create/route.ts
Normal file
@@ -0,0 +1,43 @@
|
||||
// src/app/api/product/createProduct/route.ts
|
||||
// REQ0183 frontend product new
|
||||
//
|
||||
// PURPOSE:
|
||||
// create product to db
|
||||
//
|
||||
// RULES:
|
||||
// T.B.A.
|
||||
//
|
||||
|
||||
import type { NextRequest } from 'next/server';
|
||||
|
||||
import { STATUS, response, handleError } from 'src/utils/response';
|
||||
|
||||
import { isDev } from 'src/constants';
|
||||
|
||||
import prisma from '../../../lib/prisma';
|
||||
|
||||
// ----------------------------------------------------------------------
|
||||
|
||||
/** **************************************
|
||||
* POST - Products
|
||||
*************************************** */
|
||||
export async function POST(req: NextRequest) {
|
||||
const { productData } = await req.json();
|
||||
|
||||
try {
|
||||
if (isDev) {
|
||||
console.log({ productData });
|
||||
}
|
||||
|
||||
await prisma.productItem.create({ data: productData });
|
||||
|
||||
if (isDev) {
|
||||
console.log('create done');
|
||||
}
|
||||
|
||||
return response({ hello: 'world' }, STATUS.OK);
|
||||
} catch (error) {
|
||||
console.log({ hello: 'world', productData });
|
||||
return handleError('Product - Create', error);
|
||||
}
|
||||
}
|
51
03_source/cms_backend/src/app/api/product/create/test.http
Normal file
51
03_source/cms_backend/src/app/api/product/create/test.http
Normal file
@@ -0,0 +1,51 @@
|
||||
###
|
||||
|
||||
POST http://localhost:7272/api/product/createProduct
|
||||
Content-Type: application/json
|
||||
|
||||
{
|
||||
"data": {
|
||||
"available": 99,
|
||||
"category": "T-shirts",
|
||||
"code": "PD-12345",
|
||||
"colors": [
|
||||
"Red"
|
||||
],
|
||||
"coverUrl": "",
|
||||
"description": "this is description, 会員管理機能は、単なるデータ管理ツール以上の価値を持ちます。 企業は顧客の情報や動向を深く理解し、長期的な顧客関係の構築やロイヤルティの確立、そして迅速な市場変動への対応に直結します。 会員管理機能は、現代のビジネスにおいて企業の競争力を高める基盤として欠かせないものとなっています。",
|
||||
"gender": [
|
||||
"Men"
|
||||
],
|
||||
"images": [
|
||||
"data:image/png;base64,C",
|
||||
"data:image/png;base64,C"
|
||||
],
|
||||
"inventoryType": "test",
|
||||
"name": "hello product",
|
||||
"newLabel": {
|
||||
"enabled": false,
|
||||
"content": ""
|
||||
},
|
||||
"price": 99.99,
|
||||
"priceSale": null,
|
||||
"publish": "yes",
|
||||
"quantity": 99,
|
||||
"saleLabel": {
|
||||
"enabled": false,
|
||||
"content": ""
|
||||
},
|
||||
"sizes": [
|
||||
"7"
|
||||
],
|
||||
"sku": "SK-122345",
|
||||
"subDescription": "this is test sub-description",
|
||||
"tags": [
|
||||
"Travel",
|
||||
"Finance"
|
||||
],
|
||||
"taxes": 0,
|
||||
"totalRatings": 1,
|
||||
"totalReviews": 1,
|
||||
"totalSold": 1
|
||||
}
|
||||
}
|
@@ -1,4 +1,5 @@
|
||||
// src/app/api/product/createProduct/route.ts
|
||||
// REQ0183 frontend product new
|
||||
//
|
||||
// PURPOSE:
|
||||
// create product to db
|
||||
@@ -11,6 +12,8 @@ import type { NextRequest } from 'next/server';
|
||||
|
||||
import { STATUS, response, handleError } from 'src/utils/response';
|
||||
|
||||
import { isDev } from 'src/constants';
|
||||
|
||||
import prisma from '../../../lib/prisma';
|
||||
|
||||
// ----------------------------------------------------------------------
|
||||
@@ -19,57 +22,22 @@ import prisma from '../../../lib/prisma';
|
||||
* POST - Products
|
||||
*************************************** */
|
||||
export async function POST(req: NextRequest) {
|
||||
// logger('[Product] list', products.length);
|
||||
const { data } = await req.json();
|
||||
const createForm: CreateProductData = data as unknown as CreateProductData;
|
||||
|
||||
console.log({ createForm });
|
||||
|
||||
try {
|
||||
console.log({ data });
|
||||
await prisma.productItem.create({ data: createForm });
|
||||
if (isDev) {
|
||||
console.log({ data });
|
||||
}
|
||||
|
||||
await prisma.productItem.create({ data });
|
||||
|
||||
if (isDev) {
|
||||
console.log('create done');
|
||||
}
|
||||
|
||||
return response({ hello: 'world' }, STATUS.OK);
|
||||
} catch (error) {
|
||||
console.log({ hello: 'world', data });
|
||||
return handleError('Product - Create', error);
|
||||
}
|
||||
}
|
||||
|
||||
type CreateProductData = {
|
||||
// id: string;
|
||||
sku: string;
|
||||
name: string;
|
||||
code: string;
|
||||
price: number;
|
||||
taxes: number;
|
||||
tags: string[];
|
||||
sizes: string[];
|
||||
publish: string;
|
||||
gender: string[];
|
||||
coverUrl: string;
|
||||
images: string[];
|
||||
colors: string[];
|
||||
quantity: number;
|
||||
category: string;
|
||||
available: number;
|
||||
totalSold: number;
|
||||
description: string;
|
||||
totalRatings: number;
|
||||
totalReviews: number;
|
||||
inventoryType: string;
|
||||
subDescription: string;
|
||||
priceSale: number;
|
||||
newLabel: {
|
||||
content: string;
|
||||
enabled: boolean;
|
||||
};
|
||||
saleLabel: {
|
||||
content: string;
|
||||
enabled: boolean;
|
||||
};
|
||||
// ratings: {
|
||||
// name: string;
|
||||
// starCount: number;
|
||||
// reviewCount: number;
|
||||
// }[];
|
||||
};
|
||||
|
@@ -0,0 +1,51 @@
|
||||
###
|
||||
|
||||
POST http://localhost:7272/api/product/createProduct
|
||||
Content-Type: application/json
|
||||
|
||||
{
|
||||
"data": {
|
||||
"available": 99,
|
||||
"category": "T-shirts",
|
||||
"code": "PD-12345",
|
||||
"colors": [
|
||||
"Red"
|
||||
],
|
||||
"coverUrl": "",
|
||||
"description": "this is description, 会員管理機能は、単なるデータ管理ツール以上の価値を持ちます。 企業は顧客の情報や動向を深く理解し、長期的な顧客関係の構築やロイヤルティの確立、そして迅速な市場変動への対応に直結します。 会員管理機能は、現代のビジネスにおいて企業の競争力を高める基盤として欠かせないものとなっています。",
|
||||
"gender": [
|
||||
"Men"
|
||||
],
|
||||
"images": [
|
||||
"data:image/png;base64,C",
|
||||
"data:image/png;base64,C"
|
||||
],
|
||||
"inventoryType": "test",
|
||||
"name": "hello product",
|
||||
"newLabel": {
|
||||
"enabled": false,
|
||||
"content": ""
|
||||
},
|
||||
"price": 99.99,
|
||||
"priceSale": null,
|
||||
"publish": "yes",
|
||||
"quantity": 99,
|
||||
"saleLabel": {
|
||||
"enabled": false,
|
||||
"content": ""
|
||||
},
|
||||
"sizes": [
|
||||
"7"
|
||||
],
|
||||
"sku": "SK-122345",
|
||||
"subDescription": "this is test sub-description",
|
||||
"tags": [
|
||||
"Travel",
|
||||
"Finance"
|
||||
],
|
||||
"taxes": 0,
|
||||
"totalRatings": 1,
|
||||
"totalReviews": 1,
|
||||
"totalSold": 1
|
||||
}
|
||||
}
|
22
03_source/cms_backend/src/app/api/product/delete/route.ts
Normal file
22
03_source/cms_backend/src/app/api/product/delete/route.ts
Normal file
@@ -0,0 +1,22 @@
|
||||
import type { NextRequest } from 'next/server';
|
||||
|
||||
import { STATUS, response, handleError } from 'src/utils/response';
|
||||
|
||||
import { deleteProduct } from 'src/app/services/product.service';
|
||||
|
||||
/** **************************************
|
||||
* PATCH - Delete product
|
||||
*************************************** */
|
||||
export async function PATCH(req: NextRequest) {
|
||||
try {
|
||||
const { productId } = await req.json();
|
||||
|
||||
if (!productId) throw new Error('productId cannot be null');
|
||||
|
||||
await deleteProduct(productId);
|
||||
|
||||
return response({ productId }, STATUS.OK);
|
||||
} catch (error) {
|
||||
return handleError('Product - Delete', error);
|
||||
}
|
||||
}
|
@@ -1,5 +1,7 @@
|
||||
// src/app/api/product/details/route.ts
|
||||
//
|
||||
// REQ0182 frontend product details
|
||||
//
|
||||
// PURPOSE:
|
||||
// get product from db by id
|
||||
//
|
||||
|
@@ -1,3 +1,5 @@
|
||||
###
|
||||
|
||||
GET http://localhost:7272/api/product/details?productId=e99f09a7-dd88-49d5-b1c8-1daf80c2d7b01
|
||||
|
||||
###
|
||||
GET http://localhost:7272/api/product/details?productId=e99f09a7-dd88-49d5-b1c8-1daf80c2d7b01
|
||||
|
@@ -1,23 +0,0 @@
|
||||
import { logger } from 'src/utils/logger';
|
||||
import { STATUS, response, handleError } from 'src/utils/response';
|
||||
|
||||
import { _products } from 'src/_mock/_product';
|
||||
|
||||
// ----------------------------------------------------------------------
|
||||
|
||||
export const runtime = 'edge';
|
||||
|
||||
/** **************************************
|
||||
* GET - Products
|
||||
*************************************** */
|
||||
export async function GET() {
|
||||
try {
|
||||
const products = _products();
|
||||
|
||||
logger('[Product] list', products.length);
|
||||
|
||||
return response({ products }, STATUS.OK);
|
||||
} catch (error) {
|
||||
return handleError('Product - Get list', error);
|
||||
}
|
||||
}
|
@@ -17,7 +17,7 @@ import prisma from '../../../lib/prisma';
|
||||
/** **************************************
|
||||
* GET - Products
|
||||
*************************************** */
|
||||
export async function POST(req: NextRequest) {
|
||||
export async function PUT(req: NextRequest) {
|
||||
// logger('[Product] list', products.length);
|
||||
const { data } = await req.json();
|
||||
|
||||
|
@@ -0,0 +1,51 @@
|
||||
###
|
||||
|
||||
PUT http://localhost:7272/api/product/createProduct
|
||||
Content-Type: application/json
|
||||
|
||||
{
|
||||
"data": {
|
||||
"available": 99,
|
||||
"category": "T-shirts",
|
||||
"code": "PD-12345",
|
||||
"colors": [
|
||||
"Red"
|
||||
],
|
||||
"coverUrl": "",
|
||||
"description": "this is description, 会員管理機能は、単なるデータ管理ツール以上の価値を持ちます。 企業は顧客の情報や動向を深く理解し、長期的な顧客関係の構築やロイヤルティの確立、そして迅速な市場変動への対応に直結します。 会員管理機能は、現代のビジネスにおいて企業の競争力を高める基盤として欠かせないものとなっています。",
|
||||
"gender": [
|
||||
"Men"
|
||||
],
|
||||
"images": [
|
||||
"data:image/png;base64,C",
|
||||
"data:image/png;base64,C"
|
||||
],
|
||||
"inventoryType": "test",
|
||||
"name": "hello product",
|
||||
"newLabel": {
|
||||
"enabled": false,
|
||||
"content": ""
|
||||
},
|
||||
"price": 99.99,
|
||||
"priceSale": null,
|
||||
"publish": "yes",
|
||||
"quantity": 99,
|
||||
"saleLabel": {
|
||||
"enabled": false,
|
||||
"content": ""
|
||||
},
|
||||
"sizes": [
|
||||
"7"
|
||||
],
|
||||
"sku": "SK-122345",
|
||||
"subDescription": "this is test sub-description",
|
||||
"tags": [
|
||||
"Travel",
|
||||
"Finance"
|
||||
],
|
||||
"taxes": 0,
|
||||
"totalRatings": 1,
|
||||
"totalReviews": 1,
|
||||
"totalSold": 1
|
||||
}
|
||||
}
|
129
03_source/cms_backend/src/app/api/product/update/route.ts
Normal file
129
03_source/cms_backend/src/app/api/product/update/route.ts
Normal file
@@ -0,0 +1,129 @@
|
||||
// src/app/api/product/saveProduct/route.ts
|
||||
//
|
||||
// PURPOSE:
|
||||
// save product to db by id
|
||||
//
|
||||
// RULES:
|
||||
// T.B.A.
|
||||
|
||||
import type { NextRequest } from 'next/server';
|
||||
|
||||
import { STATUS, response, handleError } from 'src/utils/response';
|
||||
|
||||
import prisma from '../../../lib/prisma';
|
||||
|
||||
// ----------------------------------------------------------------------
|
||||
|
||||
/** **************************************
|
||||
* GET - Products
|
||||
*************************************** */
|
||||
export async function PUT(req: NextRequest) {
|
||||
// logger('[Product] list', products.length);
|
||||
const { productData } = await req.json();
|
||||
|
||||
try {
|
||||
const products = await prisma.productItem.updateMany({
|
||||
data: {
|
||||
name: productData.name,
|
||||
sku: productData.sku,
|
||||
code: productData.code,
|
||||
price: productData.price,
|
||||
taxes: productData.taxes,
|
||||
tags: productData.tags,
|
||||
sizes: productData.sizes,
|
||||
publish: productData.publish,
|
||||
gender: productData.gender,
|
||||
coverUrl: productData.coverUrl,
|
||||
images: productData.images,
|
||||
colors: productData.colors,
|
||||
quantity: productData.quantity,
|
||||
category: productData.category,
|
||||
available: productData.available,
|
||||
totalSold: productData.totalSold,
|
||||
description: productData.description,
|
||||
totalRatings: productData.totalRatings,
|
||||
totalReviews: productData.totalReviews,
|
||||
inventoryType: productData.inventoryType,
|
||||
subDescription: productData.subDescription,
|
||||
priceSale: productData.priceSale,
|
||||
//
|
||||
newLabel: {
|
||||
content: productData.newLabel?.content || '',
|
||||
enabled: productData.newLabel?.enabled ?? false,
|
||||
},
|
||||
saleLabel: {
|
||||
content: productData.saleLabel?.content || '',
|
||||
enabled: productData.saleLabel?.enabled ?? false,
|
||||
},
|
||||
ratings: {
|
||||
set: productData.ratings.map((rating: { name: string; starCount: number; reviewCount: number }) => ({
|
||||
name: rating.name,
|
||||
starCount: rating.starCount,
|
||||
reviewCount: rating.reviewCount,
|
||||
})),
|
||||
},
|
||||
},
|
||||
where: { id: productData.id },
|
||||
});
|
||||
|
||||
return response({ data: productData }, STATUS.OK);
|
||||
} catch (error) {
|
||||
console.log({ data: productData });
|
||||
return handleError('Product - Get list', error);
|
||||
}
|
||||
}
|
||||
|
||||
export type IProductItem = {
|
||||
id: string;
|
||||
sku: string;
|
||||
name: string;
|
||||
code: string;
|
||||
price: number;
|
||||
taxes: number;
|
||||
tags: string[];
|
||||
sizes: string[];
|
||||
publish: string;
|
||||
gender: string[];
|
||||
coverUrl: string;
|
||||
images: string[];
|
||||
colors: string[];
|
||||
quantity: number;
|
||||
category: string;
|
||||
available: number;
|
||||
totalSold: number;
|
||||
description: string;
|
||||
totalRatings: number;
|
||||
totalReviews: number;
|
||||
// createdAt: IDateValue;
|
||||
inventoryType: string;
|
||||
subDescription: string;
|
||||
priceSale: number | null;
|
||||
// reviews: IProductReview[];
|
||||
newLabel: {
|
||||
content: string;
|
||||
enabled: boolean;
|
||||
};
|
||||
saleLabel: {
|
||||
content: string;
|
||||
enabled: boolean;
|
||||
};
|
||||
ratings: {
|
||||
name: string;
|
||||
starCount: number;
|
||||
reviewCount: number;
|
||||
}[];
|
||||
};
|
||||
|
||||
export type IDateValue = string | number | null;
|
||||
|
||||
export type IProductReview = {
|
||||
id: string;
|
||||
name: string;
|
||||
rating: number;
|
||||
comment: string;
|
||||
helpful: number;
|
||||
avatarUrl: string;
|
||||
postedAt: IDateValue;
|
||||
isPurchased: boolean;
|
||||
attachments?: string[];
|
||||
};
|
51
03_source/cms_backend/src/app/api/product/update/test.http
Normal file
51
03_source/cms_backend/src/app/api/product/update/test.http
Normal file
@@ -0,0 +1,51 @@
|
||||
###
|
||||
|
||||
PUT http://localhost:7272/api/product/createProduct
|
||||
Content-Type: application/json
|
||||
|
||||
{
|
||||
"data": {
|
||||
"available": 99,
|
||||
"category": "T-shirts",
|
||||
"code": "PD-12345",
|
||||
"colors": [
|
||||
"Red"
|
||||
],
|
||||
"coverUrl": "",
|
||||
"description": "this is description, 会員管理機能は、単なるデータ管理ツール以上の価値を持ちます。 企業は顧客の情報や動向を深く理解し、長期的な顧客関係の構築やロイヤルティの確立、そして迅速な市場変動への対応に直結します。 会員管理機能は、現代のビジネスにおいて企業の競争力を高める基盤として欠かせないものとなっています。",
|
||||
"gender": [
|
||||
"Men"
|
||||
],
|
||||
"images": [
|
||||
"data:image/png;base64,C",
|
||||
"data:image/png;base64,C"
|
||||
],
|
||||
"inventoryType": "test",
|
||||
"name": "hello product",
|
||||
"newLabel": {
|
||||
"enabled": false,
|
||||
"content": ""
|
||||
},
|
||||
"price": 99.99,
|
||||
"priceSale": null,
|
||||
"publish": "yes",
|
||||
"quantity": 99,
|
||||
"saleLabel": {
|
||||
"enabled": false,
|
||||
"content": ""
|
||||
},
|
||||
"sizes": [
|
||||
"7"
|
||||
],
|
||||
"sku": "SK-122345",
|
||||
"subDescription": "this is test sub-description",
|
||||
"tags": [
|
||||
"Travel",
|
||||
"Finance"
|
||||
],
|
||||
"taxes": 0,
|
||||
"totalRatings": 1,
|
||||
"totalReviews": 1,
|
||||
"totalSold": 1
|
||||
}
|
||||
}
|
@@ -1,5 +1,7 @@
|
||||
// src/app/services/product.service.ts
|
||||
//
|
||||
// REQ0182 frontend product details
|
||||
//
|
||||
// PURPOSE:
|
||||
// - Service for handling ProductItem Record
|
||||
//
|
||||
@@ -65,11 +67,19 @@ type UpdateProduct = {
|
||||
};
|
||||
|
||||
async function listProducts(): Promise<ProductItem[]> {
|
||||
return prisma.productItem.findMany();
|
||||
return prisma.productItem.findMany({
|
||||
include: {
|
||||
reviews: true,
|
||||
},
|
||||
});
|
||||
}
|
||||
|
||||
async function getProduct(productId: string): Promise<ProductItem | null> {
|
||||
return prisma.productItem.findUnique({ where: { id: productId } });
|
||||
return prisma.productItem.findUnique({
|
||||
where: { id: productId },
|
||||
include: { reviews: true },
|
||||
//
|
||||
});
|
||||
}
|
||||
|
||||
async function createProduct(createForm: CreateProduct) {
|
||||
|
Reference in New Issue
Block a user