mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-05 02:31:07 +08:00
165 lines
2.9 KiB
Markdown
165 lines
2.9 KiB
Markdown
# Storybook Storysource Addon
|
|
|
|
This addon is used to show stories source in the addon panel.
|
|
|
|
[Framework Support](https://github.com/storybookjs/storybook/blob/master/ADDONS_SUPPORT.md)
|
|
|
|

|
|
|
|
## Getting Started
|
|
|
|
First, install the addon
|
|
|
|
```sh
|
|
yarn add @storybook/addon-storysource --dev
|
|
```
|
|
|
|
Add this line to your `addons.js` file
|
|
|
|
```js
|
|
import '@storybook/addon-storysource/register';
|
|
```
|
|
|
|
Use this hook to a custom webpack.config. This will generate a decorator call in every story:
|
|
|
|
```js
|
|
module.exports = function({ config }) {
|
|
config.module.rules.push({
|
|
test: /\.stories\.jsx?$/,
|
|
loaders: [require.resolve('@storybook/addon-storysource/loader')],
|
|
enforce: 'pre',
|
|
});
|
|
|
|
return config;
|
|
};
|
|
```
|
|
|
|
## Loader Options
|
|
|
|
The loader can be customized with the following options:
|
|
|
|
### parser
|
|
|
|
The parser that will be parsing your code to AST (based on [prettier](https://github.com/prettier/prettier/tree/master/src/language-js))
|
|
|
|
Allowed values:
|
|
|
|
- `javascript` - default
|
|
- `typescript`
|
|
- `flow`
|
|
|
|
Usage:
|
|
|
|
```js
|
|
module.exports = function({ config }) {
|
|
config.module.rules.push({
|
|
test: /\.stories\.jsx?$/,
|
|
loaders: [
|
|
{
|
|
loader: require.resolve('@storybook/addon-storysource/loader'),
|
|
options: { parser: 'typescript' },
|
|
},
|
|
],
|
|
enforce: 'pre',
|
|
});
|
|
|
|
return config;
|
|
};
|
|
```
|
|
|
|
### prettierConfig
|
|
|
|
The prettier configuration that will be used to format the story source in the addon panel.
|
|
|
|
Defaults:
|
|
|
|
```js
|
|
{
|
|
printWidth: 100,
|
|
tabWidth: 2,
|
|
bracketSpacing: true,
|
|
trailingComma: 'es5',
|
|
singleQuote: true,
|
|
}
|
|
```
|
|
|
|
Usage:
|
|
|
|
```js
|
|
module.exports = function({ config }) {
|
|
config.module.rules.push({
|
|
test: /\.stories\.jsx?$/,
|
|
loaders: [
|
|
{
|
|
loader: require.resolve('@storybook/addon-storysource/loader'),
|
|
options: {
|
|
prettierConfig: {
|
|
printWidth: 100,
|
|
singleQuote: false,
|
|
},
|
|
},
|
|
},
|
|
],
|
|
enforce: 'pre',
|
|
});
|
|
|
|
return config;
|
|
};
|
|
```
|
|
|
|
### uglyCommentsRegex
|
|
|
|
The array of regex that is used to remove "ugly" comments.
|
|
|
|
Defaults:
|
|
|
|
```js
|
|
[/^eslint-.*/, /^global.*/];
|
|
```
|
|
|
|
Usage:
|
|
|
|
```js
|
|
module.exports = function({ config }) {
|
|
config.module.rules.push({
|
|
test: /\.stories\.jsx?$/,
|
|
loaders: [
|
|
{
|
|
loader: require.resolve('@storybook/addon-storysource/loader'),
|
|
options: {
|
|
uglyCommentsRegex: [/^eslint-.*/, /^global.*/],
|
|
},
|
|
},
|
|
],
|
|
enforce: 'pre',
|
|
});
|
|
|
|
return config;
|
|
};
|
|
```
|
|
|
|
### injectDecorator
|
|
|
|
Tell storysource whether you need inject decorator.If false, you need to add the decorator by yourself;
|
|
|
|
Defaults: true
|
|
|
|
Usage:
|
|
|
|
```js
|
|
module.exports = function({ config }) {
|
|
config.module.rules.push({
|
|
test: /\.stories\.jsx?$/,
|
|
loaders: [
|
|
{
|
|
loader: require.resolve('@storybook/addon-storysource/loader'),
|
|
options: { injectDecorator: false },
|
|
},
|
|
],
|
|
enforce: 'pre',
|
|
});
|
|
|
|
return config;
|
|
};
|
|
```
|