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

pipeline_test_details.js « pipelines « javascripts « assets « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: fe4ca8e952904984142e9b661291f8018db8d4d6 (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
import Vue from 'vue';
import Vuex from 'vuex';
import { parseBoolean } from '~/lib/utils/common_utils';
import Translate from '~/vue_shared/translate';
import TestReports from './components/test_reports/test_reports.vue';

Vue.use(Vuex);
Vue.use(Translate);

export const createTestDetails = (selector) => {
  const el = document.querySelector(selector);
  const {
    blobPath,
    emptyStateImagePath,
    hasTestReport,
    summaryEndpoint,
    suiteEndpoint,
    artifactsExpiredImagePath,
  } = el?.dataset || {};

  // eslint-disable-next-line no-new
  new Vue({
    el,
    components: {
      TestReports,
    },
    provide: {
      emptyStateImagePath,
      artifactsExpiredImagePath,
      hasTestReport: parseBoolean(hasTestReport),
      blobPath,
      summaryEndpoint,
      suiteEndpoint,
    },
    store: new Vuex.Store(),
    render(createElement) {
      return createElement('test-reports');
    },
  });
};