实现基本产品查询与页面展示
This commit is contained in:
21
src/actions/product.ts
Normal file
21
src/actions/product.ts
Normal file
@@ -0,0 +1,21 @@
|
||||
"use server"
|
||||
|
||||
import type { PageRecord } from "@/lib/api"
|
||||
import type { Product } from "@/models/product"
|
||||
import type { ProductSku } from "@/models/product_sku"
|
||||
import { callByUser } from "./base"
|
||||
|
||||
export async function getAllProduct() {
|
||||
return callByUser<Product[]>("/api/admin/product/all")
|
||||
}
|
||||
|
||||
export async function getPageProductSku(params: {
|
||||
page: number
|
||||
size: number
|
||||
product_id?: number
|
||||
}) {
|
||||
return callByUser<PageRecord<ProductSku>>(
|
||||
"/api/admin/product/sku/page",
|
||||
params,
|
||||
)
|
||||
}
|
||||
@@ -13,6 +13,7 @@ import {
|
||||
type LucideIcon,
|
||||
Package,
|
||||
Shield,
|
||||
ShoppingBag,
|
||||
Users,
|
||||
} from "lucide-react"
|
||||
import Link from "next/link"
|
||||
@@ -192,6 +193,7 @@ export default function Navigation() {
|
||||
|
||||
{/* 运营 */}
|
||||
<NavGroup title="运营">
|
||||
<NavItem href="/product" icon={ShoppingBag} label="产品管理" />
|
||||
<NavItem href="/resources" icon={Package} label="套餐管理" />
|
||||
<NavItem href="/batch" icon={ClipboardList} label="使用记录" />
|
||||
<NavItem href="/channel" icon={Code} label="IP管理" />
|
||||
|
||||
160
src/app/(root)/product/page.tsx
Normal file
160
src/app/(root)/product/page.tsx
Normal file
@@ -0,0 +1,160 @@
|
||||
"use client"
|
||||
|
||||
import { format } from "date-fns"
|
||||
import { EyeIcon, EyeOffIcon, PlusIcon, TrashIcon } from "lucide-react"
|
||||
import { Suspense, useCallback, useEffect, useMemo, useState } from "react"
|
||||
import { getAllProduct, getPageProductSku } from "@/actions/product"
|
||||
import { DataTable, useDataTable } from "@/components/data-table"
|
||||
import { Badge } from "@/components/ui/badge"
|
||||
import { Button } from "@/components/ui/button"
|
||||
import {
|
||||
Tooltip,
|
||||
TooltipContent,
|
||||
TooltipTrigger,
|
||||
} from "@/components/ui/tooltip"
|
||||
import { cn } from "@/lib/utils"
|
||||
import type { Product } from "@/models/product"
|
||||
|
||||
export default function ProductPage() {
|
||||
const [selected, setSelected] = useState<number | undefined>(undefined)
|
||||
|
||||
return (
|
||||
<div className="size-full flex gap-6 items-stretch">
|
||||
<Products selected={selected} onSelect={setSelected} />
|
||||
<ProductSkus selected={selected} />
|
||||
</div>
|
||||
)
|
||||
}
|
||||
|
||||
function Products(props: {
|
||||
selected?: number
|
||||
onSelect?: (id: number) => void
|
||||
}) {
|
||||
const [list, setList] = useState<Product[]>([])
|
||||
|
||||
const refresh = useCallback(async () => {
|
||||
const resp = await getAllProduct()
|
||||
if (resp.success) {
|
||||
setList(resp.data)
|
||||
console.log(resp.data)
|
||||
}
|
||||
}, [])
|
||||
|
||||
const selected = useMemo(() => {
|
||||
return list.find(item => item.id === props.selected)
|
||||
}, [list, props.selected])
|
||||
|
||||
useEffect(() => {
|
||||
refresh()
|
||||
}, [refresh])
|
||||
|
||||
return (
|
||||
<section className="flex-none basis-64 bg-background rounded-lg">
|
||||
<header className="pl-3 pr-1 h-10 border-b flex items-center justify-between">
|
||||
<h3 className="text-sm">产品列表</h3>
|
||||
<div>
|
||||
<Tooltip>
|
||||
<TooltipTrigger asChild>
|
||||
<Button variant="ghost" size="icon" className="size-8">
|
||||
<PlusIcon />
|
||||
</Button>
|
||||
</TooltipTrigger>
|
||||
<TooltipContent>
|
||||
<p>新建产品</p>
|
||||
</TooltipContent>
|
||||
</Tooltip>
|
||||
|
||||
{!!selected && (
|
||||
<Tooltip>
|
||||
<TooltipTrigger asChild>
|
||||
<Button variant="ghost" size="icon" className="size-8">
|
||||
{selected.status ? <EyeOffIcon /> : <EyeIcon />}
|
||||
</Button>
|
||||
</TooltipTrigger>
|
||||
<TooltipContent>
|
||||
<p>{selected.status ? "禁用产品" : "启用产品"}</p>
|
||||
</TooltipContent>
|
||||
</Tooltip>
|
||||
)}
|
||||
|
||||
<Tooltip>
|
||||
<TooltipTrigger asChild>
|
||||
<Button variant="ghost" size="icon" className="size-8">
|
||||
<TrashIcon />
|
||||
</Button>
|
||||
</TooltipTrigger>
|
||||
<TooltipContent>
|
||||
<p>删除产品</p>
|
||||
</TooltipContent>
|
||||
</Tooltip>
|
||||
</div>
|
||||
</header>
|
||||
<ul>
|
||||
{list.map(item => (
|
||||
<li key={item.id} className="p-1">
|
||||
<Button
|
||||
variant="ghost"
|
||||
className={cn(
|
||||
"size-full box-border p-2 rounded-md flex justify-between items-center select-none",
|
||||
selected?.id === item.id && "bg-primary/20",
|
||||
)}
|
||||
onClick={() => props.onSelect?.(item.id)}
|
||||
>
|
||||
<div>
|
||||
<p>{item.name}</p>
|
||||
<p className="text-sm text-gray-500">{item.description}</p>
|
||||
</div>
|
||||
<Badge className="bg-green-600/60">已启用</Badge>
|
||||
</Button>
|
||||
</li>
|
||||
))}
|
||||
</ul>
|
||||
</section>
|
||||
)
|
||||
}
|
||||
|
||||
function ProductSkus(props: { selected?: number }) {
|
||||
const action = useCallback(
|
||||
(page: number, size: number) => {
|
||||
return getPageProductSku({ page, size, product_id: props.selected })
|
||||
},
|
||||
[props.selected],
|
||||
)
|
||||
|
||||
const table = useDataTable(action)
|
||||
|
||||
return (
|
||||
<div className="flex-auto overflow-hidden flex flex-col items-stretch gap-3">
|
||||
<div>
|
||||
<Button>新建套餐</Button>
|
||||
</div>
|
||||
<Suspense>
|
||||
<DataTable
|
||||
classNames={{
|
||||
root: "overflow-auto",
|
||||
}}
|
||||
{...table}
|
||||
columns={[
|
||||
{ header: "套餐编码", accessorKey: "code" },
|
||||
{ header: "套餐名称", accessorKey: "name" },
|
||||
{ header: "单价", accessorKey: "price" },
|
||||
{ header: "折扣", accessorKey: "discount" },
|
||||
{
|
||||
header: "最终价格",
|
||||
accessorFn: row => Number(row.price) * row.discount,
|
||||
},
|
||||
{
|
||||
header: "创建时间",
|
||||
accessorFn: row => format(row.created_at, "yyyy-MM-dd HH:mm"),
|
||||
},
|
||||
{
|
||||
header: "更新时间",
|
||||
accessorFn: row => format(row.updated_at, "yyyy-MM-dd HH:mm"),
|
||||
},
|
||||
{ header: "操作", cell: () => <div></div> },
|
||||
]}
|
||||
/>
|
||||
</Suspense>
|
||||
</div>
|
||||
)
|
||||
}
|
||||
@@ -1,5 +0,0 @@
|
||||
"use client"
|
||||
|
||||
export default function SecurityPage() {
|
||||
return <div>管理员页面待完善~</div>
|
||||
}
|
||||
@@ -22,6 +22,7 @@ export type DataTableProps<T> = {
|
||||
columns: ColumnDef<T>[]
|
||||
pagination: PaginationProps
|
||||
classNames?: {
|
||||
root?: string
|
||||
headRow?: string
|
||||
dataRow?: string
|
||||
}
|
||||
@@ -46,7 +47,7 @@ export function DataTable<T extends Record<string, unknown>>(
|
||||
})
|
||||
|
||||
return (
|
||||
<div className="flex flex-col gap-3">
|
||||
<div className={cn("flex flex-col gap-3", props.classNames?.root)}>
|
||||
{/* 数据表 */}
|
||||
<div className="rounded-md relative bg-card">
|
||||
<TableRoot>
|
||||
|
||||
@@ -2,6 +2,7 @@ import {
|
||||
type Dispatch,
|
||||
type SetStateAction,
|
||||
useCallback,
|
||||
useEffect,
|
||||
useState,
|
||||
} from "react"
|
||||
import { toast } from "sonner"
|
||||
@@ -49,3 +50,24 @@ export function useFetch<TArgs extends unknown[], TResult>(
|
||||
],
|
||||
)
|
||||
}
|
||||
|
||||
type Action = <P extends unknown[], R>(...args: P) => Promise<R>
|
||||
|
||||
export function useAction(action: Action) {
|
||||
const [status, setStatus] = useStatus()
|
||||
const func = useCallback(
|
||||
async (...args: Parameters<Action>) => {
|
||||
try {
|
||||
setStatus("load")
|
||||
await action(...args)
|
||||
setStatus("done")
|
||||
} catch (e) {
|
||||
setStatus("fail")
|
||||
throw e
|
||||
}
|
||||
},
|
||||
[action, setStatus],
|
||||
)
|
||||
|
||||
return [func, status]
|
||||
}
|
||||
|
||||
5
src/models/base/model.ts
Normal file
5
src/models/base/model.ts
Normal file
@@ -0,0 +1,5 @@
|
||||
export type Model = {
|
||||
id: number
|
||||
created_at: Date
|
||||
updated_at: Date
|
||||
}
|
||||
12
src/models/product.ts
Normal file
12
src/models/product.ts
Normal file
@@ -0,0 +1,12 @@
|
||||
import type { Model } from "./base/model"
|
||||
import type { ProductSku } from "./product_sku"
|
||||
|
||||
export type Product = Model & {
|
||||
code: string
|
||||
name: string
|
||||
description?: string
|
||||
sort: number
|
||||
status: number
|
||||
|
||||
skus?: ProductSku[]
|
||||
}
|
||||
12
src/models/product_sku.ts
Normal file
12
src/models/product_sku.ts
Normal file
@@ -0,0 +1,12 @@
|
||||
import type { Model } from "./base/model"
|
||||
import type { Product } from "./product"
|
||||
|
||||
export type ProductSku = Model & {
|
||||
product_id: number
|
||||
code: string
|
||||
name: string
|
||||
price: string
|
||||
discount: number
|
||||
|
||||
product?: Product
|
||||
}
|
||||
Reference in New Issue
Block a user