| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342 |
- import React, { useState } from 'react';
- import {
- Button, Table, Space, Form, Input, Select, Modal, Card, Typography, Tag, Popconfirm,
- App
- } from 'antd';
- import { useQuery } from '@tanstack/react-query';
- import dayjs from 'dayjs';
- import { roleClient, userClient } from '@/client/api';
- import type { InferResponseType, InferRequestType } from 'hono/client';
- type UserListResponse = InferResponseType<typeof userClient.$get, 200>;
- type RoleListResponse = InferResponseType<typeof roleClient.$get, 200>;
- type CreateRoleRequest = InferRequestType<typeof roleClient.$post>['json'];
- type UserDetailResponse = InferResponseType<typeof userClient[':id']['$get'], 200>;
- type CreateUserRequest = InferRequestType<typeof userClient.$post>['json'];
- type UpdateUserRequest = InferRequestType<typeof userClient[':id']['$put']>['json'];
- const { Title } = Typography;
- // 用户管理页面
- export const UsersPage = () => {
- const { message } = App.useApp();
- const [searchParams, setSearchParams] = useState({
- page: 1,
- limit: 10,
- search: ''
- });
- const [modalVisible, setModalVisible] = useState(false);
- const [modalTitle, setModalTitle] = useState('');
- const [editingUser, setEditingUser] = useState<any>(null);
- const [form] = Form.useForm();
- const { data: usersData, isLoading, refetch } = useQuery({
- queryKey: ['users', searchParams],
- queryFn: async () => {
- const res = await userClient.$get({
- query: {
- page: searchParams.page,
- pageSize: searchParams.limit,
- keyword: searchParams.search
- }
- });
- if (res.status !== 200) {
- throw new Error('获取用户列表失败');
- }
- return await res.json();
- }
- });
- const users = usersData?.data || [];
- const pagination = {
- current: searchParams.page,
- pageSize: searchParams.limit,
- total: usersData?.pagination?.total || 0
- };
- // 处理搜索
- const handleSearch = (values: any) => {
- setSearchParams(prev => ({
- ...prev,
- search: values.search || '',
- page: 1
- }));
- };
- // 处理分页变化
- const handleTableChange = (newPagination: any) => {
- setSearchParams(prev => ({
- ...prev,
- page: newPagination.current,
- limit: newPagination.pageSize
- }));
- };
- // 打开创建用户模态框
- const showCreateModal = () => {
- setModalTitle('创建用户');
- setEditingUser(null);
- form.resetFields();
- setModalVisible(true);
- };
- // 打开编辑用户模态框
- const showEditModal = (user: any) => {
- setModalTitle('编辑用户');
- setEditingUser(user);
- form.setFieldsValue(user);
- setModalVisible(true);
- };
- // 处理模态框确认
- const handleModalOk = async () => {
- try {
- const values = await form.validateFields();
-
- if (editingUser) {
- // 编辑用户
- const res = await userClient[':id']['$put']({
- param: { id: editingUser.id },
- json: values
- });
- if (res.status !== 200) {
- throw new Error('更新用户失败');
- }
- message.success('用户更新成功');
- } else {
- // 创建用户
- const res = await userClient.$post({
- json: values
- });
- if (res.status !== 201) {
- throw new Error('创建用户失败');
- }
- message.success('用户创建成功');
- }
-
- setModalVisible(false);
- form.resetFields();
- refetch(); // 刷新用户列表
- } catch (error) {
- console.error('表单提交失败:', error);
- message.error('操作失败,请重试');
- }
- };
- // 处理删除用户
- const handleDelete = async (id: number) => {
- try {
- const res = await userClient[':id']['$delete']({
- param: { id }
- });
- if (res.status !== 204) {
- throw new Error('删除用户失败');
- }
- message.success('用户删除成功');
- refetch(); // 刷新用户列表
- } catch (error) {
- console.error('删除用户失败:', error);
- message.error('删除失败,请重试');
- }
- };
-
- const columns = [
- {
- title: '用户名',
- dataIndex: 'username',
- key: 'username',
- },
- {
- title: '昵称',
- dataIndex: 'nickname',
- key: 'nickname',
- },
- {
- title: '邮箱',
- dataIndex: 'email',
- key: 'email',
- },
- {
- title: '真实姓名',
- dataIndex: 'name',
- key: 'name',
- },
- {
- title: '角色',
- dataIndex: 'role',
- key: 'role',
- render: (role: string) => (
- <Tag color={role === 'admin' ? 'red' : 'blue'}>
- {role === 'admin' ? '管理员' : '普通用户'}
- </Tag>
- ),
- },
- {
- title: '创建时间',
- dataIndex: 'created_at',
- key: 'created_at',
- render: (date: string) => dayjs(date).format('YYYY-MM-DD HH:mm:ss'),
- },
- {
- title: '操作',
- key: 'action',
- render: (_: any, record: any) => (
- <Space size="middle">
- <Button type="link" onClick={() => showEditModal(record)}>
- 编辑
- </Button>
- <Popconfirm
- title="确定要删除此用户吗?"
- onConfirm={() => handleDelete(record.id)}
- okText="确定"
- cancelText="取消"
- >
- <Button type="link" danger>
- 删除
- </Button>
- </Popconfirm>
- </Space>
- ),
- },
- ];
-
- return (
- <div>
- <div className="mb-6 flex justify-between items-center">
- <Title level={2}>用户管理</Title>
- </div>
- <Card className="shadow-md transition-all duration-300 hover:shadow-lg">
- <Form layout="inline" onFinish={handleSearch} style={{ marginBottom: 16, padding: '16px 0' }}>
- <Form.Item name="search" label="搜索">
- <Input placeholder="用户名/昵称/邮箱" allowClear />
- </Form.Item>
- <Form.Item>
- <Space>
- <Button type="primary" htmlType="submit">
- 搜索
- </Button>
- <Button type="primary" onClick={showCreateModal}>
- 创建用户
- </Button>
- </Space>
- </Form.Item>
- </Form>
- <Table
- columns={columns}
- dataSource={users}
- loading={isLoading}
- rowKey="id"
- pagination={{
- ...pagination,
- showSizeChanger: true,
- showQuickJumper: true,
- showTotal: (total) => `共 ${total} 条记录`
- }}
- onChange={handleTableChange}
- bordered
- scroll={{ x: 'max-content' }}
- rowClassName={(record, index) => index % 2 === 0 ? 'bg-white' : 'bg-gray-50'}
- />
- </Card>
- {/* 创建/编辑用户模态框 */}
- <Modal
- title={modalTitle}
- open={modalVisible}
- onOk={handleModalOk}
- onCancel={() => {
- setModalVisible(false);
- form.resetFields();
- }}
- width={600}
- centered
- destroyOnClose
- maskClosable={false}
- >
- <Form
- form={form}
- layout="vertical"
- labelCol={{ span: 5 }}
- wrapperCol={{ span: 19 }}
- >
- <Form.Item
- name="username"
- label="用户名"
- required
- rules={[
- { required: true, message: '请输入用户名' },
- { min: 3, message: '用户名至少3个字符' }
- ]}
- >
- <Input placeholder="请输入用户名" />
- </Form.Item>
- <Form.Item
- name="nickname"
- label="昵称"
- rules={[{ required: false, message: '请输入昵称' }]}
- >
- <Input placeholder="请输入昵称" />
- </Form.Item>
- <Form.Item
- name="email"
- label="邮箱"
- rules={[
- { required: false, message: '请输入邮箱' },
- { type: 'email', message: '请输入有效的邮箱地址' }
- ]}
- >
- <Input placeholder="请输入邮箱" />
- </Form.Item>
- <Form.Item
- name="phone"
- label="手机号"
- rules={[
- { required: false, message: '请输入手机号' },
- { pattern: /^1[3-9]\d{9}$/, message: '请输入有效的手机号' }
- ]}
- >
- <Input placeholder="请输入手机号" />
- </Form.Item>
- <Form.Item
- name="name"
- label="真实姓名"
- rules={[{ required: false, message: '请输入真实姓名' }]}
- >
- <Input placeholder="请输入真实姓名" />
- </Form.Item>
- {!editingUser && (
- <Form.Item
- name="password"
- label="密码"
- required
- rules={[
- { required: true, message: '请输入密码' },
- { min: 6, message: '密码至少6个字符' }
- ]}
- >
- <Input.Password placeholder="请输入密码" />
- </Form.Item>
- )}
- <Form.Item
- name="isDisabled"
- label="状态"
- required
- rules={[{ required: true, message: '请选择状态' }]}
- >
- <Select placeholder="请选择状态">
- <Select.Option value={0}>启用</Select.Option>
- <Select.Option value={1}>禁用</Select.Option>
- </Select>
- </Form.Item>
- </Form>
- </Modal>
- </div>
- );
- };
|