MIGRATE withLifecycleDecorator

This commit is contained in:
Norbert de Langen 2020-02-06 14:31:47 +01:00
parent 5ccb58ae0b
commit 7f2b3e0cc4
No known key found for this signature in database
GPG Key ID: 976651DA156C2825

View File

@ -1,18 +1,25 @@
import React, { Component } from 'react';
import PropTypes from 'prop-types';
// A small utility to add before/afterEach to stories.
class WithLifecyle extends Component {
constructor(props, ...rest) {
super(props, ...rest);
class WithLifecyle extends Component<{
storyFn: Function;
beforeEach?: Function;
afterEach?: Function;
}> {
constructor(props) {
super(props);
props.beforeEach();
if (props.beforeEach) {
props.beforeEach();
}
}
componentWillUnmount() {
const { afterEach } = this.props;
afterEach();
if (afterEach) {
afterEach();
}
}
render() {
@ -22,16 +29,6 @@ class WithLifecyle extends Component {
}
}
WithLifecyle.propTypes = {
storyFn: PropTypes.func.isRequired,
beforeEach: PropTypes.func,
afterEach: PropTypes.func,
};
WithLifecyle.defaultProps = {
beforeEach: () => {},
afterEach: () => {},
};
export default ({ beforeEach, afterEach }) => storyFn => (
<WithLifecyle beforeEach={beforeEach} afterEach={afterEach} storyFn={storyFn} />
);