call onWidgetLoad on componentDidUpdate

Signed-off-by: Michael Telatynski <7t3chguy@gmail.com>
This commit is contained in:
Michael Telatynski 2018-04-27 11:32:04 +01:00
parent fdf63fd440
commit ca766df598
No known key found for this signature in database
GPG key ID: 3F879DA5AD802A5E

View file

@ -65,6 +65,10 @@ export default class ReplyThread extends React.Component {
this.initialize();
}
componentDidUpdate() {
this.props.onWidgetLoad();
}
componentWillUnmount() {
this.unmounted = true;
}
@ -105,7 +109,7 @@ export default class ReplyThread extends React.Component {
if (!inReplyTo) {
this.setState({
loading: false,
}, this.props.onWidgetLoad);
});
return;
}
@ -113,9 +117,9 @@ export default class ReplyThread extends React.Component {
if (this.unmounted) return;
if (loadedEv) {
this.setState({loadedEv}, this.props.onWidgetLoad);
this.setState({loadedEv});
} else {
this.setState({err: true}, this.props.onWidgetLoad);
this.setState({err: true});
}
}