summaryrefslogtreecommitdiff
path: root/app/assets/javascripts/vue_shared/components/members/modals/remove_group_link_modal.vue
diff options
context:
space:
mode:
Diffstat (limited to 'app/assets/javascripts/vue_shared/components/members/modals/remove_group_link_modal.vue')
-rw-r--r--app/assets/javascripts/vue_shared/components/members/modals/remove_group_link_modal.vue69
1 files changed, 0 insertions, 69 deletions
diff --git a/app/assets/javascripts/vue_shared/components/members/modals/remove_group_link_modal.vue b/app/assets/javascripts/vue_shared/components/members/modals/remove_group_link_modal.vue
deleted file mode 100644
index e8890717724..00000000000
--- a/app/assets/javascripts/vue_shared/components/members/modals/remove_group_link_modal.vue
+++ /dev/null
@@ -1,69 +0,0 @@
-<script>
-import { mapState, mapActions } from 'vuex';
-import { GlModal, GlSprintf, GlForm } from '@gitlab/ui';
-import csrf from '~/lib/utils/csrf';
-import { __, s__, sprintf } from '~/locale';
-import { REMOVE_GROUP_LINK_MODAL_ID } from '../constants';
-
-export default {
- name: 'RemoveGroupLinkModal',
- actionCancel: {
- text: __('Cancel'),
- },
- actionPrimary: {
- text: s__('Members|Remove group'),
- attributes: {
- variant: 'danger',
- },
- },
- csrf,
- i18n: {
- modalBody: s__('Members|Are you sure you want to remove "%{groupName}"?'),
- },
- modalId: REMOVE_GROUP_LINK_MODAL_ID,
- components: { GlModal, GlSprintf, GlForm },
- computed: {
- ...mapState(['memberPath', 'groupLinkToRemove', 'removeGroupLinkModalVisible']),
- groupLinkPath() {
- return this.memberPath.replace(/:id$/, this.groupLinkToRemove?.id);
- },
- groupName() {
- return this.groupLinkToRemove?.sharedWithGroup.fullName;
- },
- modalTitle() {
- return sprintf(s__('Members|Remove "%{groupName}"'), { groupName: this.groupName });
- },
- },
- methods: {
- ...mapActions(['hideRemoveGroupLinkModal']),
- handlePrimary() {
- this.$refs.form.$el.submit();
- },
- },
-};
-</script>
-
-<template>
- <gl-modal
- v-bind="$attrs"
- :modal-id="$options.modalId"
- :visible="removeGroupLinkModalVisible"
- :title="modalTitle"
- :action-primary="$options.actionPrimary"
- :action-cancel="$options.actionCancel"
- size="sm"
- @primary="handlePrimary"
- @hide="hideRemoveGroupLinkModal"
- >
- <gl-form ref="form" :action="groupLinkPath" method="post">
- <p>
- <gl-sprintf :message="$options.i18n.modalBody">
- <template #groupName>{{ groupName }}</template>
- </gl-sprintf>
- </p>
-
- <input type="hidden" name="_method" value="delete" />
- <input :value="$options.csrf.token" type="hidden" name="authenticity_token" />
- </gl-form>
- </gl-modal>
-</template>