mirror of
https://github.com/ant-design/ant-design.git
synced 2024-12-13 23:59:12 +08:00
51 lines
1.1 KiB
TypeScript
51 lines
1.1 KiB
TypeScript
import type { FC, ReactNode } from 'react';
|
|
import React from 'react';
|
|
import { CodeOutlined, SkinOutlined } from '@ant-design/icons';
|
|
import { Tabs } from 'antd';
|
|
import { useRouteMeta } from 'dumi';
|
|
import type { IContentTabsProps } from 'dumi/theme-default/slots/ContentTabs';
|
|
import type { TabsProps } from 'rc-tabs';
|
|
|
|
const titleMap: Record<string, ReactNode> = {
|
|
design: '设计',
|
|
};
|
|
|
|
const iconMap: Record<string, ReactNode> = {
|
|
design: <SkinOutlined />,
|
|
};
|
|
|
|
const ContentTabs: FC<IContentTabsProps> = ({ tabs, tabKey, onChange }) => {
|
|
const meta = useRouteMeta();
|
|
|
|
if (!meta.tabs) {
|
|
return null;
|
|
}
|
|
|
|
const items: TabsProps['items'] = [
|
|
{
|
|
key: 'development',
|
|
label: '开发',
|
|
icon: <CodeOutlined />,
|
|
},
|
|
];
|
|
|
|
tabs?.forEach((tab) => {
|
|
items.push({
|
|
key: tab.key,
|
|
label: titleMap[tab.key],
|
|
icon: iconMap[tab.key],
|
|
});
|
|
});
|
|
|
|
return (
|
|
<Tabs
|
|
items={items}
|
|
activeKey={tabKey || 'development'}
|
|
onChange={(key) => onChange(tabs?.find((tab) => tab.key === key))}
|
|
style={{ margin: '32px 0 -16px' }}
|
|
/>
|
|
);
|
|
};
|
|
|
|
export default ContentTabs;
|