ant-design/components/modal/ActionButton.tsx

92 lines
2.2 KiB
TypeScript
Raw Normal View History

import * as React from 'react';
import * as ReactDOM from 'react-dom';
2017-07-17 09:40:55 +08:00
import Button from '../button';
import { ButtonType, ButtonProps } from '../button/button';
2016-12-19 14:01:52 +08:00
export interface ActionButtonProps {
type?: ButtonType;
actionFn?: (...args: any[]) => any | PromiseLike<any>;
2016-12-19 14:01:52 +08:00
closeModal: Function;
autoFocus?: boolean;
buttonProps?: ButtonProps;
2016-12-19 14:01:52 +08:00
}
export interface ActionButtonState {
loading: ButtonProps['loading'];
}
export default class ActionButton extends React.Component<ActionButtonProps, ActionButtonState> {
2016-12-19 14:01:52 +08:00
timeoutId: number;
clicked: boolean;
state = {
loading: false,
};
2019-02-24 15:49:12 +08:00
2016-12-19 14:01:52 +08:00
componentDidMount() {
if (this.props.autoFocus) {
const $this = ReactDOM.findDOMNode(this) as HTMLInputElement;
this.timeoutId = setTimeout(() => $this.focus());
}
}
2019-02-24 15:49:12 +08:00
2016-12-19 14:01:52 +08:00
componentWillUnmount() {
clearTimeout(this.timeoutId);
}
2019-02-24 15:49:12 +08:00
2016-12-19 14:01:52 +08:00
onClick = () => {
const { actionFn, closeModal } = this.props;
if (this.clicked) {
return;
}
this.clicked = true;
2016-12-19 14:01:52 +08:00
if (actionFn) {
let ret;
if (actionFn.length) {
ret = actionFn(closeModal);
} else {
ret = actionFn();
if (!ret) {
closeModal();
}
}
if (ret && ret.then) {
this.setState({ loading: true });
2018-12-07 16:17:45 +08:00
ret.then(
(...args: any[]) => {
// It's unnecessary to set loading=false, for the Modal will be unmounted after close.
// this.setState({ loading: false });
closeModal(...args);
},
(e: Error) => {
// Emit error when catch promise reject
2019-08-11 19:38:08 +08:00
// eslint-disable-next-line no-console
console.error(e);
2018-12-07 16:17:45 +08:00
// See: https://github.com/ant-design/ant-design/issues/6183
this.setState({ loading: false });
this.clicked = false;
2018-12-07 16:17:45 +08:00
},
);
2016-12-19 14:01:52 +08:00
}
} else {
closeModal();
}
2018-12-07 16:17:45 +08:00
};
2016-12-19 14:01:52 +08:00
render() {
const { type, children, buttonProps } = this.props;
2019-08-05 18:38:10 +08:00
const { loading } = this.state;
2016-12-19 14:01:52 +08:00
return (
<Button
type={type}
onClick={this.onClick}
loading={loading}
{...buttonProps}
>
2016-12-19 14:01:52 +08:00
{children}
</Button>
);
}
}