Merge pull request #17638 from LucaCras/17596-document-csf3.0-auto-title

Update the documentation with info on auto generating titles
This commit is contained in:
jonniebigodes 2022-03-14 19:40:58 +00:00 committed by GitHub
commit a0f1dc18ea
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
5 changed files with 48 additions and 13 deletions

View File

@ -26,21 +26,47 @@ If youd prefer to show top-level nodes as folders rather than roots, you can
<!-- prettier-ignore-end --> <!-- prettier-ignore-end -->
## Generating titles based on `__dirname` ## Automatically generate titles
As a CSF file is a JavaScript file, all exports (including the default export) can be generated dynamically. In particular you can use the `__dirname` variable to create the title based on the path name (this example uses the paths.macro): With CSF 3.0 files, you can choose to leave out a title and let it be inferred from the story's path on disk instead:
<!-- prettier-ignore-start --> <!-- prettier-ignore-start -->
<CodeSnippets <CodeSnippets
paths={[ paths={[
'common/component-story-dynamic-title.js.mdx', 'common/component-story-auto-title.js.mdx',
]} ]}
/> />
<!-- prettier-ignore-end --> <!-- prettier-ignore-end -->
If you need, you can also generate automatic titles for all your stories using a configuration object. See the [story loading](./overview.md#with-a-configuration-object) documentation to learn how you can use this feature. This is controlled by the way your stories are configured:
<!-- prettier-ignore-start -->
<CodeSnippets
paths={[
'common/component-story-configuration.js.mdx',
]}
/>
<!-- prettier-ignore-end -->
Given this configuration, the stories file `../src/components/MyComponent.stories.tsx` will get the title `components/MyComponent`.
You can further customize the generated title by modifying the stories configuration.
<!-- prettier-ignore-start -->
<CodeSnippets
paths={[
'common/component-story-configuration-custom.js.mdx',
]}
/>
<!-- prettier-ignore-end -->
This configuration would match a custom file pattern, and add a custom prefix of Foo to each generated title.
## Permalinking to stories ## Permalinking to stories

View File

@ -0,0 +1,4 @@
```js
// CSF 3.0 - MyComponent.stories.js|jsx|ts|tsx
export default { component: MyComponent }
```

View File

@ -0,0 +1,8 @@
```js
// ./storybook/main.js
module.exports = {
stories: [
{ directory: '../src', files: '*.story.tsx', titlePrefix: 'Foo' }
]
};
```

View File

@ -0,0 +1,6 @@
```js
// ./storybook/main.js
module.exports = {
stories: ['../src']
};
```

View File

@ -1,9 +0,0 @@
```js
// MyComponent.stories.js|jsx|ts|tsx
import base from 'paths.macro';
export default {
title: `${base}/Component`
}
```