aboutsummaryrefslogtreecommitdiff
path: root/modern/src/store/throttleMiddleware.js
blob: 9954b13903471442bde1d0e41ef8131d8ae45b80 (plain)
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
import { batch } from "react-redux";

const threshold = 3;
const interval = 1500;

export default () => (next) => {
  const buffer = [];
  let throttle = false;
  let counter = 0;
  
  setInterval(() => {
    console.log('batch');
    if (throttle) {
      if (buffer.length < threshold) {
        throttle = false;
      }
      batch(() => buffer.splice(0, buffer.length).forEach((action) => next(action)));
    } else {
      if (counter > threshold) {
        throttle = true;
      }
      counter = 0;
    }
  }, interval);

  return (action) => {
    console.log(action);
    if (action.type === 'devices/update' || action.type === 'positions/update') {
      if (throttle) {
        buffer.push(action);
      } else {
        counter += 1;
        return next(action);
      }
    } else {
      return next(action);
    }
  };
};