summaryrefslogtreecommitdiff
path: root/app/assets/javascripts/vue_pipelines_index/store.js.es6
blob: 909007267b952ee3fbf7cf18273bee8df7d43c3f (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
/* global gl, Flash */
/* eslint-disable no-param-reassign */

((gl) => {
  const pageValues = (headers) => {
    const normalized = gl.utils.normalizeHeaders(headers);
    const paginationInfo = gl.utils.parseIntPagination(normalized);
    return paginationInfo;
  };

  gl.PipelineStore = class {
    fetchDataLoop(Vue, pageNum, url, apiScope) {
      this.pageRequest = true;

      return this.$http.get(`${url}?scope=${apiScope}&page=${pageNum}`)
      .then((response) => {
        const pageInfo = pageValues(response.headers);
        this.pageInfo = Object.assign({}, this.pageInfo, pageInfo);

        const res = JSON.parse(response.body);
        this.count = Object.assign({}, this.count, res.count);
        this.pipelines = Object.assign([], this.pipelines, res.pipelines);

        this.pageRequest = false;
      }, () => {
        this.pageRequest = false;
        return new Flash('An error occurred while fetching the pipelines, please reload the page again.');
      });
    }
  };
})(window.gl || (window.gl = {}));