mirror of
https://github.com/ant-design/ant-design.git
synced 2024-12-05 01:19:45 +08:00
ff69603b40
* refactor:update top-side-2.tsx Resolve the warning of console output "Warning: [antd: Breadcrumb] `Breadcrumb.Item and Breadcrumb.Separator` is deprecated. Please use `items` instead." Signed-off-by: 葉 <86666479+Aimony@users.noreply.github.com> * Update components/layout/demo/top-side-2.tsx Signed-off-by: afc163 <afc163@gmail.com> * Update components/layout/demo/top-side-2.tsx Co-authored-by: lijianan <574980606@qq.com> Signed-off-by: afc163 <afc163@gmail.com> * test(layout): Update components/layout/__tests__/__snapshots__/demo-extend.test.ts.snap --------- Signed-off-by: 葉 <86666479+Aimony@users.noreply.github.com> Signed-off-by: afc163 <afc163@gmail.com> Co-authored-by: afc163 <afc163@gmail.com> Co-authored-by: lijianan <574980606@qq.com>
87 lines
2.1 KiB
TypeScript
87 lines
2.1 KiB
TypeScript
import React from 'react';
|
|
import { LaptopOutlined, NotificationOutlined, UserOutlined } from '@ant-design/icons';
|
|
import type { MenuProps } from 'antd';
|
|
import { Breadcrumb, Layout, Menu, theme } from 'antd';
|
|
|
|
const { Header, Content, Sider } = Layout;
|
|
|
|
const items1: MenuProps['items'] = ['1', '2', '3'].map((key) => ({
|
|
key,
|
|
label: `nav ${key}`,
|
|
}));
|
|
|
|
const items2: MenuProps['items'] = [UserOutlined, LaptopOutlined, NotificationOutlined].map(
|
|
(icon, index) => {
|
|
const key = String(index + 1);
|
|
|
|
return {
|
|
key: `sub${key}`,
|
|
icon: React.createElement(icon),
|
|
label: `subnav ${key}`,
|
|
|
|
children: new Array(4).fill(null).map((_, j) => {
|
|
const subKey = index * 4 + j + 1;
|
|
return {
|
|
key: subKey,
|
|
label: `option${subKey}`,
|
|
};
|
|
}),
|
|
};
|
|
},
|
|
);
|
|
|
|
const App: React.FC = () => {
|
|
const {
|
|
token: { colorBgContainer, borderRadiusLG },
|
|
} = theme.useToken();
|
|
|
|
return (
|
|
<Layout>
|
|
<Header style={{ display: 'flex', alignItems: 'center' }}>
|
|
<div className="demo-logo" />
|
|
<Menu
|
|
theme="dark"
|
|
mode="horizontal"
|
|
defaultSelectedKeys={['2']}
|
|
items={items1}
|
|
style={{ flex: 1, minWidth: 0 }}
|
|
/>
|
|
</Header>
|
|
<Layout>
|
|
<Sider width={200} style={{ background: colorBgContainer }}>
|
|
<Menu
|
|
mode="inline"
|
|
defaultSelectedKeys={['1']}
|
|
defaultOpenKeys={['sub1']}
|
|
style={{ height: '100%', borderRight: 0 }}
|
|
items={items2}
|
|
/>
|
|
</Sider>
|
|
<Layout style={{ padding: '0 24px 24px' }}>
|
|
<Breadcrumb
|
|
items={[
|
|
{ title: 'Home' },
|
|
{ title: 'List' },
|
|
{ title: 'App' },
|
|
]}
|
|
style={{ margin: '16px 0' }}
|
|
/>
|
|
<Content
|
|
style={{
|
|
padding: 24,
|
|
margin: 0,
|
|
minHeight: 280,
|
|
background: colorBgContainer,
|
|
borderRadius: borderRadiusLG,
|
|
}}
|
|
>
|
|
Content
|
|
</Content>
|
|
</Layout>
|
|
</Layout>
|
|
</Layout>
|
|
);
|
|
};
|
|
|
|
export default App;
|