summaryrefslogtreecommitdiff
path: root/src/views/_sila/Power/Static/SupplyTabs.vue
blob: 7a1ea20da79095b47511e8afc1f73f44f21e7337 (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
59
60
61
62
63
64
65
66
67
68
69
70
<template>
  <b-col
    ref="content"
    class="d-flex align-items-center data-tab"
    @wheel.prevent="wheelItBetter($event)"
  >
    <span
      v-for="item in slots"
      :key="item.id"
      :class="{ 'tab-active': currentSlot === item.id }"
      @click="switchTab(item.id)"
      >{{ item.id }}</span
    >
  </b-col>
</template>

<script>
export default {
  props: {
    slots: {
      type: Array,
      default: null,
    },
    currentSlot: {
      type: String,
      default: null,
    },
    switchTab: {
      type: Function,
      required: true,
    },
  },
  data() {
    return {
      container: this.$refs.content,
    };
  },
  methods: {
    wheelItBetter(event) {
      if (event.deltaY < 0) {
        this.$refs.content.scrollLeft -= 25;
      } else {
        this.$refs.content.scrollLeft += 25;
      }
    },
  },
};
</script>
<style lang="scss" scoped>
.data-tab {
  height: 48px;
  max-width: 150%;
  width: auto;
  margin: -2rem -1.95rem 0px -2rem;
  padding-left: 2rem;
  overflow-x: auto;
  @include media-breakpoint-down(md) {
    padding-left: 1rem;
    padding-right: 1rem;
    margin-left: -0.95rem;
  }
  border-bottom: 1px solid $gray-10;
  gap: 24px;
}

.tab-active {
  color: $primary;
  transition: ease-in 0.15s;
}
</style>