mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-05 08:01:20 +08:00
106 lines
3.2 KiB
Markdown
106 lines
3.2 KiB
Markdown
# Storybook Options Addon
|
|
|
|
[](https://greenkeeper.io/)
|
|
[](https://travis-ci.org/storybooks/storybook)
|
|
[](https://www.codefactor.io/repository/github/storybooks/storybook)
|
|
[](https://snyk.io/test/github/storybooks/storybook/8f36abfd6697e58cd76df3526b52e4b9dc894847)
|
|
[](https://bettercodehub.com/results/storybooks/storybook) [](https://codecov.io/gh/storybooks/storybook)
|
|
[](https://storybooks-slackin.herokuapp.com/)
|
|
|
|
The Options addon can be used to set configure the [Storybook](https://storybook.js.org) UI.
|
|
|
|
This addon works with Storybook for:
|
|
[React](https://github.com/storybooks/storybook/tree/master/app/react) and
|
|
[React Native](https://github.com/storybooks/storybook/tree/master/app/react-native).
|
|
|
|

|
|
|
|
## Getting Started
|
|
|
|
First, install the addon
|
|
|
|
```sh
|
|
npm install -D @storybook/addon-options
|
|
```
|
|
|
|
Add this line to your `addons.js` file (create this file inside your storybook config directory if needed).
|
|
|
|
```js
|
|
import '@storybook/addon-options/register';
|
|
```
|
|
|
|
Import and use the `setOptions` function in your config.js file.
|
|
|
|
```js
|
|
import * as storybook from '@storybook/react';
|
|
import { setOptions } from '@storybook/addon-options';
|
|
|
|
// Option defaults:
|
|
setOptions({
|
|
/**
|
|
* name to display in the top left corner
|
|
* @type {String}
|
|
*/
|
|
name: 'Storybook',
|
|
/**
|
|
* URL for name in top left corner to link to
|
|
* @type {String}
|
|
*/
|
|
url: '#',
|
|
/**
|
|
* show story component as full screen
|
|
* @type {Boolean}
|
|
*/
|
|
goFullScreen: false,
|
|
/**
|
|
* display left panel that shows a list of stories
|
|
* @type {Boolean}
|
|
*/
|
|
showLeftPanel: true,
|
|
/**
|
|
* display horizontal panel that displays addon configurations
|
|
* @type {Boolean}
|
|
*/
|
|
showDownPanel: true,
|
|
/**
|
|
* display floating search box to search through stories
|
|
* @type {Boolean}
|
|
*/
|
|
showSearchBox: false,
|
|
/**
|
|
* show horizontal addons panel as a vertical panel on the right
|
|
* @type {Boolean}
|
|
*/
|
|
downPanelInRight: false,
|
|
/**
|
|
* sorts stories
|
|
* @type {Boolean}
|
|
*/
|
|
sortStoriesByKind: false,
|
|
/**
|
|
* regex for finding the hierarchy separator
|
|
* @example:
|
|
* null - turn off hierarchy
|
|
* /\// - split by `/`
|
|
* /\./ - split by `.`
|
|
* /\/|\./ - split by `/` or `.`
|
|
* @type {Regex}
|
|
*/
|
|
hierarchySeparator: null,
|
|
|
|
/**
|
|
* sidebar tree animations
|
|
* @type {Boolean}
|
|
*/
|
|
sidebarAnimations: true,
|
|
|
|
/**
|
|
* id to select an addon panel
|
|
* @type {String}
|
|
*/
|
|
selectedAddonPanel: undefined, // The order of addons in the "Addons Panel" is the same as you import them in 'addons.js'. The first panel will be opened by default as you run Storybook
|
|
});
|
|
|
|
storybook.configure(() => require('./stories'), module);
|
|
```
|