debian-mirror-gitlab/app/assets/javascripts/admin/users/components/actions/reject.vue

72 lines
1.8 KiB
Vue
Raw Normal View History

2021-03-11 19:13:27 +05:30
<script>
import { GlDropdownItem } from '@gitlab/ui';
2021-09-30 23:02:18 +05:30
import { helpPagePath } from '~/helpers/help_page_helper';
import { sprintf, s__, __ } from '~/locale';
2022-01-26 12:08:38 +05:30
import eventHub, { EVENT_OPEN_CONFIRM_MODAL } from '~/vue_shared/components/confirm_modal_eventhub';
2021-09-30 23:02:18 +05:30
import { I18N_USER_ACTIONS } from '../../constants';
// TODO: To be replaced with <template> content in https://gitlab.com/gitlab-org/gitlab/-/issues/320922
const messageHtml = `
<p>${s__('AdminUsers|Rejected users:')}</p>
<ul>
<li>${s__('AdminUsers|Cannot sign in or access instance information')}</li>
<li>${s__('AdminUsers|Will be deleted')}</li>
</ul>
<p>${sprintf(
s__(
'AdminUsers|For more information, please refer to the %{link_start}user account deletion documentation.%{link_end}',
),
{
link_start: `<a href="${helpPagePath('user/profile/account/delete_account', {
anchor: 'associated-records',
})}" target="_blank">`,
link_end: '</a>',
},
false,
)}</p>
`;
2021-03-11 19:13:27 +05:30
export default {
components: {
GlDropdownItem,
},
props: {
2021-09-30 23:02:18 +05:30
username: {
type: String,
required: true,
},
2021-03-11 19:13:27 +05:30
path: {
type: String,
required: true,
},
},
2022-01-26 12:08:38 +05:30
methods: {
onClick() {
eventHub.$emit(EVENT_OPEN_CONFIRM_MODAL, {
path: this.path,
method: 'delete',
modalAttributes: {
2021-09-30 23:02:18 +05:30
title: sprintf(s__('AdminUsers|Reject user %{username}?'), {
username: this.username,
}),
actionCancel: {
text: __('Cancel'),
},
actionPrimary: {
text: I18N_USER_ACTIONS.reject,
attributes: [{ variant: 'danger' }],
},
messageHtml,
2022-01-26 12:08:38 +05:30
},
});
2021-09-30 23:02:18 +05:30
},
},
2021-03-11 19:13:27 +05:30
};
</script>
<template>
2022-01-26 12:08:38 +05:30
<gl-dropdown-item @click="onClick">
2021-03-11 19:13:27 +05:30
<slot></slot>
</gl-dropdown-item>
</template>