|
1 | 1 | # Storybook Addon StackBlitz |
2 | 2 | Create a one-click Pull Request environment right from your component |
3 | 3 |
|
4 | | -### Development scripts |
| 4 | +## How to use it? |
5 | 5 |
|
6 | | -- `yarn start` runs babel in watch mode and starts Storybook |
7 | | -- `yarn build` build and package your addon code |
8 | | - |
9 | | -### Switch from TypeScript to JavaScript |
10 | | - |
11 | | -Don't want to use TypeScript? We offer a handy eject command: `yarn eject-ts` |
12 | | - |
13 | | -This will convert all code to JS. It is a destructive process, so we recommended running this before you start writing any code. |
14 | | - |
15 | | -## What's included? |
16 | | - |
17 | | - |
18 | | - |
19 | | -The addon code lives in `src`. It demonstrates all core addon related concepts. The three [UI paradigms](https://storybook.js.org/docs/react/addons/addon-types#ui-based-addons) |
20 | | - |
21 | | -- `src/Tool.tsx` |
22 | | -- `src/Panel.tsx` |
23 | | -- `src/Tab.tsx` |
24 | | - |
25 | | -Which, along with the addon itself, are registered in `src/manager.ts`. |
26 | | - |
27 | | -Managing State and interacting with a story: |
28 | | - |
29 | | -- `src/withGlobals.ts` & `src/Tool.tsx` demonstrates how to use `useGlobals` to manage global state and modify the contents of a Story. |
30 | | -- `src/withRoundTrip.ts` & `src/Panel.tsx` demonstrates two-way communication using channels. |
31 | | -- `src/Tab.tsx` demonstrates how to use `useParameter` to access the current story's parameters. |
32 | | - |
33 | | -Your addon might use one or more of these patterns. Feel free to delete unused code. Update `src/manager.ts` and `src/preview.ts` accordingly. |
34 | | - |
35 | | -Lastly, configure you addon name in `src/constants.ts`. |
36 | | - |
37 | | -### Metadata |
38 | | - |
39 | | -Storybook addons are listed in the [catalog](https://storybook.js.org/addons) and distributed via npm. The catalog is populated by querying npm's registry for Storybook-specific metadata in `package.json`. This project has been configured with sample data. Learn more about available options in the [Addon metadata docs](https://storybook.js.org/docs/react/addons/addon-catalog#addon-metadata). |
40 | | - |
41 | | -## Release Management |
| 6 | +Add the following to your `.storybook/main.ts` exports: |
42 | 7 |
|
43 | | -### Setup |
44 | | - |
45 | | -This project is configured to use [auto](https://github.com/intuit/auto) for release management. It generates a changelog and pushes it to both GitHub and npm. Therefore, you need to configure access to both: |
46 | | - |
47 | | -- [`NPM_TOKEN`](https://docs.npmjs.com/creating-and-viewing-access-tokens#creating-access-tokens) Create a token with both _Read and Publish_ permissions. |
48 | | -- [`GH_TOKEN`](https://github.com/settings/tokens) Create a token with the `repo` scope. |
49 | | - |
50 | | -Then open your `package.json` and edit the following fields: |
51 | | - |
52 | | -- `name` |
53 | | -- `author` |
54 | | -- `repository` |
55 | | - |
56 | | -#### Local |
57 | | - |
58 | | -To use `auto` locally create a `.env` file at the root of your project and add your tokens to it: |
59 | | - |
60 | | -```bash |
61 | | -GH_TOKEN=<value you just got from GitHub> |
62 | | -NPM_TOKEN=<value you just got from npm> |
| 8 | +```typescript |
| 9 | +export default { |
| 10 | + addons: ['@storybook/addon-storysource'], |
| 11 | +}; |
63 | 12 | ``` |
64 | 13 |
|
65 | | -Lastly, **create labels on GitHub**. You’ll use these labels in the future when making changes to the package. |
66 | | - |
67 | | -```bash |
68 | | -npx auto create-labels |
| 14 | +Configure the repository URL in the `.storybook/preview.ts`: |
| 15 | +```typescript |
| 16 | +export default { |
| 17 | + parameters: { |
| 18 | + repositoryUrl: 'https://github.com/[username]/[reponame]' |
| 19 | + }, |
| 20 | +}; |
69 | 21 | ``` |
70 | 22 |
|
71 | | -If you check on GitHub, you’ll now see a set of labels that `auto` would like you to use. Use these to tag future pull requests. |
72 | | - |
73 | | -#### GitHub Actions |
74 | | - |
75 | | -This template comes with GitHub actions already set up to publish your addon anytime someone pushes to your repository. |
76 | | - |
77 | | -Go to `Settings > Secrets`, click `New repository secret`, and add your `NPM_TOKEN`. |
78 | | - |
79 | | -### Creating a release |
80 | | - |
81 | | -To create a release locally you can run the following command, otherwise the GitHub action will make the release for you. |
| 23 | +In your story files set the file path for the specific story, for instance: |
| 24 | +```typescript |
| 25 | +export const Primary: Story = { |
| 26 | + args: {/* ... */}, |
| 27 | + parameters: { |
| 28 | + filePath: 'src/stories/Button.tsx' |
| 29 | + } |
| 30 | +}; |
| 31 | +``` |
82 | 32 |
|
83 | | -```sh |
84 | | -yarn release |
| 33 | +If your components are placed in multiple repositories, you can also define the repository URL per the specific story: |
| 34 | +```typescript |
| 35 | +export const Primary: Story = { |
| 36 | + args: {/* ... */}, |
| 37 | + parameters: { |
| 38 | + filePath: 'src/stories/Button.tsx', |
| 39 | + repositoryUrl: 'https://github.com/[username]/[reponame]' |
| 40 | + } |
| 41 | +}; |
85 | 42 | ``` |
86 | 43 |
|
87 | | -That will: |
88 | 44 |
|
89 | | -- Build and package the addon code |
90 | | -- Bump the version |
91 | | -- Push a release to GitHub and npm |
92 | | -- Push a changelog to GitHub |
| 45 | +## Development scripts |
| 46 | + |
| 47 | +- `yarn start` runs babel in watch mode and starts Storybook |
| 48 | +- `yarn build` build and package your addon code |
0 commit comments