mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-06 07:21:16 +08:00
less ridiculous example for button type in cra
This commit is contained in:
parent
0297552a31
commit
377e812abf
@ -1,4 +1,5 @@
|
|||||||
import React from 'react';
|
import React from 'react';
|
||||||
|
import PropTypes from 'prop-types';
|
||||||
import EventEmiter from 'eventemitter3';
|
import EventEmiter from 'eventemitter3';
|
||||||
|
|
||||||
import { storiesOf } from '@storybook/react';
|
import { storiesOf } from '@storybook/react';
|
||||||
@ -60,6 +61,23 @@ const InfoButton = () => (
|
|||||||
</span>
|
</span>
|
||||||
);
|
);
|
||||||
|
|
||||||
|
class AsyncItemLoader extends React.Component {
|
||||||
|
constructor() {
|
||||||
|
super();
|
||||||
|
this.state = { items: [] };
|
||||||
|
}
|
||||||
|
|
||||||
|
loadItems() {
|
||||||
|
setTimeout(() => this.setState({ items: ['pencil', 'pen', 'eraser'] }), 1500);
|
||||||
|
}
|
||||||
|
|
||||||
|
render() {
|
||||||
|
button('Load the items', () => this.loadItems());
|
||||||
|
return this.props.children(this.state.items);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
AsyncItemLoader.propTypes = { children: PropTypes.func.isRequired };
|
||||||
|
|
||||||
storiesOf('Button', module)
|
storiesOf('Button', module)
|
||||||
.addDecorator(withKnobs)
|
.addDecorator(withKnobs)
|
||||||
.add('with text', () => (
|
.add('with text', () => (
|
||||||
@ -111,8 +129,6 @@ storiesOf('Button', module)
|
|||||||
const salutation = nice ? 'Nice to meet you!' : 'Leave me alone!';
|
const salutation = nice ? 'Nice to meet you!' : 'Leave me alone!';
|
||||||
const dateOptions = { year: 'numeric', month: 'long', day: 'numeric' };
|
const dateOptions = { year: 'numeric', month: 'long', day: 'numeric' };
|
||||||
|
|
||||||
button('Arbitrary action', action('You clicked it!'));
|
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<div style={style}>
|
<div style={style}>
|
||||||
<p>{intro}</p>
|
<p>{intro}</p>
|
||||||
@ -121,6 +137,14 @@ storiesOf('Button', module)
|
|||||||
<p>In my backpack, I have:</p>
|
<p>In my backpack, I have:</p>
|
||||||
<ul>{items.map(item => <li key={item}>{item}</li>)}</ul>
|
<ul>{items.map(item => <li key={item}>{item}</li>)}</ul>
|
||||||
<p>{salutation}</p>
|
<p>{salutation}</p>
|
||||||
|
<hr />
|
||||||
|
<p>PS. My shirt pocket contains: </p>
|
||||||
|
<AsyncItemLoader>
|
||||||
|
{loadedItems => {
|
||||||
|
if (!loadedItems.length) return <li>No items!</li>;
|
||||||
|
return <ul>{loadedItems.map(i => <li key={i}>{i}</li>)}</ul>;
|
||||||
|
}}
|
||||||
|
</AsyncItemLoader>
|
||||||
</div>
|
</div>
|
||||||
);
|
);
|
||||||
})
|
})
|
||||||
|
Loading…
x
Reference in New Issue
Block a user