|
import React, { useState } from 'react'; |
|
import { |
|
AppstoreOutlined, |
|
ContainerOutlined, |
|
DesktopOutlined, |
|
MailOutlined, |
|
PieChartOutlined, |
|
SettingOutlined, |
|
} from '@ant-design/icons'; |
|
import type { MenuProps } from 'antd'; |
|
import { ConfigProvider, Menu, Space, theme } from 'antd'; |
|
|
|
type MenuItem = Required<MenuProps>['items'][number]; |
|
|
|
const items: MenuItem[] = [ |
|
{ |
|
label: 'Navigation One', |
|
key: 'mail', |
|
icon: <MailOutlined />, |
|
}, |
|
{ |
|
label: 'Navigation Two', |
|
key: 'app', |
|
icon: <AppstoreOutlined />, |
|
disabled: true, |
|
}, |
|
{ |
|
label: 'Navigation Three - Submenu', |
|
key: 'SubMenu', |
|
icon: <SettingOutlined />, |
|
children: [ |
|
{ |
|
type: 'group', |
|
label: 'Item 1', |
|
children: [ |
|
{ label: 'Option 1', key: 'setting:1' }, |
|
{ label: 'Option 2', key: 'setting:2' }, |
|
], |
|
}, |
|
{ |
|
type: 'group', |
|
label: 'Item 2', |
|
children: [ |
|
{ label: 'Option 3', key: 'setting:3' }, |
|
{ label: 'Option 4', key: 'setting:4' }, |
|
], |
|
}, |
|
], |
|
}, |
|
{ |
|
key: 'alipay', |
|
label: ( |
|
<a href="https://ant.design" target="_blank" rel="noopener noreferrer"> |
|
Navigation Four - Link |
|
</a> |
|
), |
|
}, |
|
]; |
|
|
|
const items2: MenuItem[] = [ |
|
{ |
|
key: '1', |
|
icon: <PieChartOutlined />, |
|
label: 'Option 1', |
|
}, |
|
{ |
|
key: '2', |
|
icon: <DesktopOutlined />, |
|
label: 'Option 2', |
|
}, |
|
{ |
|
key: '3', |
|
icon: <ContainerOutlined />, |
|
label: 'Option 3', |
|
}, |
|
{ |
|
key: 'sub1', |
|
label: 'Navigation One', |
|
icon: <MailOutlined />, |
|
children: [ |
|
{ key: '5', label: 'Option 5' }, |
|
{ key: '6', label: 'Option 6' }, |
|
{ key: '7', label: 'Option 7' }, |
|
{ key: '8', label: 'Option 8' }, |
|
], |
|
}, |
|
{ |
|
key: 'sub2', |
|
label: 'Navigation Two', |
|
icon: <AppstoreOutlined />, |
|
children: [ |
|
{ key: '9', label: 'Option 9' }, |
|
{ key: '10', label: 'Option 10' }, |
|
{ |
|
key: 'sub3', |
|
label: 'Submenu', |
|
children: [ |
|
{ key: '11', label: 'Option 11' }, |
|
{ key: '12', label: 'Option 12' }, |
|
], |
|
}, |
|
], |
|
}, |
|
]; |
|
|
|
const App: React.FC = () => { |
|
const [current, setCurrent] = useState('mail'); |
|
|
|
const onClick: MenuProps['onClick'] = (e) => { |
|
console.log('click ', e); |
|
setCurrent(e.key); |
|
}; |
|
|
|
return ( |
|
<Space direction="vertical"> |
|
<ConfigProvider |
|
theme={{ |
|
algorithm: [theme.darkAlgorithm], |
|
components: { |
|
Menu: { |
|
popupBg: 'yellow', |
|
darkPopupBg: 'red', |
|
}, |
|
}, |
|
}} |
|
> |
|
<Menu onClick={onClick} selectedKeys={[current]} mode="horizontal" items={items} /> |
|
<Menu |
|
defaultSelectedKeys={['1']} |
|
defaultOpenKeys={['sub1']} |
|
mode="inline" |
|
theme="dark" |
|
inlineCollapsed |
|
items={items2} |
|
style={{ |
|
width: 56, |
|
}} |
|
/> |
|
</ConfigProvider> |
|
<ConfigProvider |
|
theme={{ |
|
components: { |
|
Menu: { |
|
horizontalItemBorderRadius: 6, |
|
popupBg: 'red', |
|
horizontalItemHoverBg: '#f5f5f5', |
|
}, |
|
}, |
|
}} |
|
> |
|
<Menu onClick={onClick} selectedKeys={[current]} mode="horizontal" items={items} /> |
|
</ConfigProvider> |
|
<ConfigProvider |
|
theme={{ |
|
components: { |
|
Menu: { |
|
darkItemColor: '#91daff', |
|
darkItemBg: '#d48806', |
|
darkSubMenuItemBg: '#faad14', |
|
darkItemSelectedColor: '#ffccc7', |
|
darkItemSelectedBg: '#52c41a', |
|
}, |
|
}, |
|
}} |
|
> |
|
<Menu |
|
defaultSelectedKeys={['1']} |
|
defaultOpenKeys={['sub1']} |
|
mode="inline" |
|
theme="dark" |
|
items={items2} |
|
style={{ |
|
width: 256, |
|
}} |
|
/> |
|
</ConfigProvider> |
|
</Space> |
|
); |
|
}; |
|
|
|
export default App; |
|
|