2021-08-21 06:48:50 +03:00
|
|
|
<template>
|
2022-01-02 17:41:01 +02:00
|
|
|
<div class="_formRoot">
|
|
|
|
<FormInfo warn class="_formBlock">{{ $ts._accountDelete.mayTakeTime }}</FormInfo>
|
|
|
|
<FormInfo class="_formBlock">{{ $ts._accountDelete.sendEmail }}</FormInfo>
|
|
|
|
<FormButton v-if="!$i.isDeleted" danger class="_formBlock" @click="deleteAccount">{{ $ts._accountDelete.requestAccountDelete }}</FormButton>
|
2021-11-19 12:36:12 +02:00
|
|
|
<FormButton v-else disabled>{{ $ts._accountDelete.inProgress }}</FormButton>
|
2022-01-02 17:41:01 +02:00
|
|
|
</div>
|
2021-08-21 06:48:50 +03:00
|
|
|
</template>
|
|
|
|
|
|
|
|
<script lang="ts">
|
|
|
|
import { defineAsyncComponent, defineComponent } from 'vue';
|
2022-01-02 17:41:01 +02:00
|
|
|
import FormInfo from '@/components/ui/info.vue';
|
|
|
|
import FormButton from '@/components/ui/button.vue';
|
2021-11-11 19:02:25 +02:00
|
|
|
import * as os from '@/os';
|
|
|
|
import { signout } from '@/account';
|
|
|
|
import * as symbols from '@/symbols';
|
2021-08-21 06:48:50 +03:00
|
|
|
|
|
|
|
export default defineComponent({
|
|
|
|
components: {
|
|
|
|
FormButton,
|
|
|
|
FormInfo,
|
|
|
|
},
|
|
|
|
|
|
|
|
emits: ['info'],
|
|
|
|
|
|
|
|
data() {
|
|
|
|
return {
|
|
|
|
[symbols.PAGE_INFO]: {
|
|
|
|
title: this.$ts._accountDelete.accountDelete,
|
2021-09-29 18:50:45 +03:00
|
|
|
icon: 'fas fa-exclamation-triangle',
|
|
|
|
bg: 'var(--bg)',
|
2021-08-21 06:48:50 +03:00
|
|
|
},
|
|
|
|
}
|
|
|
|
},
|
|
|
|
|
|
|
|
methods: {
|
|
|
|
async deleteAccount() {
|
2021-11-14 06:27:46 +02:00
|
|
|
{
|
2021-11-18 11:45:58 +02:00
|
|
|
const { canceled } = await os.confirm({
|
2021-11-14 06:27:46 +02:00
|
|
|
type: 'warning',
|
|
|
|
text: this.$ts.deleteAccountConfirm,
|
|
|
|
});
|
|
|
|
if (canceled) return;
|
|
|
|
}
|
|
|
|
|
2021-11-18 11:45:58 +02:00
|
|
|
const { canceled, result: password } = await os.inputText({
|
2021-08-21 06:48:50 +03:00
|
|
|
title: this.$ts.password,
|
2021-11-18 11:45:58 +02:00
|
|
|
type: 'password'
|
2021-08-21 06:48:50 +03:00
|
|
|
});
|
|
|
|
if (canceled) return;
|
|
|
|
|
|
|
|
await os.apiWithDialog('i/delete-account', {
|
|
|
|
password: password
|
|
|
|
});
|
|
|
|
|
2021-11-18 11:45:58 +02:00
|
|
|
await os.alert({
|
2021-08-21 06:48:50 +03:00
|
|
|
title: this.$ts._accountDelete.started,
|
|
|
|
});
|
|
|
|
|
|
|
|
signout();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
});
|
|
|
|
</script>
|