Files
MemoryBear/web/src/views/Index/index.tsx
yujiangping d957e27501 feat(homepage): add guided tour and version display functionality
- Add version API endpoint and response interface in common.ts
- Implement interactive guided tour with 4 steps for new users covering Model Management, Space Management, and User Management
- Add tour translation keys for both English and Chinese locales
- Add data-menu-id attributes to sidebar menu items for tour targeting
- Create VersionCard component to display current platform version
- Update GuideCard component with tour state management and navigation logic
- Enhance homepage dashboard with version information display
- Improve user onboarding experience with step-by-step guided navigation
2026-01-12 16:32:58 +08:00

143 lines
4.2 KiB
TypeScript

import { useEffect, useState, useRef } from 'react';
import { useTranslation } from 'react-i18next';
import { useNavigate } from 'react-router-dom';
import { Space, Button } from 'antd';
import TopCardList from './components/TopCardList';
import GuideCard from './components/GuideCard';
import VersionCard from './components/VersionCard';
import QuickActions from './components/QuickActions';
import bgImg from '@/assets/images/index/index_bg@2x.png'
import Table, { type TableRef } from '@/components/Table'
import type { ColumnsType } from 'antd/es/table';
import { formatDateTime } from '@/utils/format';
import {
getDashboardData,
getDashboardStatistics,
type DataResponse } from '@/api/common';
import { switchWorkspace } from '@/api/workspaces'
const Index = () => {
const { t } = useTranslation();
const navigate = useNavigate()
const [dashboardData, setDashboardData] = useState<DataResponse>();
const tableRef = useRef<TableRef>(null);
const tableApi = getDashboardData;
const getDashboardCount = async () => {
try{
const res = await getDashboardStatistics();
setDashboardData(res);
}catch(e) {
console.log(e)
}
}
const handleJump = (id: string) => {
switchWorkspace(id)
.then(() => {
localStorage.removeItem('user')
navigate('/')
})
}
const columns: ColumnsType = [
{
title: t('space.spaceName'),
dataIndex: 'name',
key: 'name',
},
{
title: t('space.spaceIcon'),
dataIndex: 'icon',
key: 'icon',
render:(value: string, record: any) => {
return value ? (
<img src={value} alt="icon" className='rb:w-[24px] rb:h-[24px]' />
) : (
<div className='rb:w-[24px] rb:h-[24px] rb:bg-blue-500 rb:text-white rb:rounded rb:flex rb:items-center rb:justify-center rb:text-xs rb:font-medium'>
{record.name?.charAt(0)?.toUpperCase() || '?'}
</div>
)
}
},
{
title: t('index.appCount'),
dataIndex: 'app_count',
key: 'app_count',
},
{
title: t('index.userCount'),
dataIndex: 'user_count',
key: 'user_count',
},
{
title: t('apiKey.createdAt'),
dataIndex: 'created_at',
key: 'created_at',
render:(value:string) => {
return(
<span>{formatDateTime(Number(value) ,'YYYY-MM-DD HH:mm:ss')}</span>
)
}
},
{
title: t('common.operation'),
key: 'action',
fixed: 'right',
width: 100,
render: (_, record) => (
<Space size="middle">
<Button onClick={() => handleJump(record.id)} color="primary" variant="text">{t('space.enterSpace')}</Button>
</Space>
),
},
]
useEffect(() => {
tableRef.current?.loadData();
}, [tableApi]);
useEffect(() => {
getDashboardCount();
}, [])
return (
<div className="rb:pb-[24px]">
<div className="rb:mt-[16px] rb:flex rb:gap-4">
<div className='rb:flex-1'>
<div className='rb:flex-col rb:w-full rb:h-[120px] rb:mb-4 rb:p-6 rb:leading-[30px]' style={{backgroundImage: `url(${bgImg})`, backgroundSize: '100% 100%'}}>
<div className='rb:flex rb:text-[22px] rb:text-[#0041C3] rb:font-semibold'>
{ t('index.spaceTitle' )}
</div>
<div className='rb:flex rb:mt-2 rb:text-xs rb:leading-[18px] rb:text-[#5F6266] rb:max-w-[560px]'>
{ t('index.spaceSubTitle' )}
</div>
</div>
{/* 统计卡片 */}
<TopCardList data={dashboardData} />
<div className="rb:rounded rb:max-h-[calc(100%-100px)] rb:overflow-y-auto rb:mt-4">
<Table
ref={tableRef}
apiUrl={tableApi}
columns={columns}
rowKey="id"
/>
</div>
</div>
<div className='rb:flex-0 rb:min-w-80'>
{/* 引导 */}
<GuideCard />
<div className='rb:w-full rb:mt-4 '>
<VersionCard />
</div>
{/* 快捷操作 */}
<div className='rb:w-full rb:mt-4'>
<QuickActions onNavigate={navigate} />
</div>
</div>
</div>
</div>
);
}
export default Index