93 lines
2 KiB
Vue
93 lines
2 KiB
Vue
<script>
|
|
import { s__ } from '../../locale';
|
|
import tooltip from '../../vue_shared/directives/tooltip';
|
|
import PopupDialog from '../../vue_shared/components/popup_dialog.vue';
|
|
import eventHub from '../event_hub';
|
|
import { COMMON_STR } from '../constants';
|
|
|
|
export default {
|
|
components: {
|
|
PopupDialog,
|
|
},
|
|
directives: {
|
|
tooltip,
|
|
},
|
|
props: {
|
|
parentGroup: {
|
|
type: Object,
|
|
required: false,
|
|
default: () => ({}),
|
|
},
|
|
group: {
|
|
type: Object,
|
|
required: true,
|
|
},
|
|
},
|
|
data() {
|
|
return {
|
|
dialogStatus: false,
|
|
};
|
|
},
|
|
computed: {
|
|
leaveBtnTitle() {
|
|
return COMMON_STR.LEAVE_BTN_TITLE;
|
|
},
|
|
editBtnTitle() {
|
|
return COMMON_STR.EDIT_BTN_TITLE;
|
|
},
|
|
leaveConfirmationMessage() {
|
|
return s__(`GroupsTree|Are you sure you want to leave the "${this.group.fullName}" group?`);
|
|
},
|
|
},
|
|
methods: {
|
|
onLeaveGroup() {
|
|
this.dialogStatus = true;
|
|
},
|
|
leaveGroup(leaveConfirmed) {
|
|
this.dialogStatus = false;
|
|
if (leaveConfirmed) {
|
|
eventHub.$emit('leaveGroup', this.group, this.parentGroup);
|
|
}
|
|
},
|
|
},
|
|
};
|
|
</script>
|
|
|
|
<template>
|
|
<div class="controls">
|
|
<a
|
|
v-tooltip
|
|
v-if="group.canEdit"
|
|
:href="group.editPath"
|
|
:title="editBtnTitle"
|
|
:aria-label="editBtnTitle"
|
|
data-container="body"
|
|
class="edit-group btn no-expand">
|
|
<i
|
|
class="fa fa-cogs"
|
|
aria-hidden="true"/>
|
|
</a>
|
|
<a
|
|
v-tooltip
|
|
v-if="group.canLeave"
|
|
@click.prevent="onLeaveGroup"
|
|
:href="group.leavePath"
|
|
:title="leaveBtnTitle"
|
|
:aria-label="leaveBtnTitle"
|
|
data-container="body"
|
|
class="leave-group btn no-expand">
|
|
<i
|
|
class="fa fa-sign-out"
|
|
aria-hidden="true"/>
|
|
</a>
|
|
<popup-dialog
|
|
v-show="dialogStatus"
|
|
:primary-button-label="__('Leave')"
|
|
kind="warning"
|
|
:title="__('Are you sure?')"
|
|
:text="__('Are you sure you want to leave this group?')"
|
|
:body="leaveConfirmationMessage"
|
|
@submit="leaveGroup"
|
|
/>
|
|
</div>
|
|
</template>
|