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

61 lines
1.5 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 { sprintf, s__, __ } from '~/locale';
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|Approved users can:')}</p>
<ul>
<li>${s__('AdminUsers|Log in')}</li>
<li>${s__('AdminUsers|Access Git repositories')}</li>
<li>${s__('AdminUsers|Access the API')}</li>
<li>${s__('AdminUsers|Be added to groups and projects')}</li>
</ul>
`;
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,
},
},
2021-09-30 23:02:18 +05:30
computed: {
attributes() {
return {
'data-path': this.path,
'data-method': 'put',
'data-modal-attributes': JSON.stringify({
title: sprintf(s__('AdminUsers|Approve user %{username}?'), {
username: this.username,
}),
actionCancel: {
text: __('Cancel'),
},
actionPrimary: {
text: I18N_USER_ACTIONS.approve,
attributes: [{ variant: 'confirm', 'data-qa-selector': 'approve_user_confirm_button' }],
},
messageHtml,
}),
'data-qa-selector': 'approve_user_button',
};
},
},
2021-03-11 19:13:27 +05:30
};
</script>
<template>
2021-09-30 23:02:18 +05:30
<gl-dropdown-item button-class="js-confirm-modal-button" v-bind="{ ...attributes }">
2021-03-11 19:13:27 +05:30
<slot></slot>
</gl-dropdown-item>
</template>