-
Notifications
You must be signed in to change notification settings - Fork 16
/
index.js
67 lines (54 loc) · 1.75 KB
/
index.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
import { Component } from 'react';
import PropTypes from 'prop-types';
export default class Pusher extends Component {
static propTypes = {
channel: PropTypes.string.isRequired,
onUpdate: PropTypes.func.isRequired,
event: PropTypes.string.isRequired,
};
static pusherClient = null;
static channels = {};
constructor(props) {
super(props);
if (!Pusher.pusherClient) {
throw new Error('you must set a pusherClient by calling setPusherClient');
}
}
componentWillMount() {
this.bindPusherEvent(this.props.channel, this.props.event);
}
componentWillReceiveProps({ channel: newChannel, event: newEvent }) {
const { channel, event } = this.props;
if (channel === newChannel && event === newEvent) {
return;
}
this.bindPusherEvent(newChannel, newEvent);
this.unbindPusherEvent(channel, event);
}
componentWillUnmount() {
this.unbindPusherEvent(this.props.channel, this.props.event);
}
unbindPusherEvent(channel, event) {
const pusherChannel = Pusher.pusherClient.channels.find(channel);
if (pusherChannel) {
pusherChannel.unbind(event, this.props.onUpdate);
}
Pusher.channels[channel]--;
if (Pusher.channels[channel] <= 0) {
delete Pusher.channels[channel];
Pusher.pusherClient.unsubscribe(channel);
}
}
bindPusherEvent(channel, event) {
const pusherChannel =
Pusher.pusherClient.channels.find(channel)
|| Pusher.pusherClient.subscribe(channel);
pusherChannel.bind(event, this.props.onUpdate);
if (Pusher.channels[channel] === undefined) Pusher.channels[channel] = 0;
Pusher.channels[channel]++;
}
render() {
return null;
}
}
export const setPusherClient = (pusherClient) => { Pusher.pusherClient = pusherClient; };