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

export default {
  components: {
    GlLoadingIcon,
  },
  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="btn btn-default dropdown-menu-toggle dropdown-menu-full-width btn"
    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>