Add error handling for failure to connect to integration manager.
This commit is contained in:
parent
9a5c916570
commit
88288ff3f5
1 changed files with 18 additions and 8 deletions
|
@ -49,6 +49,7 @@ export default class Stickerpack extends React.Component {
|
|||
this.state = {
|
||||
stickersContent: this.defaultStickersContent,
|
||||
showStickers: false,
|
||||
imError: null,
|
||||
};
|
||||
}
|
||||
|
||||
|
@ -56,7 +57,7 @@ export default class Stickerpack extends React.Component {
|
|||
console.warn('Removing stickerpack widgets');
|
||||
Widgets.removeStickerpackWidgets();
|
||||
this._getStickerPickerWidget();
|
||||
this.onFinished();
|
||||
this.stickersMenu.close();
|
||||
}
|
||||
|
||||
componentDidMount() {
|
||||
|
@ -66,21 +67,30 @@ export default class Stickerpack extends React.Component {
|
|||
this.scalarClient.connect().then(() => {
|
||||
this.forceUpdate();
|
||||
}).catch((e) => {
|
||||
console.log("Failed to connect to integrations server");
|
||||
// TODO -- Handle Scalar errors
|
||||
// this.setState({
|
||||
// scalar_error: err,
|
||||
// });
|
||||
this._imError("Failed to connect to integrations server", e);
|
||||
});
|
||||
}
|
||||
|
||||
if (!this.state.imError) {
|
||||
this._getStickerPickerWidget();
|
||||
this.dispatcherRef = dis.register(this._onWidgetAction);
|
||||
}
|
||||
}
|
||||
|
||||
componentWillUnmount() {
|
||||
dis.unregister(this.dispatcherRef);
|
||||
}
|
||||
|
||||
_imError(errorMsg, e) {
|
||||
console.error(errorMsg, e);
|
||||
const imErrorContent = <div style={{"text-align": "center"}} className="error"><p> { errorMsg } </p></div>;
|
||||
this.setState({
|
||||
showStickers: false,
|
||||
imError: errorMsg,
|
||||
stickersContent: imErrorContent,
|
||||
});
|
||||
}
|
||||
|
||||
_onWidgetAction(payload) {
|
||||
if (payload.action === "user_widget_updated") {
|
||||
console.warn("user widget updated");
|
||||
|
|
Loading…
Reference in a new issue