Merge pull request #5983 from Armanio/fix/stories

fix(stories): `selectStory` correct behavior on call with one parameter
This commit is contained in:
Michael Shilman 2019-03-09 22:15:47 +08:00 committed by GitHub
commit d3ef9d6c78
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 20 additions and 2 deletions

View File

@ -195,9 +195,12 @@ const initStoriesApi = ({
};
const selectStory = (kindOrId, story) => {
const { viewMode = 'story', storyId } = store.getState();
const { viewMode = 'story', storyId, storiesHash } = store.getState();
if (!story) {
navigate(`/${viewMode}/${kindOrId}`);
const s = storiesHash[sanitize(kindOrId)];
// eslint-disable-next-line no-nested-ternary
const id = s ? (s.children ? s.children[0] : s.id) : kindOrId;
navigate(`/${viewMode}/${id}`);
} else if (!kindOrId) {
// This is a slugified version of the kind, but that's OK, our toId function is idempotent
const kind = storyId.split('--', 2)[0];

View File

@ -400,5 +400,20 @@ describe('stories API', () => {
selectStory(null, '2');
expect(navigate).toHaveBeenCalledWith('/story/a--2');
});
it('allows navigating to first story in kind on call by kind', () => {
const navigate = jest.fn();
const store = createMockStore();
const {
api: { selectStory, setStories },
state,
} = initStories({ store, navigate });
store.setState(state);
setStories(storiesHash);
selectStory('a');
expect(navigate).toHaveBeenCalledWith('/story/a--1');
});
});
});