summaryrefslogtreecommitdiff
path: root/app/assets/javascripts/ide/components/jobs/detail/scroll_button.vue
blob: 6e1929a1948b331fe5be7134051f902c02ccf76a (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
<script>
import { GlIcon, GlTooltipDirective } from '@gitlab/ui';
import { __ } from '../../../../locale';

const directions = {
  up: 'up',
  down: 'down',
};

export default {
  directives: {
    GlTooltip: GlTooltipDirective,
  },
  components: {
    GlIcon,
  },
  props: {
    direction: {
      type: String,
      required: true,
      validator(value) {
        return Object.keys(directions).includes(value);
      },
    },
    disabled: {
      type: Boolean,
      required: true,
    },
  },
  computed: {
    tooltipTitle() {
      return this.direction === directions.up ? __('Scroll to top') : __('Scroll to bottom');
    },
    iconName() {
      return `scroll_${this.direction}`;
    },
  },
  methods: {
    clickedScroll() {
      this.$emit('click');
    },
  },
};
</script>

<template>
  <div
    v-gl-tooltip
    :title="tooltipTitle"
    class="controllers-buttons"
    data-container="body"
    data-placement="top"
  >
    <button
      :disabled="disabled"
      class="btn-scroll btn-transparent btn-blank"
      type="button"
      :aria-label="tooltipTitle"
      @click="clickedScroll"
    >
      <gl-icon :name="iconName" />
    </button>
  </div>
</template>