import React from 'react'; import ReactDOM from 'react-dom'; import Button from '../button'; import { ButtonType } from '../button/button'; export interface ActionButtonProps { type?: ButtonType; actionFn: Function; closeModal: Function; autoFocus?: Boolean; } export default class ActionButton extends React.Component { timeoutId: number; constructor(props) { super(props); this.state = { loading: false, }; } componentDidMount() { if (this.props.autoFocus) { const $this = ReactDOM.findDOMNode(this) as HTMLInputElement; this.timeoutId = setTimeout(() => $this.focus()); } } componentWillUnmount() { clearTimeout(this.timeoutId); } onClick = () => { const { actionFn, closeModal } = this.props; if (actionFn) { let ret; if (actionFn.length) { ret = actionFn(closeModal); } else { ret = actionFn(); if (!ret) { closeModal(); } } if (ret && ret.then) { this.setState({ loading: true }); ret.then((...args) => { // It's unnecessary to set loading=false, for the Modal will be unmounted after close. // this.setState({ loading: false }); closeModal(...args); }, () => { // See: https://github.com/ant-design/ant-design/issues/6183 this.setState({ loading: false }); }); } } else { closeModal(); } } render() { const { type, children } = this.props; const loading = this.state.loading; return ( ); } }