mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-04 19:21:07 +08:00
Merge pull request #16462 from storybookjs/16430-fix-initial-story-interactions
Interactions: Do not cleanup state when loading initial story
This commit is contained in:
commit
49323212de
@ -317,6 +317,7 @@ describe('Instrumenter', () => {
|
||||
});
|
||||
|
||||
it('clears state when switching stories', () => {
|
||||
addons.getChannel().emit(SET_CURRENT_STORY); // initialization
|
||||
instrumenter.state = {
|
||||
'kind--story': {
|
||||
isDebugging: false,
|
||||
|
@ -102,6 +102,8 @@ const getRetainedState = (state: State, isDebugging = false) => {
|
||||
export class Instrumenter {
|
||||
channel: Channel;
|
||||
|
||||
initialized = false;
|
||||
|
||||
// State is tracked per story to deal with multiple stories on the same canvas (i.e. docs mode)
|
||||
state: Record<StoryId, State>;
|
||||
|
||||
@ -144,8 +146,11 @@ export class Instrumenter {
|
||||
}
|
||||
});
|
||||
|
||||
// Trash non-retained state and clear the log when switching stories.
|
||||
this.channel.on(SET_CURRENT_STORY, this.cleanup.bind(this));
|
||||
// Trash non-retained state and clear the log when switching stories, but not on initial boot.
|
||||
this.channel.on(SET_CURRENT_STORY, () => {
|
||||
if (this.initialized) this.cleanup();
|
||||
else this.initialized = true;
|
||||
});
|
||||
|
||||
const start = ({ storyId, playUntil }: { storyId: string; playUntil?: Call['id'] }) => {
|
||||
if (!this.getState(storyId).isDebugging) {
|
||||
|
Loading…
x
Reference in New Issue
Block a user