mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-04 17:01:07 +08:00
MIGRATE withLifecycleDecorator
This commit is contained in:
parent
5ccb58ae0b
commit
7f2b3e0cc4
@ -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} />
|
||||
);
|
Loading…
x
Reference in New Issue
Block a user