summaryrefslogtreecommitdiff
path: root/app/assets/javascripts/pipelines/components/navigation_tabs.vue
blob: 07befd2350027aad36e3a70325d144102caf1292 (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
<script>
  export default {
    name: 'PipelineNavigationTabs',
    props: {
      tabs: {
        type: Array,
        required: true,
      },
    },
    mounted() {
      $(document).trigger('init.scrolling-tabs');
    },
    methods: {
      shouldRenderBadge(count) {
        // 0 is valid in a badge, but evaluates to false, we need to check for undefined
        return count !== undefined;
      },

      onTabClick(tab) {
        this.$emit('onChangeTab', tab.scope);
      },
    },
};
</script>
<template>
  <ul class="nav-links scrolling-tabs">
    <li
      v-for="(tab, i) in tabs"
      :key="i"
      :class="{
        active: tab.isActive,
      }"
      >
      <a
        role="button"
        @click="onTabClick(tab)"
        :class="`js-pipelines-tab-${tab.scope}`"
        >
        {{ tab.name }}

        <span
          v-if="shouldRenderBadge(tab.count)"
          class="badge"
          >
          {{tab.count}}
        </span>

      </a>
    </li>
  </ul>
</template>