-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.js
66 lines (58 loc) · 1.89 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
import React, { Component } from 'react';
import uuid from 'uuid/v1';
export default function preparePollingHOC(WrappedComponent) {
return class PollingHOC extends Component {
constructor(props) {
super(props);
this._livePolls = {};
this.setUpPolling = this.setUpPolling.bind(this);
this.removePolling = this.removePolling.bind(this);
this.removeAll = this.removeAll.bind(this);
this.setUpUniquePolling = this.setUpUniquePolling.bind(this);
}
setUpPolling(pollingFunction, pollingInterval) {
return this.setUpUniquePolling(pollingFunction, pollingInterval);
}
setUpUniquePolling(pollingFunction, pollingInterval, uid = null) {
if (!uid) {
const uniqueN = uuid();
const pollTimeoutFunction = setTimeout(() => {
pollingFunction();
this.setUpUniquePolling(pollingFunction, pollingInterval, uuid);
}, pollingInterval);
this._livePolls[uniqueN] = pollTimeoutFunction;
return uniqueN;
}
const newPollTimeoutFunction = setTimeout(() => {
pollingFunction();
this.setUpUniquePolling(pollingFunction, pollingInterval, uid);
}, pollingInterval);
this._livePolls[uid] = newPollTimeoutFunction;
}
removePolling(uid) {
if (this._livePolls[uid]) {
clearTimeout(this._livePolls[uid]);
}
}
removeAll() {
Object.keys(this._livePolls).map(el => {
if (this._livePolls[el]) {
clearTimeout(this._livePolls[el]);
}
return null;
});
this._livePolls = {};
}
componentWillUnmount() {
this.removeAll();
}
render() {
const pollConfigOptions = {
setUpPolling: this.setUpPolling,
removePolling: this.removePolling,
removeAllPolling: this.removeAll
};
return <WrappedComponent {...this.props} {...pollConfigOptions} />;
}
};
}