Emit event when story is rendered in react native

This commit is contained in:
Gytis Vinclovas 2019-07-17 15:14:01 +03:00
parent 538924f3e2
commit aff037b46d

View File

@ -25,6 +25,16 @@ export default class StoryView extends Component<Props> {
channel.on(Events.FORCE_RE_RENDER, this.forceReRender);
}
componentDidUpdate() {
const channel = addons.getChannel();
const { stories } = this.props;
const { storyId } = stories.getSelection();
if (storyId) {
channel.emit(Events.STORY_RENDERED);
}
}
componentWillUnmount() {
const channel = addons.getChannel();
channel.removeListener(Events.STORY_RENDER, this.forceReRender);