2016-09-21 11:54:53 +08:00
|
|
|
import React from 'react';
|
2016-04-07 15:02:22 +08:00
|
|
|
import Tooltip from '../tooltip';
|
2016-11-30 16:43:35 +08:00
|
|
|
import { 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';
|
2015-11-24 11:21:37 +08:00
|
|
|
|
2016-11-30 16:43:35 +08:00
|
|
|
export interface PopconfirmProps extends AbstractTooltipProps {
|
|
|
|
title: React.ReactNode;
|
2016-07-25 11:28:43 +08:00
|
|
|
onConfirm?: () => void;
|
|
|
|
onCancel?: () => void;
|
|
|
|
okText?: React.ReactNode;
|
|
|
|
cancelText?: React.ReactNode;
|
|
|
|
}
|
|
|
|
|
2016-07-25 11:35:51 +08:00
|
|
|
export interface PopconfirmContext {
|
|
|
|
antLocale?: {
|
|
|
|
Popconfirm?: any,
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|
2016-07-25 11:28:43 +08:00
|
|
|
export default class Popconfirm extends React.Component<PopconfirmProps, any> {
|
2016-03-29 17:33:37 +08:00
|
|
|
static defaultProps = {
|
2016-08-31 13:50:50 +08:00
|
|
|
prefixCls: 'ant-popover',
|
2016-04-07 15:02:22 +08:00
|
|
|
transitionName: 'zoom-big',
|
2016-03-29 17:33:37 +08:00
|
|
|
placement: 'top',
|
|
|
|
trigger: 'click',
|
2016-07-13 11:14:24 +08:00
|
|
|
};
|
2016-03-29 17:33:37 +08:00
|
|
|
|
|
|
|
static contextTypes = {
|
|
|
|
antLocale: React.PropTypes.object,
|
2016-07-13 11:14:24 +08:00
|
|
|
};
|
2016-03-29 17:33:37 +08:00
|
|
|
|
2016-07-25 11:39:54 +08:00
|
|
|
context: PopconfirmContext;
|
|
|
|
|
2016-11-30 15:46:50 +08:00
|
|
|
constructor(props: PopconfirmProps) {
|
2016-03-29 17:33:37 +08:00
|
|
|
super(props);
|
2016-11-30 15:46:50 +08:00
|
|
|
|
2016-03-29 17:33:37 +08:00
|
|
|
this.state = {
|
2016-11-30 15:46:50 +08:00
|
|
|
visible: props.visible,
|
2015-06-24 19:20:47 +08:00
|
|
|
};
|
2016-03-29 17:33:37 +08:00
|
|
|
}
|
|
|
|
|
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 });
|
|
|
|
}
|
2016-03-29 17:33:37 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
confirm = () => {
|
2015-12-04 14:58:19 +08:00
|
|
|
this.setVisible(false);
|
2016-10-24 12:04:26 +08:00
|
|
|
|
|
|
|
const onConfirm = this.props.onConfirm;
|
|
|
|
if (onConfirm) {
|
|
|
|
onConfirm.call(this);
|
|
|
|
}
|
2016-03-29 17:33:37 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
cancel = () => {
|
2015-12-04 14:58:19 +08:00
|
|
|
this.setVisible(false);
|
2016-10-24 12:04:26 +08:00
|
|
|
|
|
|
|
const onCancel = this.props.onCancel;
|
|
|
|
if (onCancel) {
|
|
|
|
onCancel.call(this);
|
|
|
|
}
|
2016-03-29 17:33:37 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
onVisibleChange = (visible) => {
|
2015-12-04 14:58:19 +08:00
|
|
|
this.setVisible(visible);
|
2016-03-29 17:33:37 +08:00
|
|
|
}
|
|
|
|
|
2015-12-04 14:58:19 +08:00
|
|
|
setVisible(visible) {
|
2016-11-30 15:46:50 +08:00
|
|
|
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
|
|
|
|
2016-11-30 15:46:50 +08:00
|
|
|
const onVisibleChange = props.onVisibleChange;
|
2016-10-24 12:04:26 +08:00
|
|
|
if (onVisibleChange) {
|
|
|
|
onVisibleChange(visible);
|
|
|
|
}
|
2016-03-29 17:33:37 +08:00
|
|
|
}
|
|
|
|
|
2015-06-24 19:20:47 +08:00
|
|
|
render() {
|
2016-11-30 15:46:50 +08:00
|
|
|
const { props, context } = this;
|
2016-12-19 15:19:15 +08:00
|
|
|
const { prefixCls, title, placement, ...restProps } = props;
|
2016-11-30 15:46:50 +08:00
|
|
|
|
|
|
|
let { okText, cancelText } = props;
|
|
|
|
const popconfirmLocale = context.antLocale && context.antLocale.Popconfirm;
|
|
|
|
if (popconfirmLocale) {
|
|
|
|
okText = okText || popconfirmLocale.okText;
|
|
|
|
cancelText = cancelText || popconfirmLocale.cancelText;
|
2016-03-03 17:43:38 +08:00
|
|
|
}
|
2016-11-30 15:46:50 +08:00
|
|
|
|
2016-01-07 14:21:29 +08:00
|
|
|
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>
|
2016-02-17 18:04:42 +08:00
|
|
|
<div className={`${prefixCls}-buttons`}>
|
2017-02-04 22:35:33 +08:00
|
|
|
<Button onClick={this.cancel} size="small">{cancelText || '取消'}</Button>
|
2016-03-03 21:00:38 +08:00
|
|
|
<Button onClick={this.confirm} type="primary" size="small">{okText || '确定'}</Button>
|
2016-01-07 14:21:29 +08:00
|
|
|
</div>
|
2015-06-24 19:20:47 +08:00
|
|
|
</div>
|
|
|
|
</div>
|
2016-01-07 14:21:29 +08:00
|
|
|
);
|
2015-06-24 19:20:47 +08:00
|
|
|
|
|
|
|
return (
|
2016-08-31 13:50:50 +08:00
|
|
|
<Tooltip
|
|
|
|
{...restProps}
|
2016-01-07 17:46:46 +08:00
|
|
|
prefixCls={prefixCls}
|
2016-08-31 13:50:50 +08:00
|
|
|
placement={placement}
|
2016-01-07 17:46:46 +08:00
|
|
|
onVisibleChange={this.onVisibleChange}
|
|
|
|
visible={this.state.visible}
|
2016-06-06 13:54:10 +08:00
|
|
|
overlay={overlay}
|
2016-08-31 13:50:50 +08:00
|
|
|
/>
|
2015-06-24 19:20:47 +08:00
|
|
|
);
|
|
|
|
}
|
2016-03-29 17:33:37 +08:00
|
|
|
}
|