storybook/addons/jest/src/hoc/provideJestResult.js
Norbert de Langen 68c1664ec9
WIP
2018-08-11 01:40:24 +02:00

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;