mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-05 04:11:06 +08:00
Added stories for stories tree
This commit is contained in:
parent
e625eb8551
commit
2ed0698c63
@ -0,0 +1,124 @@
|
||||
import React from 'react';
|
||||
import PropTypes from 'prop-types';
|
||||
import { storiesOf } from '@storybook/react';
|
||||
|
||||
import Stories from './index';
|
||||
import { setContext } from '../../../../../compose';
|
||||
import { createHierarchy, prepareStoriesForHierarchy } from '../../../libs/hierarchy';
|
||||
import { storyFilter } from '../../../libs/filters';
|
||||
|
||||
// A small utility to add before/afterEach to stories.
|
||||
class WithLifecyle extends React.Component {
|
||||
componentWillMount() {
|
||||
this.props.beforeEach();
|
||||
}
|
||||
componentWillUnmount() {
|
||||
this.props.afterEach();
|
||||
}
|
||||
render() {
|
||||
return this.props.storyFn();
|
||||
}
|
||||
}
|
||||
|
||||
WithLifecyle.propTypes = {
|
||||
storyFn: PropTypes.func.isRequired,
|
||||
beforeEach: PropTypes.func,
|
||||
afterEach: PropTypes.func,
|
||||
};
|
||||
WithLifecyle.defaultProps = {
|
||||
beforeEach: () => {},
|
||||
afterEach: () => {},
|
||||
};
|
||||
|
||||
const withLifecyle = ({ beforeEach, afterEach }) => storyFn => (
|
||||
<WithLifecyle beforeEach={beforeEach} afterEach={afterEach} storyFn={storyFn} />
|
||||
);
|
||||
|
||||
const data = createHierarchy([
|
||||
{ kind: 'a', name: 'a', namespaces: ['a'], stories: ['a1', 'a2'] },
|
||||
{ kind: 'b', name: 'b', namespaces: ['b'], stories: ['b1', 'b2'] },
|
||||
]);
|
||||
|
||||
const initialData = [
|
||||
{
|
||||
kind: 'some.name.item1',
|
||||
stories: ['a1', 'a2'],
|
||||
},
|
||||
{
|
||||
kind: 'another.space.20',
|
||||
stories: ['b1', 'b2'],
|
||||
},
|
||||
];
|
||||
const dataWithoutSeparator = createHierarchy(prepareStoriesForHierarchy(initialData));
|
||||
const dataWithSeparator = createHierarchy(prepareStoriesForHierarchy(initialData, '\\.'));
|
||||
|
||||
const filter = 'th';
|
||||
const selectedKind = 'another.space.20';
|
||||
|
||||
const filteredData = storyFilter(
|
||||
prepareStoriesForHierarchy(initialData, '\\.'),
|
||||
filter,
|
||||
selectedKind
|
||||
);
|
||||
|
||||
const filteredDataHierarchy = createHierarchy(filteredData);
|
||||
|
||||
const decorator = withLifecyle({
|
||||
beforeEach() {
|
||||
setContext({
|
||||
clientStore: {
|
||||
getAll() {
|
||||
return { shortcutOptions: {} };
|
||||
},
|
||||
subscribe() {},
|
||||
},
|
||||
});
|
||||
},
|
||||
afterEach() {
|
||||
setContext(null);
|
||||
},
|
||||
});
|
||||
|
||||
storiesOf('ui/Stories', module)
|
||||
.addDecorator(decorator)
|
||||
.add('empty', () => (
|
||||
<Stories
|
||||
storiesHierarchy={createHierarchy([])}
|
||||
selectedKind=""
|
||||
selectedStory=""
|
||||
selectedHierarchy={[]}
|
||||
/>
|
||||
))
|
||||
.add('simple', () => (
|
||||
<Stories
|
||||
storiesHierarchy={data}
|
||||
selectedKind="b"
|
||||
selectedStory="b2"
|
||||
selectedHierarchy={['b']}
|
||||
/>
|
||||
))
|
||||
.add('with hierarchy - hierarchySeparator is defined', () => (
|
||||
<Stories
|
||||
storiesHierarchy={dataWithSeparator}
|
||||
selectedKind="another.space.20"
|
||||
selectedStory="b2"
|
||||
selectedHierarchy={['another', 'space', '20']}
|
||||
/>
|
||||
))
|
||||
.add('without hierarchy - hierarchySeparator is defined', () => (
|
||||
<Stories
|
||||
storiesHierarchy={dataWithoutSeparator}
|
||||
selectedKind="another.space.20"
|
||||
selectedStory="b2"
|
||||
selectedHierarchy={['another.space.20']}
|
||||
/>
|
||||
))
|
||||
.add('with highlighting when storiesFilter is provided', () => (
|
||||
<Stories
|
||||
storiesHierarchy={filteredDataHierarchy}
|
||||
selectedKind={selectedKind}
|
||||
selectedStory="b2"
|
||||
selectedHierarchy={['another', 'space', '20']}
|
||||
storyFilter={filter}
|
||||
/>
|
||||
));
|
Loading…
x
Reference in New Issue
Block a user