summaryrefslogtreecommitdiff
path: root/app/assets/javascripts/vue_realtime_listener/index.js.es6
blob: 30f6680a673cce5c631739a7cb6f72d1ca48646f (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
/* eslint-disable no-param-reassign */

((gl) => {
  gl.VueRealtimeListener = (removeIntervals, startIntervals) => {
    const removeAll = () => {
      removeIntervals();
      window.removeEventListener('beforeunload', removeIntervals);
      window.removeEventListener('focus', startIntervals);
      window.removeEventListener('blur', removeIntervals);
      document.removeEventListener('beforeunload', removeAll);
    };

    window.addEventListener('beforeunload', removeIntervals);
    window.addEventListener('focus', startIntervals);
    window.addEventListener('blur', removeIntervals);
    document.addEventListener('beforeunload', removeAll);

    // add removeAll methods to stack
    const stack = gl.VueRealtimeListener.reset;
    gl.VueRealtimeListener.reset = () => {
      gl.VueRealtimeListener.reset = stack;
      removeAll();
      stack();
    };
  };

  // remove all event listeners and intervals
  gl.VueRealtimeListener.reset = () => undefined; // noop
})(window.gl || (window.gl = {}));