2018-11-20 20:47:30 +05:30
|
|
|
<script>
|
|
|
|
import $ from 'jquery';
|
|
|
|
import { mapActions, mapState } from 'vuex';
|
|
|
|
import DropdownButton from '~/vue_shared/components/dropdown/dropdown_button.vue';
|
2019-01-03 12:48:30 +05:30
|
|
|
import { GlLoadingIcon } from '@gitlab-org/gitlab-ui';
|
2018-11-20 20:47:30 +05:30
|
|
|
|
|
|
|
export default {
|
|
|
|
components: {
|
|
|
|
DropdownButton,
|
2018-12-13 13:39:08 +05:30
|
|
|
GlLoadingIcon,
|
2018-11-20 20:47:30 +05:30
|
|
|
},
|
|
|
|
props: {
|
|
|
|
data: {
|
|
|
|
type: Array,
|
|
|
|
required: false,
|
|
|
|
default: () => [],
|
|
|
|
},
|
|
|
|
label: {
|
|
|
|
type: String,
|
|
|
|
required: true,
|
|
|
|
},
|
|
|
|
title: {
|
|
|
|
type: String,
|
|
|
|
required: false,
|
|
|
|
default: null,
|
|
|
|
},
|
|
|
|
isAsyncData: {
|
|
|
|
type: Boolean,
|
|
|
|
required: false,
|
|
|
|
default: false,
|
|
|
|
},
|
|
|
|
searchable: {
|
|
|
|
type: Boolean,
|
|
|
|
required: false,
|
|
|
|
default: false,
|
|
|
|
},
|
|
|
|
},
|
|
|
|
data() {
|
|
|
|
return {
|
|
|
|
search: '',
|
|
|
|
};
|
|
|
|
},
|
|
|
|
computed: {
|
|
|
|
...mapState('fileTemplates', ['templates', 'isLoading']),
|
|
|
|
outputData() {
|
|
|
|
return (this.isAsyncData ? this.templates : this.data).filter(t => {
|
|
|
|
if (!this.searchable) return true;
|
|
|
|
|
|
|
|
return t.name.toLowerCase().indexOf(this.search.toLowerCase()) >= 0;
|
|
|
|
});
|
|
|
|
},
|
|
|
|
showLoading() {
|
|
|
|
return this.isAsyncData ? this.isLoading : false;
|
|
|
|
},
|
|
|
|
},
|
|
|
|
mounted() {
|
|
|
|
$(this.$el).on('show.bs.dropdown', this.fetchTemplatesIfAsync);
|
|
|
|
},
|
|
|
|
beforeDestroy() {
|
|
|
|
$(this.$el).off('show.bs.dropdown', this.fetchTemplatesIfAsync);
|
|
|
|
},
|
|
|
|
methods: {
|
|
|
|
...mapActions('fileTemplates', ['fetchTemplateTypes']),
|
|
|
|
fetchTemplatesIfAsync() {
|
|
|
|
if (this.isAsyncData) {
|
|
|
|
this.fetchTemplateTypes();
|
|
|
|
}
|
|
|
|
},
|
|
|
|
clickItem(item) {
|
|
|
|
this.$emit('click', item);
|
|
|
|
},
|
|
|
|
},
|
|
|
|
};
|
|
|
|
</script>
|
|
|
|
|
|
|
|
<template>
|
|
|
|
<div class="dropdown">
|
2019-01-03 12:48:30 +05:30
|
|
|
<dropdown-button
|
|
|
|
:toggle-text="label"
|
|
|
|
data-display="static"
|
|
|
|
/>
|
2018-11-20 20:47:30 +05:30
|
|
|
<div class="dropdown-menu pb-0">
|
2019-01-03 12:48:30 +05:30
|
|
|
<div
|
|
|
|
v-if="title"
|
|
|
|
class="dropdown-title ml-0 mr-0"
|
|
|
|
>
|
|
|
|
{{ title }}
|
|
|
|
</div>
|
|
|
|
<div
|
|
|
|
v-if="!showLoading && searchable"
|
|
|
|
class="dropdown-input"
|
|
|
|
>
|
2018-11-20 20:47:30 +05:30
|
|
|
<input
|
|
|
|
v-model="search"
|
|
|
|
:placeholder="__('Filter...')"
|
|
|
|
type="search"
|
2018-12-13 13:39:08 +05:30
|
|
|
class="dropdown-input-field qa-dropdown-filter-input"
|
2018-11-20 20:47:30 +05:30
|
|
|
/>
|
2019-01-03 12:48:30 +05:30
|
|
|
<i
|
|
|
|
aria-hidden="true"
|
|
|
|
class="fa fa-search dropdown-input-search"
|
|
|
|
></i>
|
2018-11-20 20:47:30 +05:30
|
|
|
</div>
|
|
|
|
<div class="dropdown-content">
|
2019-01-03 12:48:30 +05:30
|
|
|
<gl-loading-icon
|
|
|
|
v-if="showLoading"
|
|
|
|
:size="2"
|
|
|
|
/>
|
2018-11-20 20:47:30 +05:30
|
|
|
<ul v-else>
|
2019-01-03 12:48:30 +05:30
|
|
|
<li
|
|
|
|
v-for="(item, index) in outputData"
|
|
|
|
:key="index"
|
|
|
|
>
|
|
|
|
<button
|
|
|
|
type="button"
|
|
|
|
@click="clickItem(item)"
|
|
|
|
>
|
|
|
|
{{ item.name }}
|
|
|
|
</button>
|
2018-11-20 20:47:30 +05:30
|
|
|
</li>
|
|
|
|
</ul>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</template>
|