ant-design/components/drawer/index.tsx

277 lines
7.0 KiB
TypeScript
Raw Normal View History

2018-05-23 10:56:37 +08:00
import * as React from 'react';
2018-08-07 21:07:52 +08:00
import * as PropTypes from 'prop-types';
2018-06-06 22:55:29 +08:00
import RcDrawer from 'rc-drawer';
import createReactContext, { Context } from '@ant-design/create-react-context';
2019-01-12 22:19:38 +08:00
import warning from '../_util/warning';
2018-08-05 07:08:34 +08:00
import classNames from 'classnames';
import Icon from '../icon';
import { withConfigConsumer, ConfigConsumerProps } from '../config-provider';
import { tuple } from '../_util/type';
const DrawerContext: Context<Drawer | null> = createReactContext(null);
2018-05-23 10:56:37 +08:00
2018-12-07 20:02:01 +08:00
type EventType = React.MouseEvent<HTMLDivElement> | React.MouseEvent<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;
getContainer?: string | HTMLElement | getContainerFunc;
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;
2018-08-05 07:08:34 +08:00
className?: string;
handler?: React.ReactNode;
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-27 00:00:07 +08:00
static propTypes = {
closable: PropTypes.bool,
destroyOnClose: PropTypes.bool,
getContainer: PropTypes.oneOfType([
PropTypes.string,
PropTypes.object as PropTypes.Requireable<HTMLElement>,
PropTypes.func,
PropTypes.bool,
]),
2018-05-27 00:00:07 +08:00
maskClosable: PropTypes.bool,
mask: PropTypes.bool,
maskStyle: PropTypes.object,
style: PropTypes.object,
title: PropTypes.node,
visible: PropTypes.bool,
width: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),
zIndex: PropTypes.number,
prefixCls: PropTypes.string,
placement: PropTypes.oneOf(PlacementTypes),
2018-05-27 00:00:07 +08:00
onClose: PropTypes.func,
2018-08-05 07:08:34 +08:00
className: PropTypes.string,
2018-05-27 00:00:07 +08:00
};
2018-06-26 00:22:50 +08:00
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,
2018-05-23 10:56:37 +08:00
};
2018-06-26 00:22:50 +08:00
readonly state = {
push: false,
};
parentDrawer: Drawer;
destroyClose: boolean;
2018-11-22 23:35:40 +08:00
public componentDidUpdate(preProps: DrawerProps) {
if (preProps.visible !== this.props.visible && this.parentDrawer) {
if (this.props.visible) {
this.parentDrawer.push();
} else {
this.parentDrawer.pull();
}
}
}
2018-11-22 23:35:40 +08:00
2018-05-23 10:56:37 +08:00
close = (e: EventType) => {
2018-06-07 12:15:47 +08:00
if (this.props.visible !== undefined) {
2018-05-23 10:56:37 +08:00
if (this.props.onClose) {
this.props.onClose(e);
}
return;
}
2018-12-07 20:02:01 +08:00
};
2018-11-22 23:35:40 +08:00
2018-05-23 10:56:37 +08:00
onMaskClick = (e: EventType) => {
if (!this.props.maskClosable) {
return;
}
this.close(e);
2018-12-07 20:02:01 +08:00
};
2018-11-22 23:35:40 +08:00
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
2018-08-19 14:51:28 +08:00
// get drawar push width or height
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() {
const { closable, prefixCls } = this.props;
return (
closable && (
<button onClick={this.close} 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 drawe
renderProvider = (value: Drawer) => {
const {
prefixCls,
2018-12-07 20:02:01 +08:00
zIndex,
style,
placement,
className,
wrapClassName,
width,
height,
...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.',
);
const haveMask = rest.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}
{...rest}
{...offsetStyle}
prefixCls={prefixCls}
open={this.props.visible}
onMaskClick={this.onMaskClick}
showMask={this.props.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);