summaryrefslogtreecommitdiff
path: root/app/assets/javascripts/pipelines/components/graph/job_name_component.vue
blob: d8856e10668a263a8eab819c79c5af6ca3988656 (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
<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 {
    props: {
      name: {
        type: String,
        required: true,
      },

      status: {
        type: Object,
        required: true,
      },
    },

    components: {
      ciIcon,
    },
  };
</script>
<template>
  <span>
    <ci-icon
      :status="status" />

    <span class="ci-status-text">
      {{name}}
    </span>
  </span>
</template>