mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-04 22:21:27 +08:00
DocsPage: Fix title with new path separator scheme (#9204)
DocsPage: Fix title with new path separator scheme
This commit is contained in:
commit
00d5b3763e
@ -15,4 +15,10 @@ describe('defaultTitleSlot', () => {
|
||||
expect(defaultTitleSlot({ selectedKind: 'a|b', parameters })).toBe('b');
|
||||
expect(defaultTitleSlot({ selectedKind: 'a/b/c.d', parameters })).toBe('d');
|
||||
});
|
||||
it('empty options', () => {
|
||||
const parameters = { options: {} };
|
||||
expect(defaultTitleSlot({ selectedKind: 'a/b/c', parameters })).toBe('c');
|
||||
expect(defaultTitleSlot({ selectedKind: 'a|b', parameters })).toBe('b');
|
||||
expect(defaultTitleSlot({ selectedKind: 'a/b/c.d', parameters })).toBe('d');
|
||||
});
|
||||
});
|
||||
|
@ -11,13 +11,9 @@ interface TitleProps {
|
||||
export const defaultTitleSlot: StringSlot = ({ selectedKind, parameters }) => {
|
||||
const {
|
||||
showRoots,
|
||||
hierarchyRootSeparator: rootSeparator,
|
||||
hierarchySeparator: groupSeparator,
|
||||
} = (parameters && parameters.options) || {
|
||||
showRoots: undefined,
|
||||
hierarchyRootSeparator: '|',
|
||||
hierarchySeparator: /\/|\./,
|
||||
};
|
||||
hierarchyRootSeparator: rootSeparator = '|',
|
||||
hierarchySeparator: groupSeparator = /\/|\./,
|
||||
} = (parameters && parameters.options) || {};
|
||||
|
||||
let groups;
|
||||
if (typeof showRoots !== 'undefined') {
|
||||
|
Loading…
x
Reference in New Issue
Block a user