From b490fa4bfd5d121e70ea836fa78ecf46a7c0009c Mon Sep 17 00:00:00 2001 From: Tom Coleman Date: Fri, 6 Apr 2018 13:36:40 +1000 Subject: [PATCH] Update addon-notes README --- addons/notes/README.md | 54 +++++++++---------- .../stories/addon-notes.stories.js | 2 +- 2 files changed, 26 insertions(+), 30 deletions(-) diff --git a/addons/notes/README.md b/addons/notes/README.md index 368c2a834e0..4916f859d41 100644 --- a/addons/notes/README.md +++ b/addons/notes/README.md @@ -7,7 +7,7 @@ [![Storybook Slack](https://now-examples-slackin-rrirkqohko.now.sh/badge.svg)](https://now-examples-slackin-rrirkqohko.now.sh/) [![Backers on Open Collective](https://opencollective.com/storybook/backers/badge.svg)](#backers) [![Sponsors on Open Collective](https://opencollective.com/storybook/sponsors/badge.svg)](#sponsors) -* * * +--- Storybook Addon Notes allows you to write notes (text or HTML) for your stories in [Storybook](https://storybook.js.org). @@ -29,16 +29,24 @@ Add following content to it: import '@storybook/addon-notes/register'; ``` -Then write your stories like this: +Then add the `withNotes` decorator to all stories in your `config.js`: + +```js +import { configure, addDecorator } from '@storybook/react`; // <- whichever storybook version you use +import { withNotes } from '@storybook/addon-notes'; + +addDecorator(withNotes); +``` + +You can use the `notes` parameter to add a note to each story: ```js import { storiesOf } from '@storybook/react'; -import { withNotes } from '@storybook/addon-notes'; import Component from './Component'; storiesOf('Component', module) - .add('with some emoji', withNotes('A very simple component')(() => )); + .add('with some emoji', () => , { notes: 'A very simple component' }); ``` #### Using Markdown @@ -47,25 +55,27 @@ To use markdown in your notes simply import a markdown file and use that in your ```js import { storiesOf } from '@storybook/react'; -import { withNotes } from '@storybook/addon-notes'; import Component from './Component'; import someMarkdownText from './someMarkdownText.md'; -storiesOf('Component', module) - .add('With Markdown', withNotes(someMarkdownText)(() => )); - +storiesOf('Component', module).add( + 'With Markdown', + () => + { notes: someMarkdownText } +); ``` -If you want to use Github flavored markdown inline, use `withMarkdownNotes`: +If you want to use Github flavored markdown inline, use `notes: { markdownText: 'your md' }`: ```js import { storiesOf } from '@storybook/react'; -import { withMarkdownNotes } from '@storybook/addon-notes'; import Component from './Component'; -storiesOf('Component', module) - .add('With Markdown', withMarkdownNotes(` -# Hello World +storiesOf('Component', module).add( + 'With Markdown', + () => + { notes: { markdown: ` + # Hello World This is some code showing usage of the component and other inline documentation @@ -75,20 +85,6 @@ This is some code showing usage of the component and other inline documentation ~~~ - `)(() => )); - -``` - -### Deprecated API -This API is slated for removal in 4.0 - -```js -import { WithNotes } from '@storybook/addon-notes'; - -storiesOf('Addon Notes', module) - .add('using deprecated API', () => ( - - - - )); +`} } +); ``` diff --git a/examples/official-storybook/stories/addon-notes.stories.js b/examples/official-storybook/stories/addon-notes.stories.js index 38094a2c44d..4c5e7b95e06 100644 --- a/examples/official-storybook/stories/addon-notes.stories.js +++ b/examples/official-storybook/stories/addon-notes.stories.js @@ -34,7 +34,7 @@ storiesOf('Addons|Notes', module) notes: 'This is the notes for a button. This is helpful for adding details about a story in a separate panel.', }) - .add('withNotes rendering imported markdown', baseStory, { notes: { markdown: markdownNotes } }) + .add('withNotes rendering imported markdown', baseStory, { notes: markdownNotes }) .add('withNotes rendering inline, github-flavored markdown', baseStory, { notes: { markdown: markdownString }, })