Don't append title prefix to Meta of= docs entries

This commit is contained in:
Tom Coleman 2022-07-06 12:07:10 +10:00
parent e19e16c090
commit abd94041a6
2 changed files with 28 additions and 1 deletions

View File

@ -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,

View File

@ -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);