Welcome to mirror list, hosted at ThFree Co, Russian Federation.

index.js « vue_realtime_listener « javascripts « assets « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
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 = {}));