Skip to content

Commit

Permalink
CHANGE @storybook/addon-knobs/dist/{{framework}} to @storybook/addon-…
Browse files Browse the repository at this point in the history
…knobs/{{framework}}

And other review comments
  • Loading branch information
ndelangen committed Sep 11, 2017
1 parent 9f147b5 commit 5e74ef8
Show file tree
Hide file tree
Showing 9 changed files with 33 additions and 26 deletions.
45 changes: 25 additions & 20 deletions addons/knobs/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ Now, write your stories with knobs.

```js
import { storiesOf } from '@storybook/react';
import { addonKnobs, text, boolean, number } from '@storybook/addon-knobs/dist/react';
import { withKnobs, text, boolean, number } from '@storybook/addon-knobs/react';

const stories = storiesOf('Storybook Knobs', module);

Expand All @@ -55,29 +55,28 @@ stories.add('with a button', () => (
</button>
));

const options = {};
// Knobs as dynamic variables.
stories.add('as dynamic variables', withKnobsOptions(options)(() => {
stories.add('as dynamic variables', () => {
const name = text('Name', 'Arunoda Susiripala');
const age = number('Age', 89);

const content = `I am ${name} and I'm ${age} years old.`;
return (<div>{content}</div>);
}));
});
```

> In the case of Vue, use these imports:
>
> ```js
> import { storiesOf } from '@storybook/vue';
> import { addonKnobs, text, boolean, number } from '@storybook/addon-knobs/dist/vue';
> import { withKnobs, text, boolean, number } from '@storybook/addon-knobs/vue';
> ```
>
> In the case of React-Native, use these imports:
>
> ```js
> import { storiesOf } from '@storybook/react-native';
> import { addonKnobs, text, boolean, number } from '@storybook/addon-knobs/dist/react';
> import { withKnobs, text, boolean, number } from '@storybook/addon-knobs/react';
> ```
You can see your Knobs in a Storybook panel as shown below.
Expand Down Expand Up @@ -107,7 +106,7 @@ Just like that, you can import any other following Knobs:
Allows you to get some text from the user.

```js
import { text } from '@storybook/addon-knobs';
import { text } from '@storybook/addon-knobs/react';

const label = 'Your Name';
const defaultValue = 'Arunoda Susiripala';
Expand All @@ -120,7 +119,7 @@ const value = text(label, defaultValue);
Allows you to get a boolean value from the user.

```js
import { boolean } from '@storybook/addon-knobs';
import { boolean } from '@storybook/addon-knobs/react';

const label = 'Agree?';
const defaultValue = false;
Expand All @@ -133,7 +132,7 @@ const value = boolean(label, defaultValue);
Allows you to get a number from the user.

```js
import { number } from '@storybook/addon-knobs';
import { number } from '@storybook/addon-knobs/react';

const label = 'Age';
const defaultValue = 78;
Expand All @@ -146,7 +145,7 @@ const value = number(label, defaultValue);
Allows you to get a number from the user using a range slider.

```js
import { number } from '@storybook/addon-knobs';
import { number } from '@storybook/addon-knobs/react';

const label = 'Temperature';
const defaultValue = 73;
Expand All @@ -165,7 +164,7 @@ const value = number(label, defaultValue, options);
Allows you to get a colour from the user.

```js
import { color } from '@storybook/addon-knobs';
import { color } from '@storybook/addon-knobs/react';

const label = 'Color';
const defaultValue = '#ff00ff';
Expand All @@ -178,7 +177,7 @@ const value = color(label, defaultValue);
Allows you to get a JSON object or array from the user.

```js
import { object } from '@storybook/addon-knobs';
import { object } from '@storybook/addon-knobs/react';

const label = 'Styles';
const defaultValue = {
Expand All @@ -195,7 +194,7 @@ const value = object(label, defaultValue);
Allows you to get an array of strings from the user.

```js
import { array } from '@storybook/addon-knobs';
import { array } from '@storybook/addon-knobs/react';

const label = 'Styles';
const defaultValue = ['Red']
Expand All @@ -207,7 +206,7 @@ const value = array(label, defaultValue);
> By default it's a comma, but this can be override by passing a separator variable.
>
> ```js
> import { array } from '@storybook/addon-knobs';
> import { array } from '@storybook/addon-knobs/react';
>
> const label = 'Styles';
> const defaultValue = ['Red'];
Expand All @@ -220,7 +219,7 @@ const value = array(label, defaultValue);
Allows you to get a value from a select box from the user.

```js
import { select } from '@storybook/addon-knobs';
import { select } from '@storybook/addon-knobs/react';

const label = 'Colors';
const options = {
Expand All @@ -240,7 +239,7 @@ const value = select(label, options, defaultValue);
Allow you to get date (and time) from the user.

```js
import { date } from '@storybook/addon-knobs';
import { date } from '@storybook/addon-knobs/react';

const label = 'Event Date';
const defaultValue = new Date('Jan 20 2017');
Expand All @@ -254,10 +253,16 @@ const value = date(label, defaultValue);
If you feel like this addon is not performing well enough there is an option to use `withKnobsOptions` instead of `withKnobs`.
Usage:

story.addDecorator(withKnobsOptions({
debounce: { wait: number, leading: boolean}, // Same as lodash debounce.
timestamps: true // Doesn't emit events while user is typing.
}));
```js
import { storiesOf } from '@storybook/react';

const stories = storiesOf('')

story.addDecorator(withKnobsOptions({
debounce: { wait: number, leading: boolean}, // Same as lodash debounce.
timestamps: true // Doesn't emit events while user is typing.
}));
```

## Typescript

Expand Down
1 change: 1 addition & 0 deletions addons/knobs/react.js
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
module.exports = require('./dist/react');
2 changes: 1 addition & 1 deletion addons/knobs/src/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ export { knob, text, boolean, number, color, object, array, date };

deprecate(
() => {},
'Using @storybook/knobs directly is discouraged, please use @storybook/knobs/dist/{{framework}}'
'Using @storybook/addon-knobs directly is discouraged, please use @storybook/addon-knobs/{{framework}}'
);

// "Higher order component" / wrapper style API
Expand Down
1 change: 1 addition & 0 deletions addons/knobs/vue.js
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
module.exports = require('./dist/vue');
2 changes: 1 addition & 1 deletion examples/cra-kitchen-sink/src/stories/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ import {
array,
date,
object,
} from '@storybook/addon-knobs/dist/react';
} from '@storybook/addon-knobs/react';
import centered from '@storybook/addon-centered';
import { withInfo } from '@storybook/addon-info';

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ import {
array,
date,
object,
} from '@storybook/addon-knobs/dist/react';
} from '@storybook/addon-knobs/react';

export default () => {
const name = text('Name', 'Storyteller');
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ import {
array,
date,
object,
} from '@storybook/addon-knobs/dist/react';
} from '@storybook/addon-knobs/react';

export default () => {
const name = text('Name', 'Storyteller');
Expand Down
2 changes: 1 addition & 1 deletion examples/react-native-vanilla/storybook/stories/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import { Text } from 'react-native';
import { storiesOf } from '@storybook/react-native';
import { action } from '@storybook/addon-actions';
import { linkTo } from '@storybook/addon-links';
import { withKnobs } from '@storybook/addon-knobs/dist/react';
import { withKnobs } from '@storybook/addon-knobs/react';

import knobsWrapper from './Knobs';
import Button from './Button';
Expand Down
2 changes: 1 addition & 1 deletion examples/vue-kitchen-sink/src/stories/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ import {
select,
color,
date,
} from '@storybook/addon-knobs/dist/vue';
} from '@storybook/addon-knobs/vue';
import Centered from '@storybook/addon-centered';

import MyButton from './Button.vue';
Expand Down

0 comments on commit 5e74ef8

Please sign in to comment.