mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-03 05:04:51 +08:00
CHANGE addon-events to use API instead of channel
This commit is contained in:
parent
223ea4d318
commit
1a3607c4a6
@ -16,10 +16,10 @@ const Wrapper = styled.div({
|
||||
export default class EventsPanel extends Component {
|
||||
static propTypes = {
|
||||
active: PropTypes.bool.isRequired,
|
||||
channel: PropTypes.shape({
|
||||
on: PropTypes.func,
|
||||
api: PropTypes.shape({
|
||||
emit: PropTypes.func,
|
||||
removeListener: PropTypes.func,
|
||||
off: PropTypes.func,
|
||||
on: PropTypes.func,
|
||||
}).isRequired,
|
||||
};
|
||||
|
||||
@ -28,15 +28,15 @@ export default class EventsPanel extends Component {
|
||||
};
|
||||
|
||||
componentDidMount() {
|
||||
const { channel } = this.props;
|
||||
const { api } = this.props;
|
||||
|
||||
channel.on(EVENTS.ADD, this.onAdd);
|
||||
api.on(EVENTS.ADD, this.onAdd);
|
||||
}
|
||||
|
||||
componentWillUnmount() {
|
||||
const { channel } = this.props;
|
||||
const { api } = this.props;
|
||||
|
||||
channel.removeListener(EVENTS.ADD, this.onAdd);
|
||||
api.off(EVENTS.ADD, this.onAdd);
|
||||
}
|
||||
|
||||
onAdd = events => {
|
||||
@ -44,9 +44,9 @@ export default class EventsPanel extends Component {
|
||||
};
|
||||
|
||||
onEmit = event => {
|
||||
const { channel } = this.props;
|
||||
const { api } = this.props;
|
||||
|
||||
channel.emit(EVENTS.EMIT, event);
|
||||
api.emit(EVENTS.EMIT, event);
|
||||
};
|
||||
|
||||
render() {
|
||||
|
@ -5,12 +5,11 @@ import Panel from './components/Panel';
|
||||
import { ADDON_ID, PANEL_ID } from './constants';
|
||||
|
||||
export function register() {
|
||||
addons.register(ADDON_ID, () => {
|
||||
const channel = addons.getChannel();
|
||||
addons.register(ADDON_ID, api => {
|
||||
addons.addPanel(PANEL_ID, {
|
||||
title: 'Events',
|
||||
// eslint-disable-next-line react/prop-types
|
||||
render: ({ active, key }) => <Panel key={key} channel={channel} active={active} />,
|
||||
render: ({ active, key }) => <Panel key={key} api={api} active={active} />,
|
||||
});
|
||||
});
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user