Muhammed Thanish 79b0bcda43 Merge pull request #45 from kadirahq/greenkeeper-mocha-3.1.0
Update mocha to version 3.1.0 🚀
2016-09-28 11:57:48 +05:30
2016-09-19 11:27:04 +05:30
2016-09-07 13:33:53 +05:30
2016-09-25 22:14:49 +05:30
2016-09-09 13:42:47 +05:30
2016-09-25 15:39:20 +03:00
2016-07-21 13:04:31 +05:30
2016-07-21 13:04:31 +05:30
2016-09-10 12:22:44 -04:00
2016-07-21 13:04:31 +05:30
2016-09-25 22:15:01 +05:30
2016-09-09 13:08:18 +05:30
2016-09-21 16:23:32 -07:00

Storybook Addon Knobs CircleCI

Knobs allow you to edit React props dynamically using the Storybook UI. You can also use Knobs as a dynamic variable inside stories.

This is how Knobs look like:

Storybook Knobs Demo

Checkout the above Live Storybook or watch this video.

Getting Started

First of all, you need to install knobs into your project as a dev dependency.

npm i -D @kadira/storybook-addon-knobs

Then, configure it as an addon by adding it to your addons.js file (located in the Storybook config directory).

//  To get our default addons (actions and links)
import '@kadira/storybook/addons';
//  To add the knobs addon
import '@kadira/storybook-addon-knobs/register'

Now, write your stories with knobs.

import React from 'react';
import { storiesOf } from '@kadira/storybook';
import { withKnobs, text, boolean, number } from '@kadira/storybook-addon-knobs';

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

// Add the `withKnobs` decorator to add knobs support to your stories.
// You can also configure `withKnobs` as a global decorator.
stories.addDecorator(withKnobs);

// Knobs for React props
stories.add('with a button', () => (
  <button
    disabled={boolean('Disabled', false)}
  >
    {text('Label', 'Hello Button')}
  </button>
))

// Knobs as dynamic variables.
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>);
});

You can see your Knobs in a Storybook panel as shown below.

Available Knobs

These are the knobs available for you to use. You can import these Knobs from the @kadira/storybook-addon-knobs module. Here's how to import the text Knob.

import { text } from '@kadira/storybook-addon-knobs';

Just like that, you can import any other following Knobs:

text

Allows you to get some text from the user.

const label = 'Your Name';
const defaultValue = 'Arunoda Susiripala';

const value = text(label, defaultValue);

boolean

Allows you to get a boolean value from the user.

const label = 'Agree?';
const defaultValue = false;

const value = boolean(label, defaultValue);

number

Allows you to get a number from the user.

const label = 'Age';
const defaultValue = 78;

const value = number(label, defaultValue);

object

Allows you to get a JSON object from the user.

const label = 'Styles';
const defaultValue = {
  backgroundColor: 'red'
};

const value = object(label, defaultValue);

Make sure to enter valid JSON syntax while editing values inside the knob.

select

Allows you to get a value from a select box from the user.

const label = 'Colors';
const options = {
  red: 'Red',
  blue: 'Blue',
  yellow: 'Yellow',
};
const defaultValue = 'red';

const value = select(label, options, defaultValue);

You can also provide options as an array like this: ['red', 'blue', 'yellow']

date

Allow you to get date (and time) from the user.

const label = 'Event Date';
const defaultValue = new Date('Jan 20 2017');
const value = date(label, defaultValue);
Description
Storybook is a frontend workshop for building UI components and pages in isolation. Made for UI development, testing, and documentation.
Readme MIT 969 MiB
Languages
TypeScript 73.2%
JavaScript 24.2%
MDX 1.1%
Svelte 0.7%
Vue 0.3%
Other 0.4%