2021-09-30 23:02:18 +05:30
|
|
|
<script>
|
|
|
|
import { GlDropdownItem } from '@gitlab/ui';
|
|
|
|
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 = `
|
2021-10-27 15:23:28 +05:30
|
|
|
<p>${s__('AdminUsers|When banned:')}</p>
|
2021-09-30 23:02:18 +05:30
|
|
|
<ul>
|
2021-10-27 15:23:28 +05:30
|
|
|
<li>${s__("AdminUsers|The user can't log in.")}</li>
|
|
|
|
<li>${s__("AdminUsers|The user can't access git repositories.")}</li>
|
|
|
|
<li>${s__('AdminUsers|Issues authored by this user are hidden from other users.')}</li>
|
2021-09-30 23:02:18 +05:30
|
|
|
</ul>
|
|
|
|
<p>${s__('AdminUsers|You can unban their account in the future. Their data remains intact.')}</p>
|
|
|
|
<p>${sprintf(
|
|
|
|
s__('AdminUsers|Learn more about %{link_start}banned users.%{link_end}'),
|
|
|
|
{
|
|
|
|
link_start: `<a href="${helpPagePath('user/admin_area/moderate_users', {
|
|
|
|
anchor: 'ban-a-user',
|
|
|
|
})}" target="_blank">`,
|
|
|
|
link_end: '</a>',
|
|
|
|
},
|
|
|
|
false,
|
|
|
|
)}</p>
|
|
|
|
`;
|
|
|
|
|
|
|
|
export default {
|
|
|
|
components: {
|
|
|
|
GlDropdownItem,
|
|
|
|
},
|
|
|
|
props: {
|
|
|
|
username: {
|
|
|
|
type: String,
|
|
|
|
required: true,
|
|
|
|
},
|
|
|
|
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: 'put',
|
|
|
|
modalAttributes: {
|
2021-09-30 23:02:18 +05:30
|
|
|
title: sprintf(s__('AdminUsers|Ban user %{username}?'), {
|
|
|
|
username: this.username,
|
|
|
|
}),
|
|
|
|
actionCancel: {
|
|
|
|
text: __('Cancel'),
|
|
|
|
},
|
|
|
|
actionPrimary: {
|
|
|
|
text: I18N_USER_ACTIONS.ban,
|
|
|
|
attributes: [{ variant: 'confirm' }],
|
|
|
|
},
|
|
|
|
messageHtml,
|
2022-01-26 12:08:38 +05:30
|
|
|
},
|
|
|
|
});
|
2021-09-30 23:02:18 +05:30
|
|
|
},
|
|
|
|
},
|
|
|
|
};
|
|
|
|
</script>
|
|
|
|
|
|
|
|
<template>
|
2022-01-26 12:08:38 +05:30
|
|
|
<gl-dropdown-item @click="onClick">
|
2021-09-30 23:02:18 +05:30
|
|
|
<slot></slot>
|
|
|
|
</gl-dropdown-item>
|
|
|
|
</template>
|