summaryrefslogtreecommitdiff
path: root/app/assets/javascripts/logs/components/tokens/token_with_loading_state.vue
blob: f8ce704942bf29676ffcd6b9cd7b78f71ecf30d7 (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
<script>
import { GlFilteredSearchToken, GlLoadingIcon } from '@gitlab/ui';

export default {
  components: {
    GlFilteredSearchToken,
    GlLoadingIcon,
  },
  inheritAttrs: false,
  props: {
    config: {
      type: Object,
      required: true,
    },
  },
};
</script>

<template>
  <gl-filtered-search-token :config="config" v-bind="{ ...$attrs }" v-on="$listeners">
    <template #suggestions>
      <div class="m-1">
        <gl-loading-icon v-if="config.loading" />
        <div v-else class="py-1 px-2 text-muted">
          {{ config.noOptionsText }}
        </div>
      </div>
    </template>
  </gl-filtered-search-token>
</template>