312 lines
7.8 KiB
TypeScript
312 lines
7.8 KiB
TypeScript
"use client";
|
|
|
|
import { DeleteOutlined, EditOutlined, PlusOutlined, ExclamationCircleOutlined } from '@ant-design/icons';
|
|
import { Button, Divider, message, Drawer, Modal } from 'antd';
|
|
import React, { useState, useRef } from 'react';
|
|
import { PageContainer, FooterToolbar } from '@ant-design/pro-layout';
|
|
import ProTable from '@ant-design/pro-table';
|
|
import type { ProColumns, ActionType } from '@ant-design/pro-table';
|
|
import ProDescriptions from '@ant-design/pro-descriptions';
|
|
import type { ProDescriptionsItemProps } from '@ant-design/pro-descriptions';
|
|
// import CreateUserForm from './components/CreateUserForm';
|
|
// import UpdateUserForm from './components/UpdateUserForm';
|
|
// import type { UserInfo, UserListItem } from './data.d';
|
|
// import {
|
|
// queryUserList,
|
|
// updateUser,
|
|
// addUser,
|
|
// removeUser,
|
|
// } from './service';
|
|
import md5 from 'md5';
|
|
import {
|
|
UserInfo, UserListItem, queryUserList
|
|
} from '@/lib/http/staff';
|
|
import Link from 'next/link';
|
|
|
|
const { confirm } = Modal;
|
|
|
|
/**
|
|
* 添加节点
|
|
* @param fields
|
|
*/
|
|
const handleAdd = async (fields: UserInfo) => {
|
|
const hide = message.loading('正在添加');
|
|
try {
|
|
fields.password = md5(fields.password)
|
|
fields.user_alias = fields.user_name
|
|
console.log("----------:", fields)
|
|
|
|
// await addUser({ ...fields });
|
|
hide();
|
|
message.success('添加成功');
|
|
return true;
|
|
} catch (error) {
|
|
hide();
|
|
message.error('添加失败请重试!');
|
|
return false;
|
|
}
|
|
};
|
|
|
|
/**
|
|
* 更新节点
|
|
* @param fields
|
|
*/
|
|
const handleUpdate = async (fields: UserInfo) => {
|
|
const hide = message.loading('正在更新');
|
|
try {
|
|
// fields.deptId = Number(fields.deptId)
|
|
fields.password = md5(fields.password)
|
|
// await updateUser(fields);
|
|
hide();
|
|
message.success('更新成功');
|
|
return true;
|
|
} catch (error) {
|
|
hide();
|
|
message.error('更新失败请重试!');
|
|
return false;
|
|
}
|
|
};
|
|
|
|
/**
|
|
* 删除节点
|
|
* @param selectedRows
|
|
*/
|
|
const handleRemove = async (selectedRows: UserListItem[]) => {
|
|
const hide = message.loading('正在删除');
|
|
if (!selectedRows) return true;
|
|
|
|
|
|
console.log("------>", selectedRows)
|
|
try {
|
|
// await removeUser({
|
|
// user_name: selectedRows.map((row) => row.user_name),
|
|
// });
|
|
hide();
|
|
message.success('删除成功,即将刷新');
|
|
return true;
|
|
} catch (error) {
|
|
hide();
|
|
message.error('删除失败,请重试');
|
|
return false;
|
|
}
|
|
};
|
|
|
|
const UserList: React.FC = () => {
|
|
const [createModalVisible, handleModalVisible] = useState<boolean>(false);
|
|
const [updateModalVisible, handleUpdateModalVisible] = useState<boolean>(false);
|
|
const [showDetail, setShowDetail] = useState<boolean>(false);
|
|
const actionRef = useRef<ActionType>();
|
|
const [currentRow, setCurrentRow] = useState<UserListItem>();
|
|
const [selectedRowsState, setSelectedRows] = useState<UserListItem[]>([]);
|
|
|
|
const showDeleteConfirm = (item: UserListItem) => {
|
|
confirm({
|
|
title: '是否删除记录?',
|
|
icon: <ExclamationCircleOutlined />,
|
|
content: '删除的记录不能恢复,请确认!',
|
|
onOk() {
|
|
handleRemove([item]).then(() => {
|
|
actionRef.current?.reloadAndRest?.();
|
|
});
|
|
},
|
|
onCancel() {
|
|
},
|
|
});
|
|
};
|
|
|
|
|
|
|
|
const columns: ProColumns<UserListItem>[] = [
|
|
{
|
|
title: '编号11',
|
|
dataIndex: 'user_id',
|
|
hideInSearch: true,
|
|
},
|
|
{
|
|
title: '账号',
|
|
dataIndex: 'user_name',
|
|
hideInSearch: true,
|
|
// render: (dom, entity) => {
|
|
// return <a onClick={() => {
|
|
// setCurrentRow(entity);
|
|
// setShowDetail(true);
|
|
// }}>{dom}</a>;
|
|
// },
|
|
},
|
|
{
|
|
title: '昵称',
|
|
dataIndex: 'user_alias',
|
|
hideInSearch: true,
|
|
},
|
|
{
|
|
title: '创建人',
|
|
dataIndex: 'create_user',
|
|
hideInSearch: true,
|
|
// hideInTable: true,
|
|
},
|
|
|
|
{
|
|
title: '权限组',
|
|
dataIndex: 'role_name',
|
|
hideInSearch: true,
|
|
},
|
|
{
|
|
title: '创建时间',
|
|
dataIndex: 'created_time',
|
|
valueType: 'dateTime',
|
|
hideInSearch: true,
|
|
// hideInTable: true,
|
|
},
|
|
{
|
|
title: '操作',
|
|
dataIndex: 'option',
|
|
valueType: 'option',
|
|
render: (_, record) => (
|
|
<>
|
|
<Button
|
|
type="primary"
|
|
icon={<EditOutlined />}
|
|
onClick={() => {
|
|
handleUpdateModalVisible(true);
|
|
setCurrentRow(record);
|
|
}}
|
|
>
|
|
编辑
|
|
</Button>
|
|
<Divider type="vertical" />
|
|
<Button
|
|
type="primary"
|
|
danger
|
|
icon={<DeleteOutlined />}
|
|
onClick={() => {
|
|
showDeleteConfirm(record);
|
|
}}
|
|
>
|
|
删除
|
|
</Button>
|
|
</>
|
|
),
|
|
},
|
|
];
|
|
|
|
return (
|
|
<PageContainer>
|
|
<ProTable<UserListItem>
|
|
headerTitle="知识库列表"
|
|
actionRef={actionRef}
|
|
rowKey="user_id"
|
|
search={{
|
|
labelWidth: 120,
|
|
}}
|
|
toolBarRender={() => [
|
|
<Link href={`/manage/repository/new`} >
|
|
<Button type="primary" key="primary"
|
|
// onClick={() => handleModalVisible(true)}
|
|
>
|
|
<PlusOutlined /> 增加知识库
|
|
</Button>
|
|
</Link>,
|
|
]}
|
|
params={{
|
|
current: 0
|
|
}}
|
|
request={queryUserList}
|
|
columns={columns}
|
|
rowSelection={{
|
|
onChange: (_, selectedRows) => setSelectedRows(selectedRows),
|
|
}}
|
|
pagination={{ pageSize: 10 }}
|
|
/>
|
|
{selectedRowsState?.length > 0 && (
|
|
<FooterToolbar
|
|
extra={
|
|
<div>
|
|
已选择 <a style={{ fontWeight: 600 }}>{selectedRowsState.length}</a> 项
|
|
</div>
|
|
}
|
|
>
|
|
<Button
|
|
onClick={async () => {
|
|
await handleRemove(selectedRowsState);
|
|
setSelectedRows([]);
|
|
actionRef.current?.reloadAndRest?.();
|
|
}}
|
|
>
|
|
批量删除
|
|
</Button>
|
|
</FooterToolbar>
|
|
)}
|
|
|
|
{/* <CreateUserForm
|
|
key={'CreateUserForm'}
|
|
onSubmit={async (value) => {
|
|
|
|
const success = await handleAdd(value);
|
|
if (success) {
|
|
handleModalVisible(false);
|
|
setCurrentRow(undefined);
|
|
if (actionRef.current) {
|
|
actionRef.current.reload();
|
|
}
|
|
}
|
|
}}
|
|
onCancel={() => {
|
|
handleModalVisible(false);
|
|
if (!showDetail) {
|
|
setCurrentRow(undefined);
|
|
}
|
|
}}
|
|
createModalVisible={createModalVisible}
|
|
/> */}
|
|
|
|
{/* <UpdateUserForm
|
|
key={'UpdateUserForm'}
|
|
onSubmit={async (value) => {
|
|
const success = await handleUpdate(value);
|
|
if (success) {
|
|
handleUpdateModalVisible(false);
|
|
setCurrentRow(undefined);
|
|
if (actionRef.current) {
|
|
actionRef.current.reload();
|
|
}
|
|
}
|
|
}}
|
|
onCancel={() => {
|
|
handleUpdateModalVisible(false);
|
|
if (!showDetail) {
|
|
setCurrentRow(undefined);
|
|
}
|
|
}}
|
|
updateModalVisible={updateModalVisible}
|
|
values={currentRow || {}}
|
|
/> */}
|
|
|
|
<Drawer
|
|
width={600}
|
|
open={showDetail}
|
|
onClose={() => {
|
|
setCurrentRow(undefined);
|
|
setShowDetail(false)
|
|
}}
|
|
closable={false}
|
|
>
|
|
{currentRow?.user_id && (
|
|
<ProDescriptions<UserListItem>
|
|
column={2}
|
|
title={currentRow?.user_name}
|
|
request={async () => ({
|
|
data: currentRow || {},
|
|
})}
|
|
params={{
|
|
id: currentRow?.user_id,
|
|
}}
|
|
columns={columns as ProDescriptionsItemProps<UserListItem>[]}
|
|
/>
|
|
)}
|
|
</Drawer>
|
|
</PageContainer>
|
|
);
|
|
};
|
|
|
|
export default UserList;
|