summaryrefslogtreecommitdiff
path: root/app/assets/javascripts/pipelines/components/jobs_shared/job_name_component.vue
blob: fffd8e1818a78fabe88d867f2a495a8bc7c4227c (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
<script>
import ciIcon from '../../../vue_shared/components/ci_icon.vue';

/**
 * Component that renders both the CI icon status and the job name.
 * Used in
 *  - Badge component
 *  - Dropdown badge components
 */
export default {
  components: {
    ciIcon,
  },
  props: {
    name: {
      type: String,
      required: true,
    },
    status: {
      type: Object,
      required: true,
    },
    iconSize: {
      type: Number,
      required: false,
      default: 16,
    },
  },
};
</script>
<template>
  <span class="ci-job-name-component mw-100 gl-display-flex gl-align-items-center">
    <ci-icon :size="iconSize" :status="status" class="gl-line-height-0" />
    <span class="gl-text-truncate mw-70p gl-pl-3 gl-display-inline-block">
      {{ name }}
    </span>
  </span>
</template>