ant-design/components/menu/index.tsx

369 lines
11 KiB
TypeScript
Raw Normal View History

import * as React from 'react';
import RcMenu, { Divider, ItemGroup } from 'rc-menu';
2019-06-05 14:00:42 +08:00
import createContext from '@ant-design/create-react-context';
2017-06-30 18:08:30 +08:00
import classNames from 'classnames';
import omit from 'omit.js';
import SubMenu from './SubMenu';
2017-06-30 21:07:01 +08:00
import Item from './MenuItem';
import { ConfigConsumer, ConfigConsumerProps } from '../config-provider';
import animation from '../_util/openAnimation';
import warning from '../_util/warning';
import { polyfill } from 'react-lifecycles-compat';
import { SiderContext, SiderContextProps } from '../layout/Sider';
import raf from '../_util/raf';
2015-08-06 16:49:54 +08:00
2016-09-13 15:31:29 +08:00
export interface SelectParam {
key: string;
keyPath: Array<string>;
item: unknown;
domEvent: Event;
selectedKeys: Array<string>;
}
2016-09-13 15:31:29 +08:00
export interface ClickParam {
key: string;
keyPath: Array<string>;
item: unknown;
domEvent: Event;
}
export type MenuMode = 'vertical' | 'vertical-left' | 'vertical-right' | 'horizontal' | 'inline';
export type MenuTheme = 'light' | 'dark';
export interface MenuProps {
id?: string;
theme?: MenuTheme;
mode?: MenuMode;
selectable?: boolean;
selectedKeys?: Array<string>;
defaultSelectedKeys?: Array<string>;
openKeys?: Array<string>;
defaultOpenKeys?: Array<string>;
onOpenChange?: (openKeys: string[]) => void;
onSelect?: (param: SelectParam) => void;
onDeselect?: (param: SelectParam) => void;
onClick?: (param: ClickParam) => void;
style?: React.CSSProperties;
openAnimation?: string | Object;
openTransitionName?: string | Object;
className?: string;
prefixCls?: string;
multiple?: boolean;
inlineIndent?: number;
2017-06-30 18:08:30 +08:00
inlineCollapsed?: boolean;
subMenuCloseDelay?: number;
subMenuOpenDelay?: number;
2018-06-06 21:05:32 +08:00
focusable?: boolean;
onMouseEnter?: (e: MouseEvent) => void;
2019-04-28 11:47:22 +08:00
getPopupContainer?: (triggerNode: HTMLElement) => HTMLElement;
overflowedIndicator?: React.ReactNode;
forceSubMenuRender?: boolean;
}
type InternalMenuProps = MenuProps & SiderContextProps;
export interface MenuState {
openKeys: string[];
// This may be not best way since origin code use `this.switchingModeFromInline` to handle collapse management.
// But for current test, seems it's OK just use state.
switchingModeFromInline: boolean;
inlineOpenKeys: string[];
prevProps: InternalMenuProps;
mounted: boolean;
}
export interface MenuContextProps {
inlineCollapsed: boolean;
antdMenuTheme?: MenuTheme;
}
2019-06-05 14:00:42 +08:00
export const MenuContext = createContext<MenuContextProps>({
inlineCollapsed: false,
});
class InternalMenu extends React.Component<InternalMenuProps, MenuState> {
2018-06-06 21:05:32 +08:00
static defaultProps: Partial<MenuProps> = {
className: '',
2018-06-06 21:05:32 +08:00
theme: 'light', // or dark
2018-05-01 18:50:22 +08:00
focusable: false,
2016-07-13 11:14:24 +08:00
};
2018-12-13 02:07:58 +08:00
static getDerivedStateFromProps(nextProps: InternalMenuProps, prevState: MenuState) {
const { prevProps } = prevState;
const newState: Partial<MenuState> = {
prevProps: nextProps,
};
if (prevProps.mode === 'inline' && nextProps.mode !== 'inline') {
newState.switchingModeFromInline = true;
}
if ('openKeys' in nextProps) {
newState.openKeys = nextProps.openKeys;
} else {
// [Legacy] Old code will return after `openKeys` changed.
// Not sure the reason, we should keep this logic still.
if (
(nextProps.inlineCollapsed && !prevProps.inlineCollapsed) ||
(nextProps.siderCollapsed && !prevProps.siderCollapsed)
) {
newState.switchingModeFromInline = true;
newState.inlineOpenKeys = prevState.openKeys;
newState.openKeys = [];
}
if (
(!nextProps.inlineCollapsed && prevProps.inlineCollapsed) ||
(!nextProps.siderCollapsed && prevProps.siderCollapsed)
) {
newState.openKeys = prevState.inlineOpenKeys;
newState.inlineOpenKeys = [];
}
}
return newState;
}
2018-12-13 02:07:58 +08:00
private mountRafId: number;
constructor(props: InternalMenuProps) {
super(props);
warning(
!('onOpen' in props || 'onClose' in props),
'Menu',
'`onOpen` and `onClose` are removed, please use `onOpenChange` instead, ' +
2018-12-07 20:02:01 +08:00
'see: https://u.ant.design/menu-on-open-change.',
);
warning(
!('inlineCollapsed' in props && props.mode !== 'inline'),
'Menu',
'`inlineCollapsed` should only be used when `mode` is inline.',
);
warning(
!(props.siderCollapsed !== undefined && 'inlineCollapsed' in props),
'Menu',
'`inlineCollapsed` not control Menu under Sider. Should set `collapsed` on Sider instead.',
);
let openKeys;
if ('openKeys' in props) {
openKeys = props.openKeys;
} else if ('defaultOpenKeys' in props) {
openKeys = props.defaultOpenKeys;
}
this.state = {
openKeys: openKeys || [],
switchingModeFromInline: false,
inlineOpenKeys: [],
prevProps: props,
mounted: false,
2015-08-06 16:49:54 +08:00
};
}
2018-12-13 02:07:58 +08:00
// [Legacy] Origin code can render full defaultOpenKeys is caused by `rc-animate` bug.
// We have to workaround this to prevent animation on first render.
// https://github.com/ant-design/ant-design/issues/15966
componentDidMount() {
this.mountRafId = raf(() => {
this.setState({
mounted: true,
});
}, 10);
}
componentWillUnmount() {
raf.cancel(this.mountRafId);
}
restoreModeVerticalFromInline() {
const { switchingModeFromInline } = this.state;
if (switchingModeFromInline) {
this.setState({
switchingModeFromInline: false,
});
}
}
2018-12-13 02:07:58 +08:00
// Restore vertical mode when menu is collapsed responsively when mounted
// https://github.com/ant-design/ant-design/issues/13104
// TODO: not a perfect solution, looking a new way to avoid setting switchingModeFromInline in this situation
handleMouseEnter = (e: MouseEvent) => {
this.restoreModeVerticalFromInline();
const { onMouseEnter } = this.props;
if (onMouseEnter) {
onMouseEnter(e);
}
2018-12-07 20:02:01 +08:00
};
2019-03-12 19:52:43 +08:00
handleTransitionEnd = (e: TransitionEvent) => {
// when inlineCollapsed menu width animation finished
// https://github.com/ant-design/ant-design/issues/12864
const widthCollapsed = e.propertyName === 'width' && e.target === e.currentTarget;
2019-03-29 08:37:25 +08:00
// Fix SVGElement e.target.className.indexOf is not a function
2019-03-28 17:04:26 +08:00
// https://github.com/ant-design/ant-design/issues/15699
const { className } = e.target as HTMLElement | SVGElement;
2019-03-29 08:37:25 +08:00
// SVGAnimatedString.animVal should be identical to SVGAnimatedString.baseVal, unless during an animation.
const classNameValue =
Object.prototype.toString.call(className) === '[object SVGAnimatedString]'
? className.animVal
: className;
// Fix for <Menu style={{ width: '100%' }} />, the width transition won't trigger when menu is collapsed
// https://github.com/ant-design/ant-design-pro/issues/2783
2019-03-29 08:37:25 +08:00
const iconScaled = e.propertyName === 'font-size' && classNameValue.indexOf('anticon') >= 0;
if (widthCollapsed || iconScaled) {
this.restoreModeVerticalFromInline();
}
2018-12-07 20:02:01 +08:00
};
2019-03-12 19:52:43 +08:00
handleClick = (e: ClickParam) => {
this.handleOpenChange([]);
2016-10-24 12:04:26 +08:00
const { onClick } = this.props;
2016-10-24 12:04:26 +08:00
if (onClick) {
onClick(e);
}
2018-12-07 20:02:01 +08:00
};
handleOpenChange = (openKeys: string[]) => {
2016-05-07 16:06:02 +08:00
this.setOpenKeys(openKeys);
2016-10-24 12:04:26 +08:00
const { onOpenChange } = this.props;
2016-10-24 12:04:26 +08:00
if (onOpenChange) {
onOpenChange(openKeys);
}
2018-12-07 20:02:01 +08:00
};
2019-03-12 19:52:43 +08:00
setOpenKeys(openKeys: string[]) {
2016-05-06 18:07:23 +08:00
if (!('openKeys' in this.props)) {
this.setState({ openKeys });
}
}
2018-12-13 02:07:58 +08:00
2017-06-30 18:08:30 +08:00
getRealMenuMode() {
const inlineCollapsed = this.getInlineCollapsed();
if (this.state.switchingModeFromInline && inlineCollapsed) {
return 'inline';
}
const { mode } = this.props;
return inlineCollapsed ? 'vertical' : mode;
}
2018-12-13 02:07:58 +08:00
getInlineCollapsed() {
const { inlineCollapsed } = this.props;
if (this.props.siderCollapsed !== undefined) {
return this.props.siderCollapsed;
}
return inlineCollapsed;
2017-06-30 18:08:30 +08:00
}
2018-12-13 02:07:58 +08:00
getMenuOpenAnimation(menuMode: MenuMode) {
2017-06-30 18:08:30 +08:00
const { openAnimation, openTransitionName } = this.props;
let menuOpenAnimation = openAnimation || openTransitionName;
if (openAnimation === undefined && openTransitionName === undefined) {
2018-12-13 10:49:08 +08:00
if (menuMode === 'horizontal') {
menuOpenAnimation = 'slide-up';
} else if (menuMode === 'inline') {
menuOpenAnimation = animation;
} else {
// When mode switch from inline
// submenu should hide without animation
if (this.state.switchingModeFromInline) {
2018-12-13 10:49:08 +08:00
menuOpenAnimation = '';
this.setState({
switchingModeFromInline: false,
});
// this.switchingModeFromInline = false;
2018-12-13 10:49:08 +08:00
} else {
menuOpenAnimation = 'zoom-big';
}
}
2015-08-24 18:18:46 +08:00
}
2017-06-30 18:08:30 +08:00
return menuOpenAnimation;
}
renderMenu = ({ getPopupContainer, getPrefixCls }: ConfigConsumerProps) => {
const { mounted } = this.state;
const { prefixCls: customizePrefixCls, className, theme, collapsedWidth } = this.props;
const passProps = omit(this.props, ['collapsedWidth', 'siderCollapsed']);
2017-06-30 18:08:30 +08:00
const menuMode = this.getRealMenuMode();
const menuOpenAnimation = this.getMenuOpenAnimation(menuMode!);
2017-06-30 18:08:30 +08:00
const prefixCls = getPrefixCls('menu', customizePrefixCls);
2017-06-30 18:08:30 +08:00
const menuClassName = classNames(className, `${prefixCls}-${theme}`, {
[`${prefixCls}-inline-collapsed`]: this.getInlineCollapsed(),
2017-06-30 18:08:30 +08:00
});
2015-11-12 14:57:54 +08:00
2017-06-30 18:08:30 +08:00
const menuProps: MenuProps = {
openKeys: this.state.openKeys,
onOpenChange: this.handleOpenChange,
className: menuClassName,
mode: menuMode,
};
if (menuMode !== 'inline') {
// closing vertical popup submenu after click it
2017-06-30 18:08:30 +08:00
menuProps.onClick = this.handleClick;
menuProps.openTransitionName = mounted ? menuOpenAnimation : '';
2015-08-24 18:18:46 +08:00
} else {
2019-04-10 17:17:53 +08:00
menuProps.openAnimation = mounted ? menuOpenAnimation : {};
2015-08-24 18:18:46 +08:00
}
2017-06-30 18:08:30 +08:00
// https://github.com/ant-design/ant-design/issues/8587
if (
this.getInlineCollapsed() &&
(collapsedWidth === 0 || collapsedWidth === '0' || collapsedWidth === '0px')
) {
return null;
}
return (
<RcMenu
2018-11-26 12:06:42 +08:00
getPopupContainer={getPopupContainer}
{...passProps}
{...menuProps}
prefixCls={prefixCls}
onTransitionEnd={this.handleTransitionEnd}
onMouseEnter={this.handleMouseEnter}
/>
);
2018-12-07 20:02:01 +08:00
};
2018-11-26 12:06:42 +08:00
render() {
return (
<MenuContext.Provider
value={{
inlineCollapsed: this.getInlineCollapsed() || false,
antdMenuTheme: this.props.theme,
}}
>
<ConfigConsumer>{this.renderMenu}</ConfigConsumer>
</MenuContext.Provider>
);
2018-11-26 12:06:42 +08:00
}
}
polyfill(InternalMenu);
// We should keep this as ref-able
export default class Menu extends React.Component<MenuProps, {}> {
static Divider = Divider;
static Item = Item;
static SubMenu = SubMenu;
static ItemGroup = ItemGroup;
render() {
return (
<SiderContext.Consumer>
{(context: SiderContextProps) => <InternalMenu {...this.props} {...context} />}
</SiderContext.Consumer>
);
}
}