summaryrefslogtreecommitdiff
path: root/app/assets/javascripts/ide/components/jobs/item.vue
blob: 7e9c42860edd78989bf6aada5e63e841adeb4f62 (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
<script>
import CiIcon from '../../../vue_shared/components/ci_icon.vue';

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

<template>
  <div class="ide-job-item">
    <ci-icon
      :status="job.status"
      :borderless="true"
      :size="24"
    />
    <span class="prepend-left-8">
      {{ job.name }}
      <a
        :href="job.path"
        target="_blank"
        v-text="jobId"
      >
      </a>
    </span>
  </div>
</template>

<style scoped>
.ide-job-item {
  display: flex;
  padding: 16px;
}

.ide-job-item:not(:last-child) {
  border-bottom: 1px solid #e5e5e5;
}

.ide-job-item .ci-status-icon {
  display: flex;
  justify-content: center;
  height: 20px;
  margin-top: -2px;
  overflow: hidden;
}
</style>