Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'app/assets/javascripts/vue_shared/components/remove_member_modal.vue')
-rw-r--r--app/assets/javascripts/vue_shared/components/remove_member_modal.vue78
1 files changed, 78 insertions, 0 deletions
diff --git a/app/assets/javascripts/vue_shared/components/remove_member_modal.vue b/app/assets/javascripts/vue_shared/components/remove_member_modal.vue
new file mode 100644
index 00000000000..88d1b15aee3
--- /dev/null
+++ b/app/assets/javascripts/vue_shared/components/remove_member_modal.vue
@@ -0,0 +1,78 @@
+<script>
+import { GlFormCheckbox, GlModal } from '@gitlab/ui';
+import { parseBoolean } from '~/lib/utils/common_utils';
+import csrf from '~/lib/utils/csrf';
+import { __ } from '~/locale';
+
+export default {
+ actionCancel: {
+ text: __('Cancel'),
+ },
+ csrf,
+ components: {
+ GlFormCheckbox,
+ GlModal,
+ },
+ data() {
+ return {
+ modalData: {},
+ };
+ },
+ computed: {
+ isAccessRequest() {
+ return parseBoolean(this.modalData.isAccessRequest);
+ },
+ actionText() {
+ return this.isAccessRequest ? __('Deny access request') : __('Remove member');
+ },
+ actionPrimary() {
+ return {
+ text: this.actionText,
+ attributes: {
+ variant: 'danger',
+ },
+ };
+ },
+ },
+ mounted() {
+ document.addEventListener('click', this.handleClick);
+ },
+ beforeDestroy() {
+ document.removeEventListener('click', this.handleClick);
+ },
+ methods: {
+ handleClick(event) {
+ const removeButton = event.target.closest('.js-remove-member-button');
+ if (removeButton) {
+ this.modalData = removeButton.dataset;
+ this.$refs.modal.show();
+ }
+ },
+ submitForm() {
+ this.$refs.form.submit();
+ },
+ },
+};
+</script>
+
+<template>
+ <gl-modal
+ ref="modal"
+ modal-id="remove-member-modal"
+ :action-cancel="$options.actionCancel"
+ :action-primary="actionPrimary"
+ :title="actionText"
+ data-qa-selector="remove_member_modal_content"
+ @primary="submitForm"
+ >
+ <form ref="form" :action="modalData.memberPath" method="post">
+ <p data-testid="modal-message">{{ modalData.message }}</p>
+
+ <input ref="method" type="hidden" name="_method" value="delete" />
+ <input :value="$options.csrf.token" type="hidden" name="authenticity_token" />
+ <gl-form-checkbox v-if="!isAccessRequest" name="unassign_issuables">
+ {{ __('Also unassign this user from related issues and merge requests') }}
+ </gl-form-checkbox>
+ </form>
+ </gl-modal>
+</template>