mirror of
https://github.com/n8n-io/n8n.git
synced 2024-11-15 09:04:07 -08:00
210 lines
5 KiB
Vue
210 lines
5 KiB
Vue
<template>
|
|
<Modal
|
|
:name="modalName"
|
|
@enter="onSubmit"
|
|
:title="title"
|
|
:center="true"
|
|
width="460px"
|
|
:eventBus="modalBus"
|
|
>
|
|
<template #content>
|
|
<div>
|
|
<div v-if="isPending">
|
|
<n8n-text color="text-base">{{
|
|
$locale.baseText('settings.users.confirmUserDeletion')
|
|
}}</n8n-text>
|
|
</div>
|
|
<div :class="$style.content" v-else>
|
|
<div>
|
|
<n8n-text color="text-base">{{
|
|
$locale.baseText('settings.users.confirmDataHandlingAfterDeletion')
|
|
}}</n8n-text>
|
|
</div>
|
|
<el-radio :value="operation" label="transfer" @change="() => setOperation('transfer')">
|
|
<n8n-text color="text-dark">{{
|
|
$locale.baseText('settings.users.transferWorkflowsAndCredentials')
|
|
}}</n8n-text>
|
|
</el-radio>
|
|
<div :class="$style.optionInput" v-if="operation === 'transfer'">
|
|
<n8n-input-label :label="$locale.baseText('settings.users.userToTransferTo')">
|
|
<n8n-user-select
|
|
:users="usersStore.allUsers"
|
|
:value="transferId"
|
|
:ignoreIds="ignoreIds"
|
|
:currentUserId="usersStore.currentUserId"
|
|
@input="setTransferId"
|
|
/>
|
|
</n8n-input-label>
|
|
</div>
|
|
<el-radio :value="operation" label="delete" @change="() => setOperation('delete')">
|
|
<n8n-text color="text-dark">{{
|
|
$locale.baseText('settings.users.deleteWorkflowsAndCredentials')
|
|
}}</n8n-text>
|
|
</el-radio>
|
|
<div
|
|
:class="$style.optionInput"
|
|
v-if="operation === 'delete'"
|
|
data-test-id="delete-data-input"
|
|
>
|
|
<n8n-input-label :label="$locale.baseText('settings.users.deleteConfirmationMessage')">
|
|
<n8n-input
|
|
:value="deleteConfirmText"
|
|
:placeholder="$locale.baseText('settings.users.deleteConfirmationText')"
|
|
@input="setConfirmText"
|
|
/>
|
|
</n8n-input-label>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</template>
|
|
<template #footer>
|
|
<n8n-button
|
|
:loading="loading"
|
|
:disabled="!enabled"
|
|
:label="$locale.baseText('settings.users.delete')"
|
|
@click="onSubmit"
|
|
float="right"
|
|
/>
|
|
</template>
|
|
</Modal>
|
|
</template>
|
|
|
|
<script lang="ts">
|
|
import { defineComponent } from 'vue';
|
|
import { useToast } from '@/composables';
|
|
import Modal from '@/components/Modal.vue';
|
|
import type { IUser } from '@/Interface';
|
|
import { mapStores } from 'pinia';
|
|
import { useUsersStore } from '@/stores/users.store';
|
|
import { createEventBus } from 'n8n-design-system';
|
|
|
|
export default defineComponent({
|
|
name: 'DeleteUserModal',
|
|
components: {
|
|
Modal,
|
|
},
|
|
props: {
|
|
modalName: {
|
|
type: String,
|
|
},
|
|
activeId: {
|
|
type: String,
|
|
},
|
|
},
|
|
setup() {
|
|
return {
|
|
...useToast(),
|
|
};
|
|
},
|
|
data() {
|
|
return {
|
|
modalBus: createEventBus(),
|
|
loading: false,
|
|
operation: '',
|
|
deleteConfirmText: '',
|
|
transferId: '',
|
|
ignoreIds: [this.activeId],
|
|
};
|
|
},
|
|
computed: {
|
|
...mapStores(useUsersStore),
|
|
userToDelete(): IUser | null {
|
|
return this.usersStore.getUserById(this.activeId);
|
|
},
|
|
isPending(): boolean {
|
|
return this.userToDelete ? this.userToDelete && !this.userToDelete.firstName : false;
|
|
},
|
|
title(): string {
|
|
const user =
|
|
(this.userToDelete && (this.userToDelete.fullName || this.userToDelete.email)) || '';
|
|
return this.$locale.baseText('settings.users.deleteUser', { interpolate: { user } });
|
|
},
|
|
enabled(): boolean {
|
|
if (this.isPending) {
|
|
return true;
|
|
}
|
|
if (
|
|
this.operation === 'delete' &&
|
|
this.deleteConfirmText === this.$locale.baseText('settings.users.deleteConfirmationText')
|
|
) {
|
|
return true;
|
|
}
|
|
|
|
if (this.operation === 'transfer' && this.transferId) {
|
|
return true;
|
|
}
|
|
|
|
return false;
|
|
},
|
|
},
|
|
methods: {
|
|
setOperation(operation: string) {
|
|
this.operation = operation;
|
|
this.transferId = '';
|
|
},
|
|
setConfirmText(text: string) {
|
|
this.deleteConfirmText = text;
|
|
},
|
|
setTransferId(id: string) {
|
|
this.transferId = id;
|
|
},
|
|
async onSubmit() {
|
|
try {
|
|
if (!this.enabled) {
|
|
return;
|
|
}
|
|
|
|
this.loading = true;
|
|
|
|
const params = { id: this.activeId } as { id: string; transferId?: string };
|
|
if (this.operation === 'transfer') {
|
|
params.transferId = this.transferId;
|
|
}
|
|
|
|
await this.usersStore.deleteUser(params);
|
|
|
|
let message = '';
|
|
if (this.transferId) {
|
|
const transferUser: IUser | null = this.usersStore.getUserById(this.transferId);
|
|
if (transferUser) {
|
|
message = this.$locale.baseText('settings.users.transferredToUser', {
|
|
interpolate: { user: transferUser.fullName || '' },
|
|
});
|
|
}
|
|
}
|
|
|
|
this.showMessage({
|
|
type: 'success',
|
|
title: this.$locale.baseText('settings.users.userDeleted'),
|
|
message,
|
|
});
|
|
|
|
this.modalBus.emit('close');
|
|
} catch (error) {
|
|
this.showError(error, this.$locale.baseText('settings.users.userDeletedError'));
|
|
}
|
|
this.loading = false;
|
|
},
|
|
},
|
|
});
|
|
</script>
|
|
|
|
<style lang="scss" module>
|
|
.content {
|
|
padding-bottom: var(--spacing-2xs);
|
|
> * {
|
|
margin-bottom: var(--spacing-s);
|
|
}
|
|
}
|
|
|
|
.innerContent {
|
|
> * {
|
|
margin-bottom: var(--spacing-2xs);
|
|
}
|
|
}
|
|
|
|
.optionInput {
|
|
padding-left: var(--spacing-l);
|
|
}
|
|
</style>
|