mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-05 16:11:33 +08:00
58 lines
1.4 KiB
JavaScript
58 lines
1.4 KiB
JavaScript
import React from 'react';
|
|
import PropTypes from 'prop-types';
|
|
|
|
const provideTests = Component =>
|
|
class TestProvider extends React.Component {
|
|
static propTypes = {
|
|
channel: PropTypes.shape({
|
|
on: PropTypes.func,
|
|
removeListener: PropTypes.func,
|
|
}).isRequired,
|
|
api: PropTypes.shape({
|
|
onStory: PropTypes.func,
|
|
}).isRequired,
|
|
active: PropTypes.bool,
|
|
};
|
|
|
|
static defaultProps = {
|
|
active: false,
|
|
};
|
|
|
|
state = {};
|
|
|
|
componentDidMount() {
|
|
this.mounted = true;
|
|
const { channel, api } = this.props;
|
|
|
|
this.stopListeningOnStory = api.onStory(() => {
|
|
const { kind, storyName, tests } = this.state;
|
|
if (this.mounted && (kind || storyName || tests)) {
|
|
this.onAddTests({});
|
|
}
|
|
});
|
|
|
|
channel.on('storybook/tests/add_tests', this.onAddTests);
|
|
}
|
|
|
|
componentWillUnmount() {
|
|
this.mounted = false;
|
|
const { channel } = this.props;
|
|
|
|
this.stopListeningOnStory();
|
|
channel.removeListener('storybook/tests/add_tests', this.onAddTests);
|
|
}
|
|
|
|
onAddTests = ({ kind, storyName, tests }) => {
|
|
this.setState({ kind, storyName, tests });
|
|
};
|
|
|
|
render() {
|
|
const { active } = this.props;
|
|
const { tests } = this.state;
|
|
|
|
return active && tests ? <Component {...this.state} /> : null;
|
|
}
|
|
};
|
|
|
|
export default provideTests;
|