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.
 
 

140 lines
3.4 KiB

import * as React from 'react';
import Tooltip, { AbstractTooltipProps } from '../tooltip';
import Icon from '../icon';
import Button from '../button';
import { ButtonType } from '../button/button';
import LocaleReceiver from '../locale-provider/LocaleReceiver';
import defaultLocale from '../locale-provider/default';
export interface PopconfirmProps extends AbstractTooltipProps {
title: React.ReactNode;
onConfirm?: (e: React.MouseEvent<any>) => void;
onCancel?: (e: React.MouseEvent<any>) => void;
okText?: React.ReactNode;
okType?: ButtonType;
cancelText?: React.ReactNode;
}
export interface PopconfirmState {
visible?: boolean;
}
export interface PopconfirmLocale {
okText: string;
cancelText: string;
}
export default class Popconfirm extends React.Component<PopconfirmProps, PopconfirmState> {
static defaultProps = {
prefixCls: 'ant-popover',
transitionName: 'zoom-big',
placement: 'top',
trigger: 'click',
okType: 'primary',
};
private tooltip: any;
constructor(props: PopconfirmProps) {
super(props);
this.state = {
visible: props.visible,
};
}
componentWillReceiveProps(nextProps: PopconfirmProps) {
if ('visible' in nextProps) {
this.setState({ visible: nextProps.visible });
}
}
getPopupDomNode() {
return this.tooltip.getPopupDomNode();
}
onConfirm = (e: React.MouseEvent<HTMLButtonElement>) => {
this.setVisible(false);
const { onConfirm } = this.props;
if (onConfirm) {
onConfirm.call(this, e);
}
}
onCancel = (e: React.MouseEvent<HTMLButtonElement>) => {
this.setVisible(false);
const { onCancel } = this.props;
if (onCancel) {
onCancel.call(this, e);
}
}
onVisibleChange = (visible: boolean) => {
this.setVisible(visible);
}
setVisible(visible: boolean) {
const props = this.props;
if (!('visible' in props)) {
this.setState({ visible });
}
const { onVisibleChange } = props;
if (onVisibleChange) {
onVisibleChange(visible);
}
}
saveTooltip = (node: any) => {
this.tooltip = node;
}
renderOverlay = (popconfirmLocale: PopconfirmLocale) => {
const { prefixCls, title, cancelText, okText, okType } = this.props;
return (
<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={okType} size="small">
{okText || popconfirmLocale.okText}
</Button>
</div>
</div>
</div>
);
}
render() {
const { prefixCls, placement, ...restProps } = this.props;
const overlay = (
<LocaleReceiver
componentName="Popconfirm"
defaultLocale={defaultLocale.Popconfirm}
>
{this.renderOverlay}
</LocaleReceiver>
);
return (
<Tooltip
{...restProps}
prefixCls={prefixCls}
placement={placement}
onVisibleChange={this.onVisibleChange}
visible={this.state.visible}
overlay={overlay}
ref={this.saveTooltip}
/>
);
}
}