Files
ThriveX-Admin/src/pages/Cate/index.tsx
2024-08-06 23:21:42 +08:00

165 lines
6.1 KiB
TypeScript

import React, { useState, useEffect, useRef } from 'react';
import { Cate } from '@/types/cate';
import { addCateDataAPI, delCateDataAPI, editCateDataAPI, getCateDataAPI, getCateListAPI } from '@/api/Cate';
import Breadcrumb from '@/components/Breadcrumbs';
import { DownOutlined } from '@ant-design/icons';
import { MdOutlineKeyboardArrowDown, MdOutlineKeyboardArrowUp } from "react-icons/md";
import { Form, Input, Button, Tree, Modal, notification, Spin, Dropdown, Card, MenuProps, Popconfirm } from 'antd';
import "./index.scss"
const CateManager: React.FC = () => {
const [loading, setLoading] = useState(false);
const [model, setModel] = useState(false);
const [cate, setCate] = useState<Cate>({ name: '', mark: '', url: '', icon: '', level: 0 });
const [list, setList] = useState<Cate[]>([]);
const formRef = useRef<any>(null);
const getCateList = async () => {
setLoading(true);
const { data } = await getCateListAPI();
setList(data as Cate[]);
setLoading(false);
};
const addCateData = (id: number) => {
setModel(true);
setCate({ ...cate, level: id });
};
const editCateData = async (id: number) => {
setLoading(true);
setModel(true);
const { data } = await getCateDataAPI(id);
setCate(data);
setLoading(false);
};
const submit = async () => {
formRef.current
.validateFields()
.then(async (values: any) => {
if (cate.id) {
await editCateDataAPI({ ...cate, ...values });
notification.success({ message: '🎉 修改分类成功' });
} else {
await addCateDataAPI({ ...cate, ...values });
notification.success({ message: '🎉 新增分类成功' });
}
// 初始化表单状态
formRef.current.resetFields();
setCate({ name: '', mark: '', url: '', icon: '', level: 0 });
setModel(false);
getCateList();
})
.catch((errorInfo: any) => {
console.error('Validate Failed:', errorInfo);
});
};
const delCateData = async (id: number) => {
await delCateDataAPI(id);
notification.success({ message: '🎉 删除分类成功' });
getCateList();
};
const closeModel = () => {
setModel(false);
formRef.current.resetFields();
};
// 将数据转换为树形结构
const treeData = (data: Cate[]): any[] => (
data.map(item => {
const items: MenuProps['items'] = [
{
key: '1',
label: <span onClick={() => addCateData(item.id!)}></span>,
},
{
key: '2',
label: <span onClick={() => editCateData(item.id!)}></span>,
},
{
key: '3',
label: (
<Popconfirm title="警告" description="你确定要删除吗" okText="确定" cancelText="取消" onConfirm={() => delCateData(item.id!)}>
<span></span>
</Popconfirm>
),
},
];
return ({
title: (
<div className='group w-full flex justify-between items-center'>
<h3>{item.name}</h3>
<div className='controls hidden'>
<Dropdown menu={{ items }} arrow>
<Button type='link' size='small'> <DownOutlined /></Button>
</Dropdown>
</div>
</div>
),
key: item.id,
children: item.children ? treeData(item.children) : [],
})
})
)
useEffect(() => {
getCateList();
}, []);
useEffect(() => {
if (model && formRef.current) {
formRef.current.setFieldsValue(cate);
}
}, [cate, model]);
return (
<Card title={<Breadcrumb pageName="分类管理" />} className='border-stroke dark:border-strokedark [&>.ant-card-head]:border-stroke [&>.ant-card-head]:dark:border-strokedark dark:bg-boxdark [&>.ant-card-body]:pt-2'>
<div className='mt-2 mb-4 text-center'>
<Button type="primary" onClick={() => setModel(true)}></Button>
</div>
<Spin spinning={loading}>
<Tree defaultExpandAll treeData={treeData(list)} />
</Spin>
<Modal title="新增分类导航" open={model} onCancel={closeModel} footer={null}>
<Form ref={formRef} layout="vertical" initialValues={cate} size='large' className='mt-6'>
<Form.Item label="名称" name="name" rules={[{ required: true, message: '分类名称不能为空' }, { min: 1, max: 10, message: '分类名称限制为 1 ~ 10 个字符' }]}>
<Input placeholder="大前端" />
</Form.Item>
<Form.Item label="标识" name="mark" rules={[{ required: true, message: '分类标识不能为空' }, { min: 1, max: 10, message: '分类标识限制为 1 ~ 10 个字符' }]}>
<Input placeholder="dqd" />
</Form.Item>
<Form.Item label="图标" name="icon">
<Input placeholder="🎉" />
</Form.Item>
<Form.Item label="链接(选填)" name="url">
<Input placeholder="https://liuyuyang.net/" />
</Form.Item>
<Form.Item className='!mb-0 flex justify-end'>
<Button onClick={closeModel}></Button>
<Button type="primary" onClick={submit} className='ml-2'></Button>
</Form.Item>
</Form>
</Modal>
</Card>
);
};
export default CateManager;