render sync if possible

This commit is contained in:
Norbert de Langen 2019-12-06 21:23:21 +01:00
parent ab6ef53330
commit d1c6696eff
No known key found for this signature in database
GPG Key ID: 976651DA156C2825

View File

@ -145,9 +145,19 @@ export default class StoryStore extends EventEmitter {
data === undefined ? this._selection : { storyId: data.storyId, viewMode: data.viewMode };
this._error = error === undefined ? this._error : error;
let failed = false;
try {
if (this._channel) {
this._channel.emit(Events.STORY_RENDER);
}
failed = true;
} catch (e) {
failed = true;
}
setTimeout(() => {
// preferred method to emit event.
if (this._channel) {
if (this._channel && failed) {
this._channel.emit(Events.STORY_RENDER);
}