可用版本

This commit is contained in:
戚辰先生 2024-11-30 17:41:04 +08:00
parent b01d9a630a
commit 7efbb63d31
9 changed files with 371 additions and 359 deletions

View File

@ -1,7 +1,7 @@
import React, { useEffect, useState } from 'react'; import React, {useEffect, useState, useCallback} from 'react';
import { Layout, Menu, Dropdown, Modal, message, Spin, Space, Tooltip } from 'antd'; import {Layout, Menu, Dropdown, Modal, message, Spin, Space, Tooltip} from 'antd';
import { useNavigate, useLocation, Outlet } from 'react-router-dom'; import {useNavigate, useLocation, Outlet} from 'react-router-dom';
import { useDispatch, useSelector } from 'react-redux'; import {useDispatch, useSelector} from 'react-redux';
import { import {
UserOutlined, UserOutlined,
LogoutOutlined, LogoutOutlined,
@ -11,18 +11,18 @@ import {
CloudOutlined CloudOutlined
} from '@ant-design/icons'; } from '@ant-design/icons';
import * as AntdIcons from '@ant-design/icons'; import * as AntdIcons from '@ant-design/icons';
import { logout, setMenus, setUserInfo } from '../store/userSlice'; import {logout, setMenus, setUserInfo} from '../store/userSlice';
import type { MenuProps } from 'antd'; import type {MenuProps} from 'antd';
import { getCurrentUser } from '../pages/Login/service'; import {getCurrentUser} from '../pages/Login/service';
import { getCurrentUserMenus } from '@/pages/System/Menu/service'; import {getCurrentUserMenus} from '@/pages/System/Menu/service';
import { getWeather } from '../services/weather'; import {getWeather} from '../services/weather';
import type { MenuResponse } from '@/pages/System/Menu/types'; import type {MenuResponse} from '@/pages/System/Menu/types';
import type { RootState } from '../store'; import type {RootState} from '../store';
import dayjs from 'dayjs'; import dayjs from 'dayjs';
import 'dayjs/locale/zh-cn'; import 'dayjs/locale/zh-cn';
const { Header, Content, Sider } = Layout; const {Header, Content, Sider} = Layout;
const { confirm } = Modal; const {confirm} = Modal;
// 设置中文语言 // 设置中文语言
dayjs.locale('zh-cn'); dayjs.locale('zh-cn');
@ -35,69 +35,71 @@ const BasicLayout: React.FC = () => {
const menus = useSelector((state: RootState) => state.user.menus); const menus = useSelector((state: RootState) => state.user.menus);
const [loading, setLoading] = useState(true); const [loading, setLoading] = useState(true);
const [currentTime, setCurrentTime] = useState(dayjs()); const [currentTime, setCurrentTime] = useState(dayjs());
const [weather, setWeather] = useState({ temp: '--', weather: '未知', city: '未知' }); const [weather, setWeather] = useState({temp: '--', weather: '未知', city: '未知'});
const [isInitialized, setIsInitialized] = useState(false);
useEffect(() => { // 将天气获取逻辑提取为useCallback
// 每秒更新时间 const fetchWeather = useCallback(async () => {
const timer = setInterval(() => {
setCurrentTime(dayjs());
}, 1000);
// 获取天气信息
const fetchWeather = async () => {
try { try {
const data = await getWeather(); const data = await getWeather();
setWeather(data); setWeather(data);
} catch (error) { } catch (error) {
console.error('获取天气信息失败:', error); console.error('获取天气信息失败:', error);
} }
}; }, []);
// 初始化用户数据 // 初始化用户数据
useEffect(() => {
const initializeUserData = async () => { const initializeUserData = async () => {
if (isInitialized) return;
try { try {
setLoading(true); setLoading(true);
// 获取并更新用户信息
const userData = await getCurrentUser(); const userData = await getCurrentUser();
dispatch(setUserInfo(userData)); dispatch(setUserInfo(userData));
const menuData = await getCurrentUserMenus(); const menuData = await getCurrentUserMenus();
dispatch(setMenus(menuData)); dispatch(setMenus(menuData));
setIsInitialized(true);
} catch (error) { } catch (error) {
message.error('初始化用户数据失败'); message.error('初始化用户数据失败');
dispatch(logout());
navigate('/login', {replace: true});
} finally { } finally {
setLoading(false); setLoading(false);
} }
}; };
fetchWeather(); if (!userInfo) {
initializeUserData(); initializeUserData();
} else {
setLoading(false);
}
}, []);
// 每半小时更新一次天气 // 处理时间和天气更新
useEffect(() => {
// 每秒更新时间
const timer = setInterval(() => {
setCurrentTime(dayjs());
}, 1000);
// 初始化天气并设置定时更新
fetchWeather();
const weatherTimer = setInterval(fetchWeather, 30 * 60 * 1000); const weatherTimer = setInterval(fetchWeather, 30 * 60 * 1000);
return () => { return () => {
clearInterval(timer); clearInterval(timer);
clearInterval(weatherTimer); clearInterval(weatherTimer);
}; };
}, [isInitialized]); }, [fetchWeather]);
const handleLogout = () => { const handleLogout = () => {
confirm({ confirm({
title: '确认退出', title: '确认退出',
icon: <ExclamationCircleOutlined />, icon: <ExclamationCircleOutlined/>,
content: '确定要退出系统吗?', content: '确定要退出系统吗?',
okText: '确定', okText: '确定',
cancelText: '取消', cancelText: '取消',
onOk: () => { onOk: () => {
dispatch(logout()); dispatch(logout());
message.success('退出成功'); message.success('退出成功');
navigate('/login', { replace: true }); navigate('/login', {replace: true});
} }
}); });
}; };
@ -105,11 +107,11 @@ const BasicLayout: React.FC = () => {
const userMenuItems: MenuProps['items'] = [ const userMenuItems: MenuProps['items'] = [
{ {
key: 'userInfo', key: 'userInfo',
icon: <UserOutlined />, icon: <UserOutlined/>,
label: ( label: (
<div style={{ padding: '4px 0' }}> <div style={{padding: '4px 0'}}>
<div>{userInfo?.nickname || userInfo?.username}</div> <div>{userInfo?.nickname || userInfo?.username}</div>
{userInfo?.email && <div style={{ fontSize: '12px', color: '#999' }}>{userInfo.email}</div>} {userInfo?.email && <div style={{fontSize: '12px', color: '#999'}}>{userInfo.email}</div>}
</div> </div>
), ),
disabled: true disabled: true
@ -119,7 +121,7 @@ const BasicLayout: React.FC = () => {
}, },
{ {
key: 'logout', key: 'logout',
icon: <LogoutOutlined />, icon: <LogoutOutlined/>,
label: '退出登录', label: '退出登录',
onClick: handleLogout onClick: handleLogout
} }
@ -130,7 +132,7 @@ const BasicLayout: React.FC = () => {
if (!iconName) return null; if (!iconName) return null;
const iconKey = `${iconName.charAt(0).toUpperCase() + iconName.slice(1)}Outlined`; const iconKey = `${iconName.charAt(0).toUpperCase() + iconName.slice(1)}Outlined`;
const Icon = (AntdIcons as any)[iconKey]; const Icon = (AntdIcons as any)[iconKey];
return Icon ? <Icon /> : null; return Icon ? <Icon/> : null;
}; };
// 将菜单数据转换为antd Menu需要的格式 // 将菜单数据转换为antd Menu需要的格式
@ -154,7 +156,7 @@ const BasicLayout: React.FC = () => {
alignItems: 'center', alignItems: 'center',
background: '#f0f2f5' background: '#f0f2f5'
}}> }}>
<Spin size="large" /> <Spin size="large"/>
<div style={{ <div style={{
marginTop: 24, marginTop: 24,
fontSize: 16, fontSize: 16,
@ -162,22 +164,22 @@ const BasicLayout: React.FC = () => {
textAlign: 'center' textAlign: 'center'
}}> }}>
<p></p> <p></p>
<p style={{ fontSize: 14 }}>...</p> <p style={{fontSize: 14}}>...</p>
</div> </div>
</div> </div>
); );
} }
return ( return (
<Layout style={{ minHeight: '100vh' }}> <Layout style={{minHeight: '100vh'}}>
<Sider> <Sider>
<div style={{ height: 32, margin: 16, background: 'rgba(255, 255, 255, 0.2)' }} /> <div style={{height: 32, margin: 16, background: 'rgba(255, 255, 255, 0.2)'}}/>
<Menu <Menu
theme="dark" theme="dark"
mode="inline" mode="inline"
selectedKeys={[location.pathname]} selectedKeys={[location.pathname]}
items={getMenuItems(menus)} items={getMenuItems(menus)}
onClick={({ key }) => navigate(key)} onClick={({key}) => navigate(key)}
/> />
</Sider> </Sider>
<Layout> <Layout>
@ -197,7 +199,7 @@ const BasicLayout: React.FC = () => {
color: 'rgba(0, 0, 0, 0.65)', color: 'rgba(0, 0, 0, 0.65)',
fontSize: 14 fontSize: 14
}}> }}>
<ClockCircleOutlined style={{ marginRight: 8 }} /> <ClockCircleOutlined style={{marginRight: 8}}/>
{currentTime.format('YYYY年MM月DD日 HH:mm:ss')} {currentTime.format('dd')} {currentTime.format('YYYY年MM月DD日 HH:mm:ss')} {currentTime.format('dd')}
</span> </span>
<Tooltip title={`${weather.city}`}> <Tooltip title={`${weather.city}`}>
@ -207,12 +209,12 @@ const BasicLayout: React.FC = () => {
color: 'rgba(0, 0, 0, 0.65)', color: 'rgba(0, 0, 0, 0.65)',
fontSize: 14 fontSize: 14
}}> }}>
<CloudOutlined style={{ marginRight: 8 }} /> <CloudOutlined style={{marginRight: 8}}/>
{weather.weather} {weather.temp} {weather.weather} {weather.temp}
</span> </span>
</Tooltip> </Tooltip>
</Space> </Space>
<Dropdown menu={{ items: userMenuItems }} trigger={['hover']}> <Dropdown menu={{items: userMenuItems}} trigger={['hover']}>
<span style={{ <span style={{
cursor: 'pointer', cursor: 'pointer',
display: 'inline-flex', display: 'inline-flex',
@ -225,15 +227,15 @@ const BasicLayout: React.FC = () => {
backgroundColor: 'rgba(0,0,0,0.025)' backgroundColor: 'rgba(0,0,0,0.025)'
} }
}}> }}>
<UserOutlined style={{ fontSize: 16, marginRight: 8 }} /> <UserOutlined style={{fontSize: 16, marginRight: 8}}/>
<span>{userInfo?.nickname || userInfo?.username}</span> <span>{userInfo?.nickname || userInfo?.username}</span>
<DownOutlined style={{ fontSize: 12, marginLeft: 6 }} /> <DownOutlined style={{fontSize: 12, marginLeft: 6}}/>
</span> </span>
</Dropdown> </Dropdown>
</Space> </Space>
</Header> </Header>
<Content style={{ margin: '24px 16px', padding: 24, background: '#fff', minHeight: 280 }}> <Content style={{margin: '24px 16px', padding: 24, background: '#fff', minHeight: 280}}>
<Outlet /> <Outlet/>
</Content> </Content>
</Layout> </Layout>
</Layout> </Layout>

View File

@ -1,8 +1,14 @@
import React from 'react'; import React, { useEffect } from 'react';
import { Card, Row, Col, Statistic } from 'antd'; import { Card, Row, Col, Statistic } from 'antd';
import { UserOutlined, ShoppingCartOutlined, FileOutlined } from '@ant-design/icons'; import { UserOutlined, ShoppingCartOutlined, FileOutlined } from '@ant-design/icons';
const Dashboard: React.FC = () => { const Dashboard: React.FC = () => {
useEffect(() => {
// 检查这里的数据加载逻辑
// 是否有多个useEffect都在加载相同的数据
// 或者依赖项是否设置正确
}, []); // 检查依赖项
return ( return (
<div> <div>
<Row gutter={16}> <Row gutter={16}>

View File

@ -1,12 +1,13 @@
import React, { useEffect, useState } from 'react'; import React, { useEffect, useState } from 'react';
import { Table, Button, Modal, Form, Input, Space, message, Switch, TreeSelect } from 'antd'; import { Table, Button, Modal, Form, Input, Space, message, Switch, TreeSelect } from 'antd';
import { PlusOutlined, EditOutlined, DeleteOutlined, KeyOutlined, TeamOutlined } from '@ant-design/icons'; import { PlusOutlined, EditOutlined, DeleteOutlined, KeyOutlined, TeamOutlined } from '@ant-design/icons';
import type { UserResponse } from './types'; import type { UserResponse, Role } from './types';
import type { DepartmentDTO } from '../Department/types'; import type { DepartmentDTO } from '../Department/types';
import { getUsers, createUser, updateUser, deleteUser, resetPassword } from './service'; import { getUsers, createUser, updateUser, deleteUser, resetPassword } from './service';
import { getDepartmentTree } from '../Department/service'; import { getDepartmentTree } from '../Department/service';
import { convertToPageParams, convertToPageInfo } from '@/utils/page'; import { convertToPageParams, convertToPageInfo } from '@/utils/page';
import { useTableData } from '@/hooks/useTableData'; import { useTableData } from '@/hooks/useTableData';
import type { FixedType, AlignType } from 'rc-table/lib/interface';
// import RoleModal from './components/RoleModal'; // import RoleModal from './components/RoleModal';
const UserPage: React.FC = () => { const UserPage: React.FC = () => {
@ -45,10 +46,6 @@ const UserPage: React.FC = () => {
const [form] = Form.useForm(); const [form] = Form.useForm();
const [passwordForm] = Form.useForm(); const [passwordForm] = Form.useForm();
useEffect(() => {
fetchUsers();
}, [pagination.current, pagination.pageSize]);
const handleAdd = () => { const handleAdd = () => {
setEditingUser(null); setEditingUser(null);
form.resetFields(); form.resetFields();
@ -61,8 +58,7 @@ const UserPage: React.FC = () => {
const handleEdit = (record: UserResponse) => { const handleEdit = (record: UserResponse) => {
setEditingUser(record); setEditingUser(record);
form.setFieldsValue({ form.setFieldsValue({
...record, ...record
password: 'UNCHANGED_PASSWORD'
}); });
setModalVisible(true); setModalVisible(true);
}; };
@ -77,7 +73,7 @@ const UserPage: React.FC = () => {
try { try {
const values = await passwordForm.validateFields(); const values = await passwordForm.validateFields();
if (editingUser) { if (editingUser) {
await resetPassword(editingUser.id); await resetPassword(editingUser.id, values.password);
message.success('密码重置成功'); message.success('密码重置成功');
setResetPasswordModalVisible(false); setResetPasswordModalVisible(false);
} }
@ -92,7 +88,6 @@ const UserPage: React.FC = () => {
if (editingUser) { if (editingUser) {
await updateUser(editingUser.id, { await updateUser(editingUser.id, {
...values, ...values,
password: values.password === 'UNCHANGED_PASSWORD' ? editingUser.password : values.password,
version: editingUser.version version: editingUser.version
}); });
message.success('更新成功'); message.success('更新成功');
@ -121,77 +116,86 @@ const UserPage: React.FC = () => {
// }; // };
const columns = [ const columns = [
{
title: 'ID',
dataIndex: 'id',
key: 'id',
width: 80,
fixed: 'left' as FixedType
},
{ {
title: '用户名', title: '用户名',
dataIndex: 'username', dataIndex: 'username',
key: 'username', key: 'username',
width: '12%', width: 120,
}, },
{ {
title: '昵称', title: '昵称',
dataIndex: 'nickname', dataIndex: 'nickname',
key: 'nickname', key: 'nickname',
width: '12%', width: 120,
}, },
{ {
title: '邮箱', title: '邮箱',
dataIndex: 'email', dataIndex: 'email',
key: 'email', key: 'email',
width: '15%', width: 200,
ellipsis: true,
}, },
{ {
title: '手机号', title: '手机号',
dataIndex: 'phone', dataIndex: 'phone',
key: 'phone', key: 'phone',
width: '12%', width: 120,
}, },
{ {
title: '角色', title: '角色',
dataIndex: 'roles', dataIndex: 'roles',
key: 'roles', key: 'roles',
width: '15%', width: 150,
ellipsis: true,
render: (roles: Role[]) => roles?.map(role => role.name).join(', ') || '-' render: (roles: Role[]) => roles?.map(role => role.name).join(', ') || '-'
}, },
{ {
title: '创建时间', title: '创建时间',
dataIndex: 'createTime', dataIndex: 'createTime',
key: 'createTime', key: 'createTime',
width: '15%', width: 180,
},
{
title: '更新时间',
dataIndex: 'updateTime',
key: 'updateTime',
width: 180,
}, },
{ {
title: '状态', title: '状态',
dataIndex: 'enabled', dataIndex: 'enabled',
key: 'enabled', key: 'enabled',
width: '8%', width: 80,
align: 'center' as AlignType,
render: (enabled: boolean) => ( render: (enabled: boolean) => (
<Switch checked={enabled} disabled /> <Switch checked={enabled} disabled size="small" />
), ),
}, },
{ {
title: '操作', title: '操作',
key: 'action', key: 'action',
width: '280px', width: 180,
fixed: 'right' as FixedType,
render: (_: any, record: UserResponse) => ( render: (_: any, record: UserResponse) => (
<Space> <Space size="small">
<Button <Button
type="link" type="link"
size="small"
icon={<EditOutlined />} icon={<EditOutlined />}
onClick={() => handleEdit(record)} onClick={() => handleEdit(record)}
> >
</Button> </Button>
{/*
<Button
type="link"
icon={<TeamOutlined />}
onClick={() => handleAssignRoles(record)}
disabled={record.username === 'admin'}
>
</Button>
*/}
<Button <Button
type="link" type="link"
size="small"
icon={<KeyOutlined />} icon={<KeyOutlined />}
onClick={() => handleResetPassword(record)} onClick={() => handleResetPassword(record)}
> >
@ -199,6 +203,7 @@ const UserPage: React.FC = () => {
</Button> </Button>
<Button <Button
type="link" type="link"
size="small"
danger danger
icon={<DeleteOutlined />} icon={<DeleteOutlined />}
onClick={() => handleDelete(record.id)} onClick={() => handleDelete(record.id)}
@ -224,12 +229,25 @@ const UserPage: React.FC = () => {
columns={columns} columns={columns}
dataSource={users} dataSource={users}
rowKey="id" rowKey="id"
scroll={{ x: 1500 }}
pagination={{ pagination={{
...pagination, ...pagination,
showSizeChanger: true, showSizeChanger: true,
showQuickJumper: true, showQuickJumper: true,
showTotal: (total) => `${total} 条记录`, showTotal: (total) => `${total} 条记录`,
onChange: onPageChange onChange: onPageChange,
size: 'small'
}}
rowSelection={{
type: 'checkbox',
onChange: (selectedRowKeys, selectedRows) => {
console.log('selectedRowKeys:', selectedRowKeys);
console.log('selectedRows:', selectedRows);
},
getCheckboxProps: (record) => ({
disabled: record.username === 'admin',
}),
fixed: true,
}} }}
size="middle" size="middle"
bordered bordered
@ -254,20 +272,6 @@ const UserPage: React.FC = () => {
> >
<Input placeholder="请输入用户名" disabled={!!editingUser} /> <Input placeholder="请输入用户名" disabled={!!editingUser} />
</Form.Item> </Form.Item>
{editingUser && (
<Form.Item name="password" hidden>
<Input type="hidden" />
</Form.Item>
)}
{!editingUser && (
<Form.Item
name="password"
label="密码"
rules={[{ required: true, message: '请输入密码' }]}
>
<Input.Password placeholder="请输入密码" />
</Form.Item>
)}
<Form.Item <Form.Item
name="nickname" name="nickname"
label="昵称" label="昵称"

View File

@ -15,7 +15,7 @@ export const getWeather = async (): Promise<WeatherData> => {
const key = '46a02c7d20534596f7386caf02204caa'; // 需要替换成你自己的 key const key = '46a02c7d20534596f7386caf02204caa'; // 需要替换成你自己的 key
const ipResponse = await axios.get(`${ipUrl}?key=${key}`); const ipResponse = await axios.get(`${ipUrl}?key=${key}`);
const { adcode } = ipResponse.data; const {adcode} = ipResponse.data;
const weatherResponse = await axios.get(`${weatherUrl}?key=${key}&city=${adcode}`); const weatherResponse = await axios.get(`${weatherUrl}?key=${key}&city=${adcode}`);
const weatherData = weatherResponse.data.lives[0]; const weatherData = weatherResponse.data.lives[0];

View File

@ -1,4 +1,4 @@
import { configureStore } from '@reduxjs/toolkit'; import {configureStore} from '@reduxjs/toolkit';
import userReducer from './userSlice'; import userReducer from './userSlice';
const store = configureStore({ const store = configureStore({

View File

@ -1,5 +1,5 @@
import { createSlice, PayloadAction } from '@reduxjs/toolkit'; import {createSlice, PayloadAction} from '@reduxjs/toolkit';
import type { MenuResponse } from '@/pages/System/Menu/types'; import type {MenuResponse} from '@/pages/System/Menu/types';
interface UserInfo { interface UserInfo {
id: number; id: number;
@ -47,5 +47,5 @@ const userSlice = createSlice({
} }
}); });
export const { setToken, setUserInfo, setMenus, logout } = userSlice.actions; export const {setToken, setUserInfo, setMenus, logout} = userSlice.actions;
export default userSlice.reducer; export default userSlice.reducer;

View File

@ -1,4 +1,4 @@
import type { Page, PageParams } from '@/types/base/page'; import type {Page, PageParams} from '@/types/base/page';
// 默认分页参数 // 默认分页参数
const DEFAULT_PAGE_SIZE = 10; const DEFAULT_PAGE_SIZE = 10;

View File

@ -1,5 +1,5 @@
import axios, { AxiosRequestConfig, AxiosResponse } from 'axios'; import axios, {AxiosRequestConfig, AxiosResponse} from 'axios';
import { message } from 'antd'; import {message} from 'antd';
export interface ApiResponse<T = any> { export interface ApiResponse<T = any> {
code: number; code: number;

View File

@ -1,4 +1,4 @@
import type { TableState } from '@/types/table'; import type {TableState} from '@/types/table';
// 创建初始状态 // 创建初始状态
export const createInitialState = <T>(pageSize: number = 10): TableState<T> => ({ export const createInitialState = <T>(pageSize: number = 10): TableState<T> => ({