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

export default {
  components: {
    LoadingIcon,
  },
  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"
  >
    <loading-icon
      v-show="isLoading"
      :inline="true"
    />
    <span class="dropdown-toggle-text">
      {{ toggleText }}
    </span>
    <span
      v-show="!isLoading"
      class="dropdown-toggle-icon"
    >
      <i
        class="fa fa-chevron-down"
        aria-hidden="true"
        data-hidden="true"
      ></i>
    </span>
  </button>
</template>