forked from mehmetkose/react-websocket
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.jsx
91 lines (76 loc) · 2.17 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
81
82
83
84
85
86
87
88
89
90
91
import React from 'react';
import PropTypes from 'prop-types';
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) {
if(this.props.reconnectIntervalInMilliSeconds > 0) {
return this.props.reconnectIntervalInMilliSeconds;
}
return Math.min(30, (Math.pow(2, k) - 1)) * 1000;
}
getWebSocket() {
return this.state.ws;
}
setupWebsocket() {
let websocket = this.state.ws;
websocket.onopen = () => {
this.logging('Websocket connected');
if (typeof this.props.onOpen !== 'undefined') this.props.onOpen();
};
websocket.onmessage = (evt) => {
this.props.onMessage(evt.data);
};
this.shouldReconnect = this.props.reconnect;
websocket.onclose = () => {
this.logging('Websocket disconnected');
if (typeof this.props.onClose !== 'undefined') this.props.onClose();
if (this.shouldReconnect) {
let time = this.generateInterval(this.state.attempts);
setTimeout(() => {
this.setState({attempts: this.state.attempts+1});
this.setState({ws: new WebSocket(this.props.url, this.props.protocol)});
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: PropTypes.string.isRequired,
onMessage: PropTypes.func.isRequired,
onOpen: PropTypes.func,
onClose: PropTypes.func,
debug: PropTypes.bool,
reconnect: PropTypes.bool,
protocol: PropTypes.string,
reconnectIntervalInMilliSeconds : PropTypes.number
};
export default Websocket;