summaryrefslogtreecommitdiff
path: root/app/assets/javascripts/groups/components/item_actions.vue
blob: 7eff19e2e5af0ff5987ebc576424c16595b6434f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
<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>