2020-11-24 15:15:51 +05:30
|
|
|
<script>
|
2021-02-22 17:27:13 +05:30
|
|
|
import { GlButton } from '@gitlab/ui';
|
2020-11-24 15:15:51 +05:30
|
|
|
import { n__ } from '~/locale';
|
|
|
|
import UncollapsedAssigneeList from '~/sidebar/components/assignees/uncollapsed_assignee_list.vue';
|
|
|
|
|
|
|
|
export default {
|
|
|
|
components: {
|
2021-02-22 17:27:13 +05:30
|
|
|
GlButton,
|
2020-11-24 15:15:51 +05:30
|
|
|
UncollapsedAssigneeList,
|
|
|
|
},
|
|
|
|
props: {
|
|
|
|
users: {
|
|
|
|
type: Array,
|
|
|
|
required: true,
|
|
|
|
},
|
2021-03-11 19:13:27 +05:30
|
|
|
issuableType: {
|
|
|
|
type: String,
|
|
|
|
required: false,
|
|
|
|
default: 'issue',
|
|
|
|
},
|
2020-11-24 15:15:51 +05:30
|
|
|
},
|
|
|
|
computed: {
|
|
|
|
assigneesText() {
|
|
|
|
return n__('Assignee', '%d Assignees', this.users.length);
|
|
|
|
},
|
|
|
|
emptyUsers() {
|
|
|
|
return this.users.length === 0;
|
|
|
|
},
|
|
|
|
},
|
|
|
|
};
|
|
|
|
</script>
|
|
|
|
|
|
|
|
<template>
|
|
|
|
<div class="gl-display-flex gl-flex-direction-column">
|
|
|
|
<div v-if="emptyUsers" data-testid="none">
|
2021-02-22 17:27:13 +05:30
|
|
|
<span> {{ __('None') }} -</span>
|
|
|
|
<gl-button
|
|
|
|
data-testid="assign-yourself"
|
|
|
|
category="tertiary"
|
|
|
|
variant="link"
|
|
|
|
@click="$emit('assign-self')"
|
|
|
|
>
|
2021-03-11 19:13:27 +05:30
|
|
|
<span class="gl-text-gray-500 gl-hover-text-blue-800">{{ __('assign yourself') }}</span>
|
2021-02-22 17:27:13 +05:30
|
|
|
</gl-button>
|
2020-11-24 15:15:51 +05:30
|
|
|
</div>
|
2021-03-11 19:13:27 +05:30
|
|
|
<uncollapsed-assignee-list v-else :users="users" :issuable-type="issuableType" />
|
2020-11-24 15:15:51 +05:30
|
|
|
</div>
|
|
|
|
</template>
|