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

description.vue « detail « jobs « components « ide « javascripts « assets « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 21b12220b3757aeb9d2dd0195a52cf119164b384 (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
<!-- eslint-disable vue/multi-word-component-names -->
<script>
import { GlIcon } from '@gitlab/ui';
import CiIcon from '~/vue_shared/components/ci_icon/ci_icon.vue';

export default {
  components: {
    GlIcon,
    CiIcon,
  },
  props: {
    job: {
      type: Object,
      required: true,
    },
  },
  computed: {
    jobId() {
      return `#${this.job.id}`;
    },
  },
};
</script>

<template>
  <div class="d-flex align-items-center">
    <ci-icon
      :status="job.status"
      class="gl-align-items-center gl-border gl-display-inline-flex gl-z-index-1"
    />
    <span class="gl-ml-3">
      {{ job.name }}
      <a
        v-if="job.path"
        :href="job.path"
        target="_blank"
        class="ide-external-link gl-relative"
        data-testid="description-detail-link"
      >
        {{ jobId }} <gl-icon :size="12" name="external-link" />
      </a>
    </span>
  </div>
</template>