ant-design/components/popconfirm/index.tsx

123 lines
2.9 KiB
TypeScript
Raw Normal View History

2016-09-21 11:54:53 +08:00
import React from 'react';
import Tooltip, { AbstractTooltipProps } from '../tooltip';
2015-11-20 11:05:34 +08:00
import Icon from '../icon';
2015-11-03 20:06:44 +08:00
import Button from '../button';
import injectLocale from '../locale-provider/injectLocale';
2015-11-24 11:21:37 +08:00
2016-11-30 16:43:35 +08:00
export interface PopconfirmProps extends AbstractTooltipProps {
title: React.ReactNode;
onConfirm?: (e: React.MouseEvent<any>) => void;
onCancel?: (e: React.MouseEvent<any>) => void;
okText?: React.ReactNode;
cancelText?: React.ReactNode;
}
abstract class Popconfirm extends React.Component<PopconfirmProps, any> {
static defaultProps = {
prefixCls: 'ant-popover',
2016-04-07 15:02:22 +08:00
transitionName: 'zoom-big',
placement: 'top',
trigger: 'click',
2016-07-13 11:14:24 +08:00
};
2017-07-07 20:26:08 +08:00
refs: {
tooltip: Tooltip,
};
constructor(props: PopconfirmProps) {
super(props);
this.state = {
visible: props.visible,
2015-06-24 19:20:47 +08:00
};
}
abstract getLocale();
2016-11-30 16:43:35 +08:00
componentWillReceiveProps(nextProps: PopconfirmProps) {
2015-12-04 14:58:19 +08:00
if ('visible' in nextProps) {
this.setState({ visible: nextProps.visible });
}
}
2017-07-07 20:26:08 +08:00
getPopupDomNode() {
return this.refs.tooltip.getPopupDomNode();
}
onConfirm = (e) => {
2015-12-04 14:58:19 +08:00
this.setVisible(false);
2016-10-24 12:04:26 +08:00
const { onConfirm } = this.props;
2016-10-24 12:04:26 +08:00
if (onConfirm) {
onConfirm.call(this, e);
2016-10-24 12:04:26 +08:00
}
}
onCancel = (e) => {
2015-12-04 14:58:19 +08:00
this.setVisible(false);
2016-10-24 12:04:26 +08:00
const { onCancel } = this.props;
2016-10-24 12:04:26 +08:00
if (onCancel) {
onCancel.call(this, e);
2016-10-24 12:04:26 +08:00
}
}
onVisibleChange = (visible) => {
2015-12-04 14:58:19 +08:00
this.setVisible(visible);
}
2015-12-04 14:58:19 +08:00
setVisible(visible) {
const props = this.props;
if (!('visible' in props)) {
2015-12-04 14:58:19 +08:00
this.setState({ visible });
}
2016-10-24 12:04:26 +08:00
const { onVisibleChange } = props;
2016-10-24 12:04:26 +08:00
if (onVisibleChange) {
onVisibleChange(visible);
}
}
2015-06-24 19:20:47 +08:00
render() {
const { prefixCls, title, placement, okText, cancelText, ...restProps } = this.props;
const popconfirmLocale = this.getLocale();
const overlay = (
<div>
2016-03-17 15:10:49 +08:00
<div className={`${prefixCls}-inner-content`}>
2016-03-10 16:22:52 +08:00
<div className={`${prefixCls}-message`}>
2016-04-16 17:38:30 +08:00
<Icon type="exclamation-circle" />
2016-03-10 16:22:52 +08:00
<div className={`${prefixCls}-message-title`}>{title}</div>
</div>
<div className={`${prefixCls}-buttons`}>
<Button onClick={this.onCancel} size="small">
{cancelText || popconfirmLocale.cancelText}
</Button>
<Button onClick={this.onConfirm} type="primary" size="small">
{okText || popconfirmLocale.okText}
</Button>
</div>
2015-06-24 19:20:47 +08:00
</div>
</div>
);
2015-06-24 19:20:47 +08:00
return (
<Tooltip
{...restProps}
prefixCls={prefixCls}
placement={placement}
onVisibleChange={this.onVisibleChange}
visible={this.state.visible}
overlay={overlay}
2017-07-07 20:26:08 +08:00
ref="tooltip"
/>
2015-06-24 19:20:47 +08:00
);
}
}
const injectPopconfirmLocale = injectLocale('Popconfirm', {
cancelText: '取消',
okText: '确定',
});
export default injectPopconfirmLocale<PopconfirmProps>(Popconfirm as any);