You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
113 lines
2.8 KiB
113 lines
2.8 KiB
import React from 'react';
|
|
import Tooltip, { AbstractTooltipProps } from '../tooltip';
|
|
import Icon from '../icon';
|
|
import Button from '../button';
|
|
import injectLocale from '../locale-provider/injectLocale';
|
|
|
|
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',
|
|
transitionName: 'zoom-big',
|
|
placement: 'top',
|
|
trigger: 'click',
|
|
};
|
|
|
|
constructor(props: PopconfirmProps) {
|
|
super(props);
|
|
|
|
this.state = {
|
|
visible: props.visible,
|
|
};
|
|
}
|
|
|
|
abstract getLocale()
|
|
|
|
componentWillReceiveProps(nextProps: PopconfirmProps) {
|
|
if ('visible' in nextProps) {
|
|
this.setState({ visible: nextProps.visible });
|
|
}
|
|
}
|
|
|
|
onConfirm = (e) => {
|
|
this.setVisible(false);
|
|
|
|
const { onConfirm } = this.props;
|
|
if (onConfirm) {
|
|
onConfirm.call(this, e);
|
|
}
|
|
}
|
|
|
|
onCancel = (e) => {
|
|
this.setVisible(false);
|
|
|
|
const { onCancel } = this.props;
|
|
if (onCancel) {
|
|
onCancel.call(this, e);
|
|
}
|
|
}
|
|
|
|
onVisibleChange = (visible) => {
|
|
this.setVisible(visible);
|
|
}
|
|
|
|
setVisible(visible) {
|
|
const props = this.props;
|
|
if (!('visible' in props)) {
|
|
this.setState({ visible });
|
|
}
|
|
|
|
const { onVisibleChange } = props;
|
|
if (onVisibleChange) {
|
|
onVisibleChange(visible);
|
|
}
|
|
}
|
|
|
|
render() {
|
|
const { prefixCls, title, placement, okText, cancelText, ...restProps } = this.props;
|
|
const popconfirmLocale = this.getLocale();
|
|
|
|
const overlay = (
|
|
<div>
|
|
<div className={`${prefixCls}-inner-content`}>
|
|
<div className={`${prefixCls}-message`}>
|
|
<Icon type="exclamation-circle" />
|
|
<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>
|
|
</div>
|
|
</div>
|
|
);
|
|
|
|
return (
|
|
<Tooltip
|
|
{...restProps}
|
|
prefixCls={prefixCls}
|
|
placement={placement}
|
|
onVisibleChange={this.onVisibleChange}
|
|
visible={this.state.visible}
|
|
overlay={overlay}
|
|
/>
|
|
);
|
|
}
|
|
}
|
|
|
|
const injectPopconfirmLocale = injectLocale('Popconfirm', {
|
|
cancelText: '取消',
|
|
okText: '确定',
|
|
});
|
|
export default injectPopconfirmLocale<PopconfirmProps>(Popconfirm as any);
|
|
|