mirror of
https://github.com/infiniflow/ragflow.git
synced 2025-12-08 20:42:30 +08:00
### What problem does this PR solve? Feat: Using IconFont as an additional icon library #3221 ### Type of change - [x] New Feature (non-breaking change which adds functionality)
64 lines
1.8 KiB
TypeScript
64 lines
1.8 KiB
TypeScript
import { IconFont } from '@/components/icon-font';
|
|
import { Segmented, SegmentedValue } from '@/components/ui/segmented';
|
|
import { Routes } from '@/routes';
|
|
import { useCallback, useMemo, useState } from 'react';
|
|
import { useTranslation } from 'react-i18next';
|
|
import { useNavigate } from 'umi';
|
|
import { Agents } from './agent-list';
|
|
import { SeeAllAppCard } from './application-card';
|
|
import { ChatList } from './chat-list';
|
|
|
|
const IconMap = {
|
|
[Routes.Chats]: 'chat',
|
|
[Routes.Searches]: 'search',
|
|
[Routes.Agents]: 'agent',
|
|
};
|
|
|
|
export function Applications() {
|
|
const [val, setVal] = useState(Routes.Chats);
|
|
const { t } = useTranslation();
|
|
const navigate = useNavigate();
|
|
|
|
const handleNavigate = useCallback(() => {
|
|
navigate(val);
|
|
}, [navigate, val]);
|
|
|
|
const options = useMemo(
|
|
() => [
|
|
{ value: Routes.Chats, label: t('header.chat') },
|
|
{ value: Routes.Searches, label: t('header.search') },
|
|
{ value: Routes.Agents, label: t('header.flow') },
|
|
],
|
|
[t],
|
|
);
|
|
|
|
const handleChange = (path: SegmentedValue) => {
|
|
setVal(path as string);
|
|
};
|
|
|
|
return (
|
|
<section className="mt-12">
|
|
<div className="flex justify-between items-center mb-5">
|
|
<h2 className="text-2xl font-bold flex gap-2.5">
|
|
<IconFont
|
|
name={IconMap[val as keyof typeof IconMap]}
|
|
className="size-8"
|
|
></IconFont>
|
|
{options.find((x) => x.value === val)?.label}
|
|
</h2>
|
|
<Segmented
|
|
options={options}
|
|
value={val}
|
|
onChange={handleChange}
|
|
className="bg-transparent"
|
|
></Segmented>
|
|
</div>
|
|
<div className="flex flex-wrap gap-4">
|
|
{val === Routes.Agents && <Agents></Agents>}
|
|
{val === Routes.Chats && <ChatList></ChatList>}
|
|
{<SeeAllAppCard click={handleNavigate}></SeeAllAppCard>}
|
|
</div>
|
|
</section>
|
|
);
|
|
}
|