summaryrefslogtreecommitdiff
path: root/app/assets/javascripts/pipeline_editor/components/header/pipeline_status.vue
blob: b1ea464be99cee40e5dc9c91588865a8d789cb78 (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
<script>
import { GlIcon, GlLink, GlLoadingIcon, GlSprintf } from '@gitlab/ui';
import { getIdFromGraphQLId } from '~/graphql_shared/utils';
import { s__ } from '~/locale';
import getCommitSha from '~/pipeline_editor/graphql/queries/client/commit_sha.graphql';
import getPipelineQuery from '~/pipeline_editor/graphql/queries/client/pipeline.graphql';
import CiIcon from '~/vue_shared/components/ci_icon.vue';

const POLL_INTERVAL = 10000;
export const i18n = {
  fetchError: s__('Pipeline|We are currently unable to fetch pipeline data'),
  fetchLoading: s__('Pipeline|Checking pipeline status'),
  pipelineInfo: s__(
    `Pipeline|Pipeline %{idStart}#%{idEnd} %{statusStart}%{statusEnd} for %{commitStart}%{commitEnd}`,
  ),
};

export default {
  i18n,
  components: {
    CiIcon,
    GlIcon,
    GlLink,
    GlLoadingIcon,
    GlSprintf,
  },
  inject: ['projectFullPath'],
  apollo: {
    commitSha: {
      query: getCommitSha,
    },
    pipeline: {
      query: getPipelineQuery,
      variables() {
        return {
          fullPath: this.projectFullPath,
          sha: this.commitSha,
        };
      },
      update: (data) => {
        const { id, commitPath = '', shortSha = '', detailedStatus = {} } =
          data.project?.pipeline || {};

        return {
          id,
          commitPath,
          shortSha,
          detailedStatus,
        };
      },
      error() {
        this.hasError = true;
      },
      pollInterval: POLL_INTERVAL,
    },
  },
  data() {
    return {
      hasError: false,
    };
  },
  computed: {
    hasPipelineData() {
      return Boolean(this.$apollo.queries.pipeline?.id);
    },
    isQueryLoading() {
      return this.$apollo.queries.pipeline.loading && !this.hasPipelineData;
    },
    status() {
      return this.pipeline.detailedStatus;
    },
    pipelineId() {
      return getIdFromGraphQLId(this.pipeline.id);
    },
  },
};
</script>

<template>
  <div class="gl-white-space-nowrap gl-max-w-full">
    <template v-if="isQueryLoading">
      <gl-loading-icon class="gl-mr-auto gl-display-inline-block" size="sm" />
      <span data-testid="pipeline-loading-msg">{{ $options.i18n.fetchLoading }}</span>
    </template>
    <template v-else-if="hasError">
      <gl-icon class="gl-mr-auto" name="warning-solid" />
      <span data-testid="pipeline-error-msg">{{ $options.i18n.fetchError }}</span>
    </template>
    <template v-else>
      <a :href="status.detailsPath" class="gl-mr-auto">
        <ci-icon :status="status" :size="18" />
      </a>
      <span class="gl-font-weight-bold">
        <gl-sprintf :message="$options.i18n.pipelineInfo">
          <template #id="{ content }">
            <gl-link
              :href="status.detailsPath"
              class="pipeline-id gl-font-weight-normal pipeline-number"
              target="_blank"
              data-testid="pipeline-id"
            >
              {{ content }}{{ pipelineId }}</gl-link
            >
          </template>
          <template #status>{{ status.text }}</template>
          <template #commit>
            <gl-link
              :href="pipeline.commitPath"
              class="commit-sha gl-font-weight-normal"
              target="_blank"
              data-testid="pipeline-commit"
            >
              {{ pipeline.shortSha }}
            </gl-link>
          </template>
        </gl-sprintf>
      </span>
    </template>
  </div>
</template>