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.
75 lines
1.8 KiB
75 lines
1.8 KiB
import React from 'react';
|
|
import Tooltip from 'rc-tooltip';
|
|
const prefixCls = 'ant-popover';
|
|
|
|
export default React.createClass({
|
|
getInitialState() {
|
|
return {
|
|
visible: false
|
|
};
|
|
},
|
|
getDefaultProps() {
|
|
return {
|
|
transitionName: '',
|
|
placement: 'top',
|
|
trigger: 'click',
|
|
overlayStyle: {},
|
|
onConfirm: function () {
|
|
},
|
|
onCancel: function () {
|
|
}
|
|
};
|
|
},
|
|
confirm() {
|
|
this.props.onConfirm.call(this);
|
|
this.setState({
|
|
visible: false
|
|
});
|
|
},
|
|
cancel() {
|
|
this.props.onCancel.call(this);
|
|
this.setState({
|
|
visible: false
|
|
});
|
|
},
|
|
onVisibleChange(v) {
|
|
this.setState({
|
|
visible: v
|
|
});
|
|
},
|
|
render() {
|
|
const overlay = <div>
|
|
<div className={prefixCls + '-content'}>
|
|
<p className={prefixCls + '-message'}>
|
|
<i className="anticon anticon-exclamation-circle"></i>
|
|
{this.props.title}
|
|
</p>
|
|
|
|
<div className={prefixCls + '-buttons'}>
|
|
<button onClick={this.cancel} className="ant-btn ant-btn-sm">取 消</button>
|
|
<button onClick={this.confirm} className="ant-btn ant-btn-primary ant-btn-sm">确 定</button>
|
|
</div>
|
|
</div>
|
|
</div>;
|
|
|
|
const transitionName = ({
|
|
top: 'zoom-down',
|
|
bottom: 'zoom-up',
|
|
left: 'zoom-right',
|
|
right: 'zoom-left'
|
|
})[this.props.placement];
|
|
|
|
return (
|
|
<Tooltip placement={this.props.placement}
|
|
overlayStyle={this.props.overlayStyle}
|
|
prefixCls={prefixCls}
|
|
onVisibleChange={this.onVisibleChange}
|
|
transitionName={transitionName}
|
|
visible={this.state.visible}
|
|
trigger={this.props.trigger}
|
|
overlay={overlay}>
|
|
{this.props.children}
|
|
</Tooltip>
|
|
);
|
|
}
|
|
});
|
|
|