forked from rainforestapp/react-pusher
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.js
63 lines (49 loc) · 1.6 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
import React, { Component, PropTypes as T } from 'react';
export default class Pusher extends Component {
static propTypes = {
channel: T.string.isRequired,
onUpdate: T.func.isRequired,
event: T.string.isRequired,
};
static pusherClient = null;
static channels = {};
constructor(props) {
if (!Pusher.pusherClient) {
throw new Error('you must set a pusherClient by calling setPusherClient');
}
super(props);
this.bindPusherEvent(props.channel, 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) {
this._channel.unbind(event, this.props.onUpdate);
Pusher.channels[channel]--;
if (Pusher.channels[channel] <= 0) {
delete Pusher.channels[channel];
Pusher.pusherClient.unsubscribe(channel);
}
}
bindPusherEvent(channel, event) {
this._channel =
Pusher.pusherClient.channels.find(channel)
|| Pusher.pusherClient.subscribe(channel);
this._channel.bind(event, this.props.onUpdate);
if (Pusher.channels[channel] === undefined) Pusher.channels[channel] = 0;
Pusher.channels[channel]++;
}
_channel = null;
render() {
return <noscript />;
}
}
export const setPusherClient = (pusherClient) => { Pusher.pusherClient = pusherClient; };