Updated new loading indicator to document saving
This commit is contained in:
@ -10,6 +10,10 @@ import { inject, observer } from 'mobx-react';
|
|||||||
componentWillUnmount() {
|
componentWillUnmount() {
|
||||||
this.props.ui.disableProgressBar();
|
this.props.ui.disableProgressBar();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
render() {
|
||||||
|
return null;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
export default inject('ui')(LoadingIndicator);
|
export default inject('ui')(LoadingIndicator);
|
||||||
|
@ -84,9 +84,9 @@ type Props = {
|
|||||||
const document = this.document;
|
const document = this.document;
|
||||||
|
|
||||||
if (!document) return;
|
if (!document) return;
|
||||||
this.props.ui.enableProgressBar();
|
this.setState({ loading: true });
|
||||||
await document.save();
|
await document.save();
|
||||||
this.props.ui.disableProgressBar();
|
this.setState({ loading: false });
|
||||||
this.props.ui.disableEditMode();
|
this.props.ui.disableEditMode();
|
||||||
|
|
||||||
if (redirect) {
|
if (redirect) {
|
||||||
|
Reference in New Issue
Block a user