summaryrefslogtreecommitdiff
path: root/app/assets/javascripts/ide/components/jobs/detail/description.vue
blob: 7280fba9e7af5506ad61235c2ea6154b79029d45 (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
<script>
import Icon from '../../../../vue_shared/components/icon.vue';
import CiIcon from '../../../../vue_shared/components/ci_icon.vue';

export default {
  components: {
    Icon,
    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" :borderless="true" :size="24" class="d-flex" />
    <span class="prepend-left-8">
      {{ job.name }}
      <a :href="job.path" target="_blank" class="ide-external-link">
        {{ jobId }} <icon :size="12" name="external-link" />
      </a>
    </span>
  </div>
</template>