import React from 'react'; import EventEmiter from 'eventemitter3'; import { storiesOf } from '@storybook/react'; import { action } from '@storybook/addon-actions'; import { withNotes, WithNotes } from '@storybook/addon-notes'; import { linkTo } from '@storybook/addon-links'; import WithEvents from '@storybook/addon-events'; import { withKnobs, text, number, boolean, color, select, array, date, object, } from '@storybook/addon-knobs'; import centered from '@storybook/addon-centered'; import { withInfo } from '@storybook/addon-info'; import { Button, Welcome } from '@storybook/react/demo'; import App from '../App'; import Logger from './Logger'; import Container from './Container'; const EVENTS = { TEST_EVENT_1: 'test-event-1', TEST_EVENT_2: 'test-event-2', TEST_EVENT_3: 'test-event-3', TEST_EVENT_4: 'test-event-4', }; const emiter = new EventEmiter(); const emit = emiter.emit.bind(emiter); storiesOf('Welcome', module).add('to Storybook', () => ); const InfoButton = () => {' '}Show Info{' '} ; storiesOf('Button', module) .addDecorator(withKnobs) .add('with text', () => ) .add('with some emoji', () => ) .add('with notes', () => ) .add('with knobs', () => { const name = text('Name', 'Storyteller'); const age = number('Age', 70, { range: true, min: 0, max: 90, step: 5 }); const fruits = { apple: 'Apple', banana: 'Banana', cherry: 'Cherry', }; const fruit = select('Fruit', fruits, 'apple'); const dollars = number('Dollars', 12.5); // NOTE: color picker is currently broken const backgroundColor = color('background', '#ffff00'); const items = array('Items', ['Laptop', 'Book', 'Whiskey']); const otherStyles = object('Styles', { border: '3px solid #ff00ff', padding: '10px', }); const nice = boolean('Nice', true); // NOTE: put this last because it currently breaks everything after it :D const birthday = date('Birthday', new Date('Jan 20 2017')); const intro = `My name is ${name}, I'm ${age} years old, and my favorite fruit is ${fruit}.`; const style = { backgroundColor, ...otherStyles }; const salutation = nice ? 'Nice to meet you!' : 'Leave me alone!'; const dateOptions = { year: 'numeric', month: 'long', day: 'numeric' }; return (

{intro}

My birthday is: {new Date(birthday).toLocaleDateString('en-US', dateOptions)}

My wallet contains: ${dollars.toFixed(2)}

In my backpack, I have:

{salutation}

); }) .addWithInfo( 'with some info', 'Use the [info addon](https://github.com/storybooks/storybook/tree/master/addons/info) with its painful API.', context => click the label in top right for info about "{context.story}" ) .add( 'with new info', withInfo( 'Use the [info addon](https://github.com/storybooks/storybook/tree/master/addons/info) with its new painless API.' )(context => click the label in top right for info about "{context.story}" ) ) .add( 'addons composition', withInfo('see Notes panel for composition info')( withNotes({ notes: 'Composition: Info(Notes())' })(context =>
click the label in top right for info about "{context.story}"
) ) ); storiesOf('App', module).add('full app', () => ); storiesOf('Centered Button', module) .addDecorator(centered) .add('with text', () => ); storiesOf('WithEvents', module) .addDecorator(getStory => {getStory()} ) .add('Logger', () => ); storiesOf('withNotes', module) .add('with some text', withNotes({ notes: 'Hello guys' })(() =>
Hello guys
)) .add('with some emoji', withNotes({ notes: 'My notes on emojies' })(() =>

🤔😳😯😮

)) .add( 'with a button and some emoji', withNotes({ notes: 'My notes on a button with emojies' })(() => ) ) .add('with old API', () => ); storiesOf('component.base.Link', module) .addDecorator(withKnobs) .add('first', () => {text('firstLink', 'first link')} ) .add('second', () => {text('secondLink', 'second link')} ); storiesOf('component.base.Span', module) .add('first', () => first span) .add('second', () => second span); storiesOf('component.common.Div', module) .add('first', () =>
first div
) .add('second', () =>
second div
); storiesOf('component.common.Table', module) .add('first', () =>
first table
) .add('second', () =>
first table
); storiesOf('component.Button', module) .add('first', () => ) .add('second', () => ); // Atomic storiesOf('Cells/Molecules.Atoms/simple', module) .addDecorator(withKnobs) .add('with text', () => ) .add('with some emoji', () => ); storiesOf('Cells/Molecules/Atoms.more', module) .add('with text2', () => ) .add('with some emoji2', () => ); storiesOf('Cells/Molecules', module) .add('with text', () => ) .add('with some emoji', () => ); storiesOf('Cells.Molecules.Atoms', module) .add('with text2', () => ) .add('with some emoji2', () => );