mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-07 07:01:21 +08:00
Source-loader: Handle template strings in CSF title (#8995)
Source-loader: Handle template strings in CSF title
This commit is contained in:
commit
1e53a3ae7a
@ -3,8 +3,10 @@ import notes from '../notes/notes.md';
|
|||||||
import mdxNotes from '../notes/notes.mdx';
|
import mdxNotes from '../notes/notes.mdx';
|
||||||
import { DocgenButton } from '../../components/DocgenButton';
|
import { DocgenButton } from '../../components/DocgenButton';
|
||||||
|
|
||||||
|
const docsTitle = title => `Docs/${title}`;
|
||||||
|
|
||||||
export default {
|
export default {
|
||||||
title: 'Addons/Docs/stories',
|
title: `Addons/${docsTitle('stories')}`,
|
||||||
component: DocgenButton,
|
component: DocgenButton,
|
||||||
};
|
};
|
||||||
|
|
||||||
|
@ -96,8 +96,16 @@ export function findExportsMap(ast) {
|
|||||||
if (!titleProperty) {
|
if (!titleProperty) {
|
||||||
return { addsMap, idsToFrameworks };
|
return { addsMap, idsToFrameworks };
|
||||||
}
|
}
|
||||||
const title = titleProperty.value.value;
|
const titleValue = titleProperty.value;
|
||||||
|
let title;
|
||||||
|
if (titleValue.type === 'TemplateLiteral' && titleValue.quasis.length > 0) {
|
||||||
|
// if a tagged template string.
|
||||||
|
title = titleValue.quasis[0].value.raw;
|
||||||
|
} else {
|
||||||
|
// if title is string: 'StringLiteral'
|
||||||
|
title = titleProperty.value.value;
|
||||||
|
}
|
||||||
|
if (title) {
|
||||||
estraverse.traverse(ast, {
|
estraverse.traverse(ast, {
|
||||||
fallback: 'iteration',
|
fallback: 'iteration',
|
||||||
enter: node => {
|
enter: node => {
|
||||||
@ -121,6 +129,7 @@ export function findExportsMap(ast) {
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
});
|
});
|
||||||
|
}
|
||||||
return { addsMap, idsToFrameworks };
|
return { addsMap, idsToFrameworks };
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user