-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.js
64 lines (53 loc) · 1.46 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
import { Component } from 'react';
import PropTypes from 'prop-types';
export default class Phoenix extends Component {
static propTypes = {
channel: PropTypes.string.isRequired,
event: PropTypes.string.isRequired,
onUpdate: PropTypes.func.isRequired,
};
static socket = null;
static channels = {};
constructor(props) {
super(props);
if (!Phoenix.socket) {
throw new Error('you must set a socket by calling setPhoenixSocket');
}
Phoenix.socket.connect();
}
componentWillMount() {
this.bindEvent(this.props.channel, this.props.event);
}
componentWillUnmount() {
this.unbindEvent(this.props.channel, this.props.event);
}
componentWillReceiveProps({ channel: newChannel, event: newEvent }) {
const { channel, event } = this.props;
if (channel === newChannel && event === newEvent) {
return;
}
this.bindEvent(newChannel, newEvent);
this.unbindEvent(channel, event);
}
bindEvent(channelName, event) {
let channel = Phoenix.channels[channelName];
if (!channel) {
channel = Phoenix.socket.channel(channelName);
Phoenix.channels[channelName] = channel;
channel.join();
}
channel.on(event, this.props.onUpdate);
}
unbindEvent(channelName, event) {
const channel = Phoenix.channels[channelName];
if (channel) {
channel.off(event);
}
}
render() {
return null;
}
}
export const setPhoenixSocket = (socket) => {
Phoenix.socket = socket;
}