aboutsummaryrefslogtreecommitdiffstats
path: root/chained-ci-vue/js/index.js
blob: 447a27b629db31e5cc834216f1afbf6db46692e6 (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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
// Init token we need to fetch
var privateTokens = [];
tokenTargets.forEach(function(target){
  privateTokens.push({'target': target,
                        'value': '',
                        'msg': '',
                        'icon': '',
                        'accessGranted': false})
})
pipelineRefreshId = -1;
// Start the authentication
authenticate();


/**
 * VUE for authentication form
 *
 * @data {list} privateTokens              list of token objects
 * @data {list} gitlabProfileToken        list of gitlab token to ask
 *
 * @computed {dict} tokensByTarget          dict of tokens by target
 * @computed {dict} globalAccessGranted   remove the form if all token are verified
 *
 * @methods {function} check the form by starting validateTokens
 */
var headerVue = new Vue({
    el: '#header',
    data: {project: {}}
});

/**
 * VUE for pipelines
 *
 * @data {bool} loading          lock var to avoid concurrent load
 * @data {dict} pipelines        dict of pipelines
 * @data {list} pipelinesIds    list of pipelines
 * @data {bool} accessGranted   show the pipelines
 * @data {int} pages             page indication
 *
 * @computed {list} sortedPipelinesIds      list of reverse pipelines ids
 *
 * @methods {function} job_details     load job details on click
 * @methods {function} handleScroll    load new pipelines on scroll to bottom
 */
var pipelinesVue = new Vue({
    el: '#pipelines',
    data: {
      loading: false,
      newPipelineUrl: '',
      pipelines: {},
      pipelinesIds: [],
      accessGranted: false,
      pipelineFilter: '',
      pages: 1,
      timer: updateTimer,
      actualRefresh: updateTimer * 2,
      optimizedRefresh: false,
    },
    computed: {
      sortedPipelinesIds: function() {
        filteredList = [];
        var pipelines = this.pipelines;
        var filter = this.pipelineFilter;
        this.pipelinesIds.sort().reverse().forEach(
          function(pipelineId){
            if(pipelines[pipelineId].scenario.includes(filter)){
              filteredList.push(pipelineId)
            }
          }
        );
        this.optimizedRefresh = (filteredList.length <= optimizedRefreshLevel);
        if(this.optimizedRefresh){
          updateLoop(updateTimer/2);
        }else{
          updateLoop(updateTimer);
        }
        return filteredList;
      }
    },
    methods:{
      mouseOverJob: function(job){
        iconMouseOver(job);
      },
      mouseLeaveJob: function(job){
        iconMouseLeave(job);
      },
      jobAction: function(job){
        jobActionSwitch(job.status, job.id)
      },
      jobDetails: function(event, job){
        taskDetailsVue.showModal = true;
        taskDetailsVue.showWaiting = true;
        taskDetailsVue.showPipeline = false;
        loadSubPipeline(job.id, job.name);
      },
      loadMore: function() {
        if (!pipelinesVue.loading){
          pipelinesVue.loading = true;
          pipelinesVue.pages += 1;
          loadPipelines(pipelinesVue.pages);
        }
      },
  }
});

// Vue.directive('scroll', {
//   inserted: function(el, binding) {
//     let f = function(evt) {
//       if (binding.value(evt, el)) {}
//     };
//     window.addEventListener('scroll', f);
//   },
// });

/**
 * VUE for authentication form
 *
 * @data {list} privateTokens              list of token objects
 * @data {list} gitlabProfileToken        list of gitlab token to ask
 *
 * @computed {dict} tokensByTarget          dict of tokens by target
 * @computed {dict} globalAccessGranted   remove the form if all token are verified
 *
 * @methods {function} check the form by starting validateTokens
 */
var authVue = new Vue({
    el: '#auth',
    data: {privateTokens: privateTokens,
           gitlabProfileToken: gitlabProfileToken},
    methods:{
      checkForm: function (e) {
        validateTokens(this.privateTokens);
        e.preventDefault();
      }
    },
    computed: {
      tokensByTarget: function() {
        tokens = {}
        this.privateTokens.forEach(function(token){
          tokens[token.target] = token.value
        });
        return tokens
      },
      globalAccessGranted: function() {
        granted = true;
        this.privateTokens.forEach(function(token){
          granted = (granted && token.accessGranted)
        });
        if (granted){
          localStorage.setItem("chained_ci_tokens", JSON.stringify(this.privateTokens));
          load()
        }
        pipelinesVue.accessGranted = granted
        return granted;
      }
    }
});

/**
 * VUE for the detail of a job (show the sub pipeline)
 *
 * @data {bool} showModal          show the modal vue
 * @data {bool} showPipeline       show the pipeline
 * @data {bool} showWaiting        show the waiting message
 * @data {bool} chainedCiFailure prompt a message of chained ci failed
 * @data {dict} pipeline           pipeline data
 */
var taskDetailsVue = new Vue({
    el: '#task_details',
    data: {
      showModal: false,
      showPipeline: false,
      showWaiting: false,
      chainedCiFailure: false,
      pipeline: {
        'name': '',
        'url': '',
        'id': '',
        'status': '',
        'statusIcon': '',
        'console': '',
        'stages': [],
        'parentTaskId': '',
        'parentTaskName': '',
      }
    },
    methods:{
      mouseOverPipeline: function(pipeline){
        iconMouseOver(pipeline);
      },
      mouseLeavePipeline: function(pipeline){
        iconMouseLeave(pipeline);
      },
      jobAction: function(pipeline){
        console.log(pipeline)
        this.showModal = false;
        this.showPipeline = false;
        jobActionSwitch(pipeline.status, pipeline.parentTaskId)
      }
    }
});

/**
 * VUE for alert
 *
 * @data {bool} showModal          show the modal vue
 * @data {bool} showPipeline       show the pipeline
 * @data {bool} showWaiting        show the waiting message
 * @data {bool} chainedCiFailure prompt a message of chained ci failed
 * @data {dict} pipeline           pipeline data
 */
var alertVue = new Vue({
    el: '#alert',
    data: {
      showModal: false,
      title: '',
      message: '',
    }
});

// Modal template
Vue.component('modal', {
  template: '#modal-template',
  methods:{
    closeModal: function(event, emit){
      if(event.target.className == 'modal-wrapper'){
        // emit('close')
        alertVue.showModal = false
        alertVue.title = ''
        alertVue.message = ''
        taskDetailsVue.showModal = false
        taskDetailsVue.showPipeline = false
        taskDetailsVue.showWaiting = false
        taskDetailsVue.chainedCiFailure = false
        taskDetailsVue.pipeline = {
          'name': '',
          'url': '',
          'id': '',
          'status': '',
          'statusIcon': '',
          'console': '',
          'stages': [],
          'parentTaskId': '',
          'parentTaskName': '',
        }
        updatePipelines
      }
    },
  },
})