mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-06 00:41:05 +08:00
Don't append title prefix to Meta of= docs entries
This commit is contained in:
parent
e19e16c090
commit
abd94041a6
@ -525,6 +525,33 @@ describe('StoryIndexGenerator', () => {
|
||||
`);
|
||||
});
|
||||
|
||||
it('does not append title prefix if meta references a CSF file', async () => {
|
||||
const generator = new StoryIndexGenerator(
|
||||
[
|
||||
storiesSpecifier,
|
||||
normalizeStoriesEntry(
|
||||
{ directory: './src/docs2', files: '**/*.mdx', titlePrefix: 'titlePrefix' },
|
||||
options
|
||||
),
|
||||
],
|
||||
options
|
||||
);
|
||||
await generator.initialize();
|
||||
|
||||
// NOTE: `toMatchInlineSnapshot` on objects sorts the keys, but in actuality, they are
|
||||
// not sorted by default.
|
||||
expect(Object.values((await generator.getIndex()).entries).map((e) => e.title))
|
||||
.toMatchInlineSnapshot(`
|
||||
Array [
|
||||
"A",
|
||||
"A",
|
||||
"titlePrefix/NoTitle",
|
||||
"A",
|
||||
"titlePrefix/docs2/Yabbadabbadooo",
|
||||
]
|
||||
`);
|
||||
});
|
||||
|
||||
it('generates no docs entries when docs are disabled', async () => {
|
||||
const generator = new StoryIndexGenerator([storiesSpecifier, docsSpecifier], {
|
||||
...options,
|
||||
|
@ -307,7 +307,7 @@ export class StoryIndexGenerator {
|
||||
dep.dependents.push(absolutePath);
|
||||
});
|
||||
|
||||
const title = userOrAutoTitleFromSpecifier(importPath, specifier, result.title || ofTitle);
|
||||
const title = ofTitle || userOrAutoTitleFromSpecifier(importPath, specifier, result.title);
|
||||
const name = result.name || this.options.docs.defaultName;
|
||||
const id = toId(title, name);
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user