mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-04 22:51:18 +08:00
Merge pull request #7319 from storybookjs/7169-fix-renaming-stories
Addon-docs: Fix renaming stories on module / MDX format
This commit is contained in:
commit
cd87934497
@ -114,7 +114,16 @@ export default class StoryStore extends EventEmitter {
|
||||
|
||||
remove = id => {
|
||||
const { _data } = this;
|
||||
const story = _data[id];
|
||||
delete _data[id];
|
||||
|
||||
if (story) {
|
||||
const { kind, name } = story;
|
||||
const kindData = this._legacydata[toKey(kind)];
|
||||
if (kindData) {
|
||||
delete kindData.stories[toKey(name)];
|
||||
}
|
||||
}
|
||||
};
|
||||
|
||||
addStory(
|
||||
@ -271,6 +280,13 @@ export default class StoryStore extends EventEmitter {
|
||||
removeStoryKind(kind) {
|
||||
if (this.hasStoryKind(kind)) {
|
||||
this._legacydata[toKey(kind)].stories = {};
|
||||
|
||||
this._data = Object.entries(this._data).reduce((acc, [id, story]) => {
|
||||
if (story.kind !== kind) {
|
||||
Object.assign(acc, { [id]: story });
|
||||
}
|
||||
return acc;
|
||||
}, {});
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -95,6 +95,41 @@ describe('preview.story_store', () => {
|
||||
const store = new StoryStore({ channel });
|
||||
store.removeStoryKind('kind');
|
||||
});
|
||||
it('should remove the kind in both modern and legacy APIs', () => {
|
||||
const store = new StoryStore({ channel });
|
||||
store.addStory(...make('kind-1', 'story-1.1', () => 0));
|
||||
store.addStory(...make('kind-1', 'story-1.2', () => 0));
|
||||
store.addStory(...make('kind-2', 'story-2.1', () => 0));
|
||||
store.addStory(...make('kind-2', 'story-2.2', () => 0));
|
||||
|
||||
store.removeStoryKind('kind-1');
|
||||
|
||||
// _legacydata
|
||||
expect(store.hasStory('kind-1', 'story-1.1')).toBeFalsy();
|
||||
expect(store.hasStory('kind-2', 'story-2.1')).toBeTruthy();
|
||||
|
||||
// _data
|
||||
expect(store.fromId(toId('kind-1', 'story-1.1'))).toBeFalsy();
|
||||
expect(store.fromId(toId('kind-2', 'story-2.1'))).toBeTruthy();
|
||||
});
|
||||
});
|
||||
|
||||
describe('remove', () => {
|
||||
it('should remove the kind in both modern and legacy APIs', () => {
|
||||
const store = new StoryStore({ channel });
|
||||
store.addStory(...make('kind-1', 'story-1.1', () => 0));
|
||||
store.addStory(...make('kind-1', 'story-1.2', () => 0));
|
||||
|
||||
store.remove(toId('kind-1', 'story-1.1'));
|
||||
|
||||
// _legacydata
|
||||
expect(store.hasStory('kind-1', 'story-1.1')).toBeFalsy();
|
||||
expect(store.hasStory('kind-1', 'story-1.2')).toBeTruthy();
|
||||
|
||||
// _data
|
||||
expect(store.fromId(toId('kind-1', 'story-1.1'))).toBeFalsy();
|
||||
expect(store.fromId(toId('kind-1', 'story-1.2'))).toBeTruthy();
|
||||
});
|
||||
});
|
||||
|
||||
describe('getStoryAndParameters', () => {
|
||||
|
Loading…
x
Reference in New Issue
Block a user