mirror of
https://gitee.com/ant-design/ant-design.git
synced 2024-12-04 21:18:01 +08:00
cbcfd38ca7
* build: try to use dumi as doc tool * docs: migrate demo structure to dumi way * refactor: use type export & import * docs: migrate demo previewer to dumi * docs: create empty layout & components * docs: apply custom rehype plugin * docs: create empty extra pages * docs: Add Banner component * chore: move theme tsconfig.json * docs: home page init * docs: migrate header (#37896) * docs: header * docs: update * docs: home init * clean up * test: fix site lint * chore: tsc ignore demo * chore: dumi demo migrate script * chore: cards * docs: home layout * docs: Update locale logic * docs: fix getLink logic * chore: fix ci (#37899) * chore: fix ci * ci: remove check-ts-demo * ci: preview build * test: ignore demo.tsx * chore: update script * test: update snapshot * test: update node and image test * chore: add .surgeignore * docs: layout providers (#37908) * docs: add components sidebar (#37923) * docs: sidebar * docs: update docs title * docs: update design doc * chore: code clean * docs: handle changelog page * docs: add title * docs: add subtitle * docs: active header nav * chore: code clean * docs: overview * chore: code clean * docs: update intl (#37918) * docs: update intl * chore: code clean * docs: update favicons * chore: update testPathIgnorePatterns * chore: code clean * chore: code clean * chore: copy 404.html (#37996) * docs: Home page theme picker * chore: Update migrate script * docs: home page update * docs: theme editor style * docs: theme lang * chore: update migrate.js * docs: fix demo (#38094) * chore: update migrate.js * docs: update md * docs: update demo * test: fix snapshot * chore: move debug to code attr in migrate script * chore: update md Co-authored-by: PeachScript <scdzwyxst@gmail.com> * feat: overview page * feat: Migrate `404` page (#38118) * feat: migrate IconSearch component (#37916) * feat<site/IconSearch>: copy IconDisplay from site to .dumi * feat<site/IconSearch>: change docs of icon * feat<site/IconSearch>: tweak * feat<site/IconSearch>: use useIntl instead of injectIntl * feat<site/IconSearch>: fix ts type error * feat<site/IconSearch>: use intl.formatMessage to render text * docs: Adjust home btn sizw * docs: Update doc * feat: v5 site overview page (#38131) * feat: site * fix: fix * feat: v5 site overview page * fix: fix path * fix: fix * fix: fix * docs: fix margin logic * feat: v5 site change-log page (#38137) * feat: v5 site change-log page (#38162) * docs: site redirect to home pag * docs: theme picker * docs: use react-intl from dumi (#38183) * docs: Theme Picker * docs: update dumi config * docs: home back fix * docs: picker colorful * docs: locale of it * docs: update components desc * docs: site of links * docs: update components list * docs: update desc * feat: Migrate `DemoWrapper` component (#38166) * feat: Migrate `DemoWrapper` component * feat: remove invalid comments and add comment for `key` prop * docs: FloatButton pure panel * chore: update demo * chore: update dumi config * Revert "chore: update demo" This reverts commit 028265d3ba5987df5f13c3e9d42cf76cb1812b2e. * chore: test logic adjust to support cnpm modules * chore: add locale alias * docs: /index to / * docs: add locale redirect head script * chore: adjust compact * docs: fix missing token * feat: compact switch * chore: code clean * docs: update home * docs: fix radius token * docs: hash of it * chore: adjust home page * docs: Add background map * docs: site theme bac logic * docs: avatar * docs: update logo color * docs: home banner * docs: adjust tour size * docs: purepanl update * docs: transfooter * docs: update banner gif * docs: content (#38361) * docs: title & EditButton * docs: content * chore: fix toc * docs: resource page * docs: transform resource data from hast * docs: filename & Resource Card * chore: enable prerender * chore: remove less * docs: toc style * chore: fix lint * docs: fix Layout page * docs: fix CP page * chore: update demos * docs: workaround for export dynamic html * chore: enable demo eslint * docs: table style * fix: header shadow * chore: update snapshot * fix: toc style * docs: add title * docs: Adjust site * feat: helmet * docs: site css * fix: description * feat: toc debug * docs: update config-provider * feat: use colorPanel * fix: colorPanel value * feat: anchor ink ball style * feat: apply theme editor * fix: code block style * chore: update demo * chore: fix lint * chore: code clean * chore: update snapshot * feat: ts2js * chore: description * docs: site ready for ssr includes: - move client render logic to useEffect in site theme - extract antd cssinjs to a single css file like bisheng - workaround to support react@18 pipeableStream for emotion * chore: bump testing lib * docs: font size of title * chore: remove react-sortable-hoc * chore: update snapshot * chore: update script Co-authored-by: PeachScript <scdzwyxst@gmail.com> Co-authored-by: MadCcc <1075746765@qq.com> Co-authored-by: zqran <uuxnet@gmail.com> Co-authored-by: TrickyPi <530257315@qq.com> Co-authored-by: lijianan <574980606@qq.com>
195 lines
8.6 KiB
Markdown
195 lines
8.6 KiB
Markdown
---
|
||
category: Components
|
||
group: Navigation
|
||
title: Menu
|
||
cover: https://gw.alipayobjects.com/zos/alicdn/3XZcjGpvK/Menu.svg
|
||
demo:
|
||
cols: 2
|
||
---
|
||
|
||
A versatile menu for navigation.
|
||
|
||
## When To Use
|
||
|
||
Navigation is an important part of any website, as a good navigation setup allows users to move around the site quickly and efficiently. Ant Design offers two navigation options: top and side. Top navigation provides all the categories and functions of the website. Side navigation provides the multi-level structure of the website.
|
||
|
||
More layouts with navigation: [Layout](/components/layout).
|
||
|
||
## Notes for developers
|
||
|
||
- Menu is rendered as a `ul` element, so it only supports [`li` and `script-supporting` elements](https://html.spec.whatwg.org/multipage/grouping-content.html#the-ul-element) as children nodes。Your customized node should be wrapped by `Menu.Item`.
|
||
- Menu needs to collect its node structure, so its children should be `Menu.*` or encapsulated HOCs.
|
||
|
||
### Usage upgrade after 4.20.0
|
||
|
||
```__react
|
||
import Alert from '../alert';
|
||
ReactDOM.render(<Alert message="After version 4.20.0, we provide a simpler usage <Menu items={[...]} /> with better performance and potential of writing simpler code style in your applications. Meanwhile, we deprecated the old usage in browser console, we will remove it in antd 5.0." />, mountNode);
|
||
```
|
||
|
||
```jsx
|
||
// works when >=4.20.0, recommended ✅
|
||
const items = [
|
||
{ label: 'item 1', key: 'item-1' }, // remember to pass the key prop
|
||
{ label: 'item 2', key: 'item-2' }, // which is required
|
||
{
|
||
label: 'sub menu',
|
||
key: 'submenu',
|
||
children: [{ label: 'item 3', key: 'submenu-item-1' }],
|
||
},
|
||
];
|
||
return <Menu items={items} />;
|
||
|
||
// works when <4.20.0, deprecated when >=4.20.0 🙅🏻♀️
|
||
<Menu>
|
||
<Menu.Item>item 1</Menu.Item>
|
||
<Menu.Item>item 2</Menu.Item>
|
||
<Menu.SubMenu title="sub menu">
|
||
<Menu.Item>item 3</Menu.Item>
|
||
</Menu.SubMenu>
|
||
</Menu>;
|
||
```
|
||
|
||
The legacy demo code for version `<4.20.0` could be found at [https://github.com/ant-design/ant-design/tree/4.19.5/components/menu/demo](https://github.com/ant-design/ant-design/tree/4.19.5/components/menu/demo).
|
||
|
||
## Examples
|
||
|
||
<code src="./demo/deprecated.tsx">Basic usage (deprecated syntactic sugar)</code>
|
||
<code src="./demo/horizontal.tsx">Top Navigation</code>
|
||
<code src="./demo/inline.tsx">Inline menu</code>
|
||
<code src="./demo/inline-collapsed.tsx">Collapsed inline menu</code>
|
||
<code src="./demo/sider-current.tsx">Open current submenu only</code>
|
||
<code src="./demo/vertical.tsx">Vertical menu</code>
|
||
<code src="./demo/theme.tsx">Menu Themes</code>
|
||
<code src="./demo/submenu-theme.tsx">Sub-menu theme</code>
|
||
<code src="./demo/switch-mode.tsx">Switch the menu type</code>
|
||
<code src="./demo/style-debug.tsx" debug>Style debug</code>
|
||
<code src="./demo/menu-v4.tsx" debug>Menu v4</code>
|
||
|
||
## API
|
||
|
||
### Menu
|
||
|
||
| Param | Description | Type | Default value | Version |
|
||
| --- | --- | --- | --- | --- |
|
||
| defaultOpenKeys | Array with the keys of default opened sub menus | string\[] | - | |
|
||
| defaultSelectedKeys | Array with the keys of default selected menu items | string\[] | - | |
|
||
| expandIcon | custom expand icon of submenu | ReactNode \| `(props: SubMenuProps & { isSubMenu: boolean }) => ReactNode` | - | 4.9.0 |
|
||
| forceSubMenuRender | Render submenu into DOM before it becomes visible | boolean | false | |
|
||
| inlineCollapsed | Specifies the collapsed status when menu is inline mode | boolean | - | |
|
||
| inlineIndent | Indent (in pixels) of inline menu items on each level | number | 24 | |
|
||
| items | Menu item content | [ItemType\[\]](#ItemType) | - | 4.20.0 |
|
||
| mode | Type of menu | `vertical` \| `horizontal` \| `inline` | `vertical` | |
|
||
| multiple | Allows selection of multiple items | boolean | false | |
|
||
| openKeys | Array with the keys of currently opened sub-menus | string\[] | - | |
|
||
| overflowedIndicator | Customized the ellipsis icon when menu is collapsed horizontally | ReactNode | `<EllipsisOutlined />` | |
|
||
| selectable | Allows selecting menu items | boolean | true | |
|
||
| selectedKeys | Array with the keys of currently selected menu items | string\[] | - | |
|
||
| style | Style of the root node | CSSProperties | - | |
|
||
| subMenuCloseDelay | Delay time to hide submenu when mouse leaves (in seconds) | number | 0.1 | |
|
||
| subMenuOpenDelay | Delay time to show submenu when mouse enters, (in seconds) | number | 0 | |
|
||
| theme | Color theme of the menu | `light` \| `dark` | `light` | |
|
||
| triggerSubMenuAction | Which action can trigger submenu open/close | `hover` \| `click` | `hover` | |
|
||
| onClick | Called when a menu item is clicked | function({ item, key, keyPath, domEvent }) | - | |
|
||
| onDeselect | Called when a menu item is deselected (multiple mode only) | function({ item, key, keyPath, selectedKeys, domEvent }) | - | |
|
||
| onOpenChange | Called when sub-menus are opened or closed | function(openKeys: string\[]) | - | |
|
||
| onSelect | Called when a menu item is selected | function({ item, key, keyPath, selectedKeys, domEvent }) | - | |
|
||
|
||
> More options in [rc-menu](https://github.com/react-component/menu#api)
|
||
|
||
### ItemType
|
||
|
||
> type ItemType = [MenuItemType](#MenuItemType) | [SubMenuType](#SubMenuType) | [MenuItemGroupType](#MenuItemGroupType) | [MenuDividerType](#MenuDividerType);
|
||
|
||
#### MenuItemType
|
||
|
||
| Param | Description | Type | Default value | Version |
|
||
| -------- | ------------------------------------ | --------- | ------------- | ------- |
|
||
| danger | Display the danger style | boolean | false | |
|
||
| disabled | Whether menu item is disabled | boolean | false | |
|
||
| icon | The icon of the menu item | ReactNode | - | |
|
||
| key | Unique ID of the menu item | string | - | |
|
||
| label | Menu label | ReactNode | - | |
|
||
| title | Set display title for collapsed item | string | - | |
|
||
|
||
> Note: `icon` is a newly added prop in `4.2.0`. For previous versions, please use the following method to define the icon.
|
||
>
|
||
> ```jsx
|
||
> <Menu.Item>
|
||
> <PieChartOutlined />
|
||
> <span>Option 1</span>
|
||
> </Menu.Item>
|
||
> <Menu.SubMenu
|
||
> title={
|
||
> <>
|
||
> <PieChartOutlined />
|
||
> <span>Option 2</span>
|
||
> </>
|
||
> }
|
||
> >
|
||
> ...
|
||
> </Menu.SubMenu>
|
||
> ```
|
||
|
||
#### SubMenuType
|
||
|
||
| Param | Description | Type | Default value | Version |
|
||
| --- | --- | --- | --- | --- | --- |
|
||
| children | Sub-menus or sub-menu items | [ItemType\[\]](#ItemType) | - | |
|
||
| disabled | Whether sub-menu is disabled | boolean | false | |
|
||
| icon | Icon of sub menu | ReactNode | - | |
|
||
| key | Unique ID of the sub-menu | string | - | |
|
||
| label | Menu label | ReactNode | - | |
|
||
| popupClassName | Sub-menu class name, not working when `mode="inline"` | string | - | |
|
||
| popupOffset | Sub-menu offset, not working when `mode="inline"` | \[number, number] | - | |
|
||
| theme | Color theme of the SubMenu (inherits from Menu by default) | | `light` \| `dark` | - | |
|
||
| onTitleClick | Callback executed when the sub-menu title is clicked | function({ key, domEvent }) | - | |
|
||
|
||
#### MenuItemGroupType
|
||
|
||
Define `type` as `group` to make as group:
|
||
|
||
```ts
|
||
const groupItem = {
|
||
type: 'group', // Must have
|
||
label: 'My Group',
|
||
children: [],
|
||
};
|
||
```
|
||
|
||
| Param | Description | Type | Default value | Version |
|
||
| -------- | ---------------------- | ----------- | ------------- | ------- |
|
||
| children | Sub-menu items | MenuItem\[] | - | |
|
||
| label | The title of the group | ReactNode | - | |
|
||
|
||
#### MenuDividerType
|
||
|
||
Divider line in between menu items, only used in vertical popup Menu or Dropdown Menu. Need define the `type` as `divider`:
|
||
|
||
```ts
|
||
const dividerItem = {
|
||
type: 'divider', // Must have
|
||
};
|
||
```
|
||
|
||
| Param | Description | Type | Default value | Version |
|
||
| ------ | ---------------------- | ------- | ------------- | ------- |
|
||
| dashed | Whether line is dashed | boolean | false | |
|
||
|
||
## FAQ
|
||
|
||
### Why will Menu's children be rendered twice?
|
||
|
||
Menu collects structure info with [twice-render](https://github.com/react-component/menu/blob/f4684514096d6b7123339cbe72e7b0f68db0bce2/src/Menu.tsx#L543) to support HOC usage. Merging into one render may cause the logic to become much more complex. Contributions to help improve the collection logic are welcomed.
|
||
|
||
### Why Menu do not responsive collapse in Flex layout?
|
||
|
||
Menu will render fully item in flex layout and then collapse it. You need tell flex not consider Menu width to enable responsive ([online demo](https://codesandbox.io/s/ding-bu-dao-hang-antd-4-21-7-forked-5e3imy?file=/demo.js)):
|
||
|
||
```jsx
|
||
<div style={{ flex }}>
|
||
<div style={{ ... }}>Some Content</div>
|
||
<Menu style={{ minWidth: 0, flex: "auto" }} />
|
||
</div>
|
||
```
|