mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-04 22:21:27 +08:00
38 lines
804 B
JavaScript
38 lines
804 B
JavaScript
import { Component } from 'react';
|
|
import { findDOMNode } from 'react-dom';
|
|
import PropTypes from 'prop-types';
|
|
import axe from 'axe-core';
|
|
|
|
class WrapStory extends Component {
|
|
static propTypes = {
|
|
context: PropTypes.shape({}),
|
|
storyFn: PropTypes.func,
|
|
channel: PropTypes.shape({}),
|
|
};
|
|
static defaultProps = {
|
|
context: {},
|
|
storyFn: () => {},
|
|
channel: {},
|
|
};
|
|
|
|
/* eslint-disable react/no-find-dom-node */
|
|
componentDidMount() {
|
|
const { channel } = this.props;
|
|
const wrapper = findDOMNode(this);
|
|
|
|
if (wrapper !== null) {
|
|
axe.a11yCheck(wrapper, {}, results => {
|
|
channel.emit('addon:a11y:check', results);
|
|
});
|
|
}
|
|
}
|
|
|
|
render() {
|
|
const { storyFn, context } = this.props;
|
|
|
|
return storyFn(context);
|
|
}
|
|
}
|
|
|
|
export default WrapStory;
|