ant-design/components/drawer/index.tsx

276 lines
6.9 KiB
TypeScript
Raw Normal View History

2018-05-23 10:56:37 +08:00
import * as React from 'react';
2018-06-06 22:55:29 +08:00
import RcDrawer from 'rc-drawer';
2019-06-05 14:00:42 +08:00
import createReactContext from '@ant-design/create-react-context';
2018-08-05 07:08:34 +08:00
import classNames from 'classnames';
2019-08-05 18:38:10 +08:00
import omit from 'omit.js';
import warning from '../_util/warning';
import Icon from '../icon';
import { withConfigConsumer, ConfigConsumerProps } from '../config-provider';
import { tuple } from '../_util/type';
2019-06-05 14:00:42 +08:00
const DrawerContext = createReactContext<Drawer | null>(null);
2018-05-23 10:56:37 +08:00
type EventType =
| React.KeyboardEvent<HTMLDivElement>
| React.MouseEvent<HTMLDivElement | HTMLButtonElement>;
2018-05-23 10:56:37 +08:00
type getContainerFunc = () => HTMLElement;
2018-06-19 17:42:25 +08:00
const PlacementTypes = tuple('top', 'right', 'bottom', 'left');
type placementType = (typeof PlacementTypes)[number];
2018-06-06 21:12:26 +08:00
export interface DrawerProps {
2018-05-23 10:56:37 +08:00
closable?: boolean;
destroyOnClose?: boolean;
2019-07-11 21:22:27 +08:00
getContainer?: string | HTMLElement | getContainerFunc | false;
2018-05-23 10:56:37 +08:00
maskClosable?: boolean;
mask?: boolean;
maskStyle?: React.CSSProperties;
style?: React.CSSProperties;
2019-01-11 22:45:01 +08:00
bodyStyle?: React.CSSProperties;
2018-05-23 10:56:37 +08:00
title?: React.ReactNode;
visible?: boolean;
width?: number | string;
2018-08-10 13:32:33 +08:00
height?: number | string;
2018-08-05 11:56:40 +08:00
/* deprecated, use className instead */
2018-05-23 10:56:37 +08:00
wrapClassName?: string;
zIndex?: number;
prefixCls?: string;
push?: boolean;
2018-08-19 14:51:28 +08:00
placement?: placementType;
2018-05-23 10:56:37 +08:00
onClose?: (e: EventType) => void;
2019-04-22 16:26:31 +08:00
afterVisibleChange?: (visible: boolean) => void;
2018-08-05 07:08:34 +08:00
className?: string;
handler?: React.ReactNode;
keyboard?: boolean;
2018-05-23 10:56:37 +08:00
}
export interface IDrawerState {
push?: boolean;
2018-05-23 10:56:37 +08:00
}
class Drawer extends React.Component<DrawerProps & ConfigConsumerProps, IDrawerState> {
2018-05-23 10:56:37 +08:00
static defaultProps = {
2018-05-27 00:00:07 +08:00
width: 256,
2018-08-10 13:32:33 +08:00
height: 256,
2018-05-23 10:56:37 +08:00
closable: true,
placement: 'right' as placementType,
2018-06-21 12:32:13 +08:00
maskClosable: true,
mask: true,
2018-07-02 12:27:06 +08:00
level: null,
keyboard: true,
2018-05-23 10:56:37 +08:00
};
2018-06-26 00:22:50 +08:00
readonly state = {
push: false,
};
parentDrawer: Drawer | null;
destroyClose: boolean;
2018-11-22 23:35:40 +08:00
public componentDidMount() {
// fix: delete drawer in child and re-render, no push started.
// <Drawer>{show && <Drawer />}</Drawer>
const { visible } = this.props;
if (visible && this.parentDrawer) {
this.parentDrawer.push();
}
}
public componentDidUpdate(preProps: DrawerProps) {
const { visible } = this.props;
if (preProps.visible !== visible && this.parentDrawer) {
if (visible) {
this.parentDrawer.push();
} else {
this.parentDrawer.pull();
}
}
}
2018-11-22 23:35:40 +08:00
public componentWillUnmount() {
// unmount drawer in child, clear push.
if (this.parentDrawer) {
this.parentDrawer.pull();
this.parentDrawer = null;
}
}
push = () => {
this.setState({
push: true,
});
2018-12-07 20:02:01 +08:00
};
2018-11-22 23:35:40 +08:00
pull = () => {
this.setState({
push: false,
});
2018-12-07 20:02:01 +08:00
};
2018-11-22 23:35:40 +08:00
onDestroyTransitionEnd = () => {
const isDestroyOnClose = this.getDestroyOnClose();
2018-07-20 13:31:30 +08:00
if (!isDestroyOnClose) {
return;
}
2018-07-19 15:39:47 +08:00
if (!this.props.visible) {
this.destroyClose = true;
2018-07-19 15:39:47 +08:00
this.forceUpdate();
}
2018-12-07 20:02:01 +08:00
};
2018-07-20 16:02:42 +08:00
getDestroyOnClose = () => this.props.destroyOnClose && !this.props.visible;
2018-07-20 16:02:42 +08:00
2019-07-11 21:22:27 +08:00
// get drawer push width or height
2018-08-19 14:51:28 +08:00
getPushTransform = (placement?: placementType) => {
if (placement === 'left' || placement === 'right') {
return `translateX(${placement === 'left' ? 180 : -180}px)`;
}
if (placement === 'top' || placement === 'bottom') {
return `translateY(${placement === 'top' ? 180 : -180}px)`;
}
2018-12-07 20:02:01 +08:00
};
2018-11-22 23:35:40 +08:00
getRcDrawerStyle = () => {
const { zIndex, placement, style } = this.props;
2018-12-20 17:43:00 +08:00
const { push } = this.state;
return {
zIndex,
transform: push ? this.getPushTransform(placement) : undefined,
...style,
2018-12-20 17:43:00 +08:00
};
2018-12-07 20:02:01 +08:00
};
renderHeader() {
const { title, prefixCls, closable } = this.props;
if (!title && !closable) {
return null;
}
const headerClassName = title ? `${prefixCls}-header` : `${prefixCls}-header-no-title`;
return (
<div className={headerClassName}>
{title && <div className={`${prefixCls}-title`}>{title}</div>}
{closable && this.renderCloseIcon()}
</div>
);
}
renderCloseIcon() {
2019-07-11 21:22:27 +08:00
const { closable, prefixCls, onClose } = this.props;
return (
closable && (
// eslint-disable-next-line react/button-has-type
2019-07-11 21:22:27 +08:00
<button onClick={onClose} aria-label="Close" className={`${prefixCls}-close`}>
<Icon type="close" />
</button>
)
);
}
2018-08-19 14:51:28 +08:00
// render drawer body dom
renderBody = () => {
2019-01-11 22:45:01 +08:00
const { bodyStyle, placement, prefixCls, visible } = this.props;
if (this.destroyClose && !visible) {
2018-07-19 15:39:47 +08:00
return null;
}
this.destroyClose = false;
2018-12-07 20:02:01 +08:00
const containerStyle: React.CSSProperties =
placement === 'left' || placement === 'right'
? {
overflow: 'auto',
height: '100%',
}
: {};
const isDestroyOnClose = this.getDestroyOnClose();
2018-08-19 14:51:28 +08:00
2018-07-19 15:39:47 +08:00
if (isDestroyOnClose) {
2018-07-20 16:02:42 +08:00
// Increase the opacity transition, delete children after closing.
2018-07-19 15:39:47 +08:00
containerStyle.opacity = 0;
containerStyle.transition = 'opacity .3s';
2018-05-27 00:00:07 +08:00
}
2018-05-23 10:56:37 +08:00
return (
2018-07-19 15:39:47 +08:00
<div
2018-07-20 18:51:10 +08:00
className={`${prefixCls}-wrapper-body`}
2018-07-19 15:39:47 +08:00
style={containerStyle}
onTransitionEnd={this.onDestroyTransitionEnd}
2018-07-19 15:39:47 +08:00
>
{this.renderHeader()}
2019-01-11 22:45:01 +08:00
<div className={`${prefixCls}-body`} style={bodyStyle}>
{this.props.children}
</div>
2018-05-25 15:10:45 +08:00
</div>
2018-05-23 10:56:37 +08:00
);
2018-12-07 20:02:01 +08:00
};
2018-08-19 14:51:28 +08:00
// render Provider for Multi-level drawer
renderProvider = (value: Drawer) => {
const {
prefixCls,
2018-12-07 20:02:01 +08:00
placement,
className,
wrapClassName,
width,
height,
2019-06-26 17:43:15 +08:00
mask,
...rest
} = this.props;
2018-12-07 20:02:01 +08:00
warning(
wrapClassName === undefined,
'Drawer',
2018-12-07 20:02:01 +08:00
'wrapClassName is deprecated, please use className instead.',
);
2019-06-26 17:43:15 +08:00
const haveMask = mask ? '' : 'no-mask';
this.parentDrawer = value;
2018-08-10 13:32:33 +08:00
const offsetStyle: any = {};
if (placement === 'left' || placement === 'right') {
offsetStyle.width = width;
} else {
offsetStyle.height = height;
}
return (
<DrawerContext.Provider value={this}>
<RcDrawer
handler={false}
2019-08-05 18:38:10 +08:00
{...omit(rest, [
'zIndex',
'style',
'closable',
'destroyOnClose',
'bodyStyle',
'title',
'push',
'visible',
'getPopupContainer',
'rootPrefixCls',
'getPrefixCls',
'renderEmpty',
'csp',
'autoInsertSpaceInButton',
])}
{...offsetStyle}
prefixCls={prefixCls}
open={this.props.visible}
2019-06-26 17:43:15 +08:00
showMask={mask}
placement={placement}
style={this.getRcDrawerStyle()}
className={classNames(wrapClassName, className, haveMask)}
>
{this.renderBody()}
</RcDrawer>
</DrawerContext.Provider>
);
2018-12-07 20:02:01 +08:00
};
2018-08-19 14:51:28 +08:00
render() {
2018-12-07 20:02:01 +08:00
return <DrawerContext.Consumer>{this.renderProvider}</DrawerContext.Consumer>;
2018-05-23 10:56:37 +08:00
}
}
export default withConfigConsumer<DrawerProps>({
prefixCls: 'drawer',
})(Drawer);