),
- }))
+ }),
+ { notes: 'My notes on some bold text' }
)
.add(
'Note with HTML',
- withNotes({
- text: `
-
My notes on emojies
-
- It's not all that important to be honest, but..
-
- Emojis are great, I love emojis, in fact I like using them in my Component notes too! 😇
- `,
- })(() => ({
+ () => ({
view: () => (
+
+ It's not all that important to be honest, but..
+
+ Emojis are great, I love emojis, in fact I like using them in my Component notes too! 😇
+ `,
+ }
);
diff --git a/examples/official-storybook/stories/__snapshots__/addon-notes.stories.storyshot b/examples/official-storybook/stories/__snapshots__/addon-notes.stories.storyshot
index 32623432519..ed6cc4ddcbe 100644
--- a/examples/official-storybook/stories/__snapshots__/addon-notes.stories.storyshot
+++ b/examples/official-storybook/stories/__snapshots__/addon-notes.stories.storyshot
@@ -1,8 +1,14 @@
// Jest Snapshot v1, https://goo.gl/fbAQLP
-exports[`Storyshots Addons|Notes using deprecated API 1`] = `
+exports[`Storyshots Addons|Notes using decorator arguments, withMarkdownNotes 1`] = `
+`;
+
+exports[`Storyshots Addons|Notes using decorator arguments, withNotes 1`] = `
+
`;
@@ -20,6 +26,6 @@ exports[`Storyshots Addons|Notes withNotes rendering imported markdown 1`] = `
exports[`Storyshots Addons|Notes withNotes rendering inline, github-flavored markdown 1`] = `
`;
diff --git a/examples/official-storybook/stories/addon-notes.stories.js b/examples/official-storybook/stories/addon-notes.stories.js
index 62dabca8379..54d70f09f8c 100644
--- a/examples/official-storybook/stories/addon-notes.stories.js
+++ b/examples/official-storybook/stories/addon-notes.stories.js
@@ -1,28 +1,15 @@
import React from 'react';
import { storiesOf } from '@storybook/react';
-// eslint-disable-next-line import/named
-import { withNotes, WithNotes, withMarkdownNotes } from '@storybook/addon-notes';
-import { action } from '@storybook/addon-actions';
+import { withNotes, withMarkdownNotes } from '@storybook/addon-notes';
import BaseButton from '../components/BaseButton';
import markdownNotes from './notes/notes.md';
-storiesOf('Addons|Notes', module)
- .add(
- 'withNotes',
- withNotes(
- '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',
- withNotes(markdownNotes)(() => (
-
- ))
- )
- .add(
- 'withNotes rendering inline, github-flavored markdown',
- withMarkdownNotes(`
+const baseStory = () => (
+
+);
+
+const markdownString = `
# Documentation
This is inline github-flavored markdown!
@@ -37,12 +24,20 @@ storiesOf('Addons|Notes', module)
))
)
~~~
- `)(() => (
-
- ))
- )
- .add('using deprecated API', () => (
-
-
-
- ));
+ `;
+
+storiesOf('Addons|Notes', module)
+ .addDecorator(withNotes)
+ .add('withNotes', baseStory, {
+ 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: markdownNotes })
+ .add('withNotes rendering inline, github-flavored markdown', baseStory, {
+ notes: { markdown: markdownString },
+ })
+ .add('using decorator arguments, withNotes', withNotes('Notes into withNotes')(baseStory))
+ .add(
+ 'using decorator arguments, withMarkdownNotes',
+ withMarkdownNotes(markdownString)(baseStory)
+ );
diff --git a/examples/polymer-cli/src/stories/addon-notes.stories.js b/examples/polymer-cli/src/stories/addon-notes.stories.js
index cab392df79f..789eac67b41 100644
--- a/examples/polymer-cli/src/stories/addon-notes.stories.js
+++ b/examples/polymer-cli/src/stories/addon-notes.stories.js
@@ -2,22 +2,21 @@ import { storiesOf } from '@storybook/polymer';
import { withNotes } from '@storybook/addon-notes';
storiesOf('Addon|Notes', module)
+ .addDecorator(withNotes)
.add(
'Simple note',
- withNotes({ text: 'My notes on some bold text' })(
- () =>
- '
Etiam vulputate elit eu venenatis eleifend. Duis nec lectus augue. Morbi egestas diam sed vulputate mollis. Fusce egestas pretium vehicula. Integer sed neque diam. Donec consectetur velit vitae enim varius, ut placerat arcu imperdiet. Praesent sed faucibus arcu. Nullam sit amet nibh a enim eleifend rhoncus. Donec pretium elementum leo at fermentum. Nulla sollicitudin, mauris quis semper tempus, sem metus tristique diam, efficitur pulvinar mi urna id urna.
'
- )
+ () =>
+ '
Etiam vulputate elit eu venenatis eleifend. Duis nec lectus augue. Morbi egestas diam sed vulputate mollis. Fusce egestas pretium vehicula. Integer sed neque diam. Donec consectetur velit vitae enim varius, ut placerat arcu imperdiet. Praesent sed faucibus arcu. Nullam sit amet nibh a enim eleifend rhoncus. Donec pretium elementum leo at fermentum. Nulla sollicitudin, mauris quis semper tempus, sem metus tristique diam, efficitur pulvinar mi urna id urna.
',
+ {
+ notes: 'My notes on some bold text',
+ }
)
- .add(
- 'Note with HTML',
- withNotes({
- text: `
+ .add('Note with HTML', () => '
🤔😳😯😮 😄😩😓😱 🤓😑😶😊
', {
+ notes: `
My notes on emojies
It's not all that important to be honest, but..
Emojis are great, I love emojis, in fact I like using them in my Component notes too! 😇
`,
- })(() => '
Etiam vulputate elit eu venenatis eleifend. Duis nec lectus augue. Morbi egestas diam sed vulputate mollis. Fusce egestas pretium vehicula. Integer sed neque diam. Donec consectetur velit vitae enim varius, ut placerat arcu imperdiet. Praesent sed faucibus arcu. Nullam sit amet nibh a enim eleifend rhoncus. Donec pretium elementum leo at fermentum. Nulla sollicitudin, mauris quis semper tempus, sem metus tristique diam, efficitur pulvinar mi urna id urna.
It's not all that important to be honest, but..
Emojis are great, I love emojis, in fact I like using them in my Component notes too! 😇
`,
- })(() => ({
- template: '