CHANGE addon-events to use API instead of channel

This commit is contained in:
Norbert de Langen 2019-03-14 13:18:29 +01:00
parent 223ea4d318
commit 1a3607c4a6
2 changed files with 11 additions and 12 deletions

View File

@ -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() {

View File

@ -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} />,
});
});
}