95 lines
2.1 KiB
Vue
95 lines
2.1 KiB
Vue
<script>
|
|
import { GlTooltipDirective } from '@gitlab/ui';
|
|
import { __ } from '~/locale';
|
|
import Icon from '~/vue_shared/components/icon.vue';
|
|
import Suggestion from './item.vue';
|
|
import query from '../queries/issues.query.graphql';
|
|
|
|
export default {
|
|
components: {
|
|
Suggestion,
|
|
Icon,
|
|
},
|
|
directives: {
|
|
GlTooltip: GlTooltipDirective,
|
|
},
|
|
props: {
|
|
projectPath: {
|
|
type: String,
|
|
required: true,
|
|
},
|
|
search: {
|
|
type: String,
|
|
required: true,
|
|
},
|
|
},
|
|
apollo: {
|
|
issues: {
|
|
query,
|
|
debounce: 1000,
|
|
skip() {
|
|
return this.isSearchEmpty;
|
|
},
|
|
update: data => data.project.issues.edges.map(({ node }) => node),
|
|
variables() {
|
|
return {
|
|
fullPath: this.projectPath,
|
|
search: this.search,
|
|
};
|
|
},
|
|
},
|
|
},
|
|
data() {
|
|
return {
|
|
issues: [],
|
|
loading: 0,
|
|
};
|
|
},
|
|
computed: {
|
|
isSearchEmpty() {
|
|
return !this.search.length;
|
|
},
|
|
showSuggestions() {
|
|
return !this.isSearchEmpty && this.issues.length && !this.loading;
|
|
},
|
|
},
|
|
watch: {
|
|
search() {
|
|
if (this.isSearchEmpty) {
|
|
this.issues = [];
|
|
}
|
|
},
|
|
},
|
|
helpText: __(
|
|
'These existing issues have a similar title. It might be better to comment there instead of creating another similar issue.',
|
|
),
|
|
};
|
|
</script>
|
|
|
|
<template>
|
|
<div v-show="showSuggestions" class="form-group row issuable-suggestions">
|
|
<div v-once class="col-form-label col-sm-2 pt-0">
|
|
{{ __('Similar issues') }}
|
|
<icon
|
|
v-gl-tooltip.bottom
|
|
:title="$options.helpText"
|
|
:aria-label="$options.helpText"
|
|
name="question-o"
|
|
class="text-secondary suggestion-help-hover"
|
|
/>
|
|
</div>
|
|
<div class="col-sm-10">
|
|
<ul class="list-unstyled m-0">
|
|
<li
|
|
v-for="(suggestion, index) in issues"
|
|
:key="suggestion.id"
|
|
:class="{
|
|
'append-bottom-default': index !== issues.length - 1,
|
|
}"
|
|
>
|
|
<suggestion :suggestion="suggestion" />
|
|
</li>
|
|
</ul>
|
|
</div>
|
|
</div>
|
|
</template>
|