summaryrefslogtreecommitdiff
path: root/app/assets/javascripts/commit/pipelines/pipelines_store.js.es6
blob: f1b80e45444568616f02b8c805dd3d1b3e7b11e0 (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
40
41
42
43
44
45
46
47
48
/* eslint-disable no-underscore-dangle*/
/**
 * Pipelines' Store for commits view.
 *
 * Used to store the Pipelines rendered in the commit view in the pipelines table.
 */
require('../../vue_realtime_listener');

class PipelinesStore {
  constructor() {
    this.state = {};
    this.state.pipelines = [];
  }

  storePipelines(pipelines = []) {
    this.state.pipelines = pipelines;

    return pipelines;
  }

  /**
   * Once the data is received we will start the time ago loops.
   *
   * Everytime a request is made like retry or cancel a pipeline, every 10 seconds we
   * update the time to show how long as passed.
   *
   */
  static startTimeAgoLoops() {
    const startTimeLoops = () => {
      this.timeLoopInterval = setInterval(() => {
        this.$children[0].$children.reduce((acc, component) => {
          const timeAgoComponent = component.$children.filter(el => el.$options._componentTag === 'time-ago')[0];
          acc.push(timeAgoComponent);
          return acc;
        }, []).forEach(e => e.changeTime());
      }, 10000);
    };

    startTimeLoops();

    const removeIntervals = () => clearInterval(this.timeLoopInterval);
    const startIntervals = () => startTimeLoops();

    gl.VueRealtimeListener(removeIntervals, startIntervals);
  }
}

module.exports = PipelinesStore;