summaryrefslogtreecommitdiff
path: root/app/assets/javascripts/vue_shared/components/dropdown/dropdown_button.vue
blob: 310870179686b1e468a6ec6228ffd55adbe8e893 (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
<script>
import { __ } from '~/locale';

export default {
  props: {
    isDisabled: {
      type: Boolean,
      required: false,
      default: false,
    },
    isLoading: {
      type: Boolean,
      required: false,
      default: false,
    },
    toggleText: {
      type: String,
      required: false,
      default: __('Select'),
    },
  },
};
</script>

<template>
  <button
    :disabled="isDisabled || isLoading"
    class="dropdown-menu-toggle dropdown-menu-full-width"
    type="button"
    data-toggle="dropdown"
    aria-expanded="false"
  >
    <gl-loading-icon
      v-show="isLoading"
      :inline="true"
    />
    <template>
      <slot
        v-if="$slots.default"
      ></slot>
      <span
        v-else
        class="dropdown-toggle-text"
      >
        {{ toggleText }}
      </span>
    </template>
    <span
      v-show="!isLoading"
      class="dropdown-toggle-icon"
    >
      <i
        class="fa fa-chevron-down"
        aria-hidden="true"
        data-hidden="true"
      ></i>
    </span>
  </button>
</template>