debian-mirror-gitlab/app/assets/javascripts/groups/components/item_actions.vue

73 lines
1.5 KiB
Vue
Raw Normal View History

2018-03-17 18:26:18 +05:30
<script>
import tooltip from '~/vue_shared/directives/tooltip';
import icon from '~/vue_shared/components/icon.vue';
import eventHub from '../event_hub';
import { COMMON_STR } from '../constants';
export default {
components: {
icon,
},
directives: {
tooltip,
},
props: {
parentGroup: {
type: Object,
required: false,
default: () => ({}),
},
group: {
type: Object,
required: true,
},
2018-11-20 20:47:30 +05:30
action: {
type: String,
required: false,
default: '',
},
2018-03-17 18:26:18 +05:30
},
computed: {
leaveBtnTitle() {
return COMMON_STR.LEAVE_BTN_TITLE;
},
editBtnTitle() {
return COMMON_STR.EDIT_BTN_TITLE;
},
},
methods: {
onLeaveGroup() {
2018-11-20 20:47:30 +05:30
eventHub.$emit(`${this.action}showLeaveGroupModal`, this.group, this.parentGroup);
2018-03-17 18:26:18 +05:30
},
},
};
</script>
<template>
<div class="controls">
<a
v-if="group.canEdit"
2018-12-05 23:21:45 +05:30
v-tooltip
2018-03-17 18:26:18 +05:30
:href="group.editPath"
:title="editBtnTitle"
:aria-label="editBtnTitle"
data-container="body"
data-placement="bottom"
class="edit-group btn no-expand">
<icon name="settings"/>
</a>
<a
v-if="group.canLeave"
2018-12-05 23:21:45 +05:30
v-tooltip
2018-03-17 18:26:18 +05:30
:href="group.leavePath"
:title="leaveBtnTitle"
:aria-label="leaveBtnTitle"
data-container="body"
data-placement="bottom"
2018-11-08 19:23:39 +05:30
class="leave-group btn no-expand"
@click.prevent="onLeaveGroup">
2018-03-17 18:26:18 +05:30
<icon name="leave"/>
</a>
</div>
</template>