forked from mehmetkose/react-websocket
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.jsx
81 lines (64 loc) · 1.71 KB
/
index.jsx
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
68
69
70
71
72
73
74
75
76
77
78
79
80
import React from 'react';
import ReactDOM from 'react-dom';
class Websocket extends React.Component {
constructor(props) {
super(props);
this.state = {
ws: new WebSocket(this.props.url, this.props.protocol),
attempts: 1
};
}
logging(logline) {
if (this.props.debug === true) {
console.log(logline);
}
}
generateInterval (k) {
return Math.min(30, (Math.pow(2, k) - 1)) * 1000;
}
setupWebsocket() {
let websocket = this.state.ws;
websocket.onopen = () => {
this.logging('Websocket connected');
};
websocket.onmessage = (evt) => {
this.props.onMessage(evt.data);
};
this.shouldReconnect = this.props.reconnect;
websocket.onclose = () => {
this.logging('Websocket disconnected');
if (this.shouldReconnect) {
let time = this.generateInterval(this.state.attempts);
setTimeout(() => {
this.setState({attempts: this.state.attempts++});
this.setupWebsocket();
}, time);
}
}
}
componentDidMount() {
this.setupWebsocket();
}
componentWillUnmount() {
this.shouldReconnect = false;
let websocket = this.state.ws;
websocket.close();
}
render() {
return (
<div></div>
);
}
}
Websocket.defaultProps = {
debug: false,
reconnect: true
};
Websocket.propTypes = {
url: React.PropTypes.string.isRequired,
onMessage: React.PropTypes.func.isRequired,
debug: React.PropTypes.bool,
reconnect: React.PropTypes.bool,
protocol: React.PropTypes.string
};
export default Websocket;