mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-06 06:31:27 +08:00
Emit event when story is rendered in react native
This commit is contained in:
parent
538924f3e2
commit
aff037b46d
@ -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);
|
||||
|
Loading…
x
Reference in New Issue
Block a user