2021-08-21 06:48:50 +03:00
|
|
|
<template>
|
2022-01-02 17:41:01 +02:00
|
|
|
<div class="_formRoot">
|
2022-05-04 04:15:06 +03:00
|
|
|
<FormInfo warn class="_formBlock">{{ i18n.ts._accountDelete.mayTakeTime }}</FormInfo>
|
|
|
|
<FormInfo class="_formBlock">{{ i18n.ts._accountDelete.sendEmail }}</FormInfo>
|
|
|
|
<FormButton v-if="!$i.isDeleted" danger class="_formBlock" @click="deleteAccount">{{ i18n.ts._accountDelete.requestAccountDelete }}</FormButton>
|
|
|
|
<FormButton v-else disabled>{{ i18n.ts._accountDelete.inProgress }}</FormButton>
|
2022-01-02 17:41:01 +02:00
|
|
|
</div>
|
2021-08-21 06:48:50 +03:00
|
|
|
</template>
|
|
|
|
|
2022-05-04 04:15:06 +03:00
|
|
|
<script lang="ts" setup>
|
2022-09-06 12:21:49 +03:00
|
|
|
import FormInfo from '@/components/MkInfo.vue';
|
|
|
|
import FormButton from '@/components/MkButton.vue';
|
2021-11-11 19:02:25 +02:00
|
|
|
import * as os from '@/os';
|
|
|
|
import { signout } from '@/account';
|
2022-05-04 04:15:06 +03:00
|
|
|
import { i18n } from '@/i18n';
|
2022-06-20 11:38:49 +03:00
|
|
|
import { definePageMetadata } from '@/scripts/page-metadata';
|
2022-05-04 04:15:06 +03:00
|
|
|
|
|
|
|
async function deleteAccount() {
|
|
|
|
{
|
|
|
|
const { canceled } = await os.confirm({
|
|
|
|
type: 'warning',
|
|
|
|
text: i18n.ts.deleteAccountConfirm,
|
|
|
|
});
|
|
|
|
if (canceled) return;
|
|
|
|
}
|
2021-08-21 06:48:50 +03:00
|
|
|
|
2022-05-04 04:15:06 +03:00
|
|
|
const { canceled, result: password } = await os.inputText({
|
|
|
|
title: i18n.ts.password,
|
2022-06-20 11:38:49 +03:00
|
|
|
type: 'password',
|
2022-05-04 04:15:06 +03:00
|
|
|
});
|
|
|
|
if (canceled) return;
|
2021-11-14 06:27:46 +02:00
|
|
|
|
2022-05-04 04:15:06 +03:00
|
|
|
await os.apiWithDialog('i/delete-account', {
|
2022-06-20 11:38:49 +03:00
|
|
|
password: password,
|
2022-05-04 04:15:06 +03:00
|
|
|
});
|
2021-08-21 06:48:50 +03:00
|
|
|
|
2022-05-04 04:15:06 +03:00
|
|
|
await os.alert({
|
|
|
|
title: i18n.ts._accountDelete.started,
|
|
|
|
});
|
2021-08-21 06:48:50 +03:00
|
|
|
|
2022-05-04 04:15:06 +03:00
|
|
|
await signout();
|
|
|
|
}
|
2021-08-21 06:48:50 +03:00
|
|
|
|
2022-06-20 11:38:49 +03:00
|
|
|
const headerActions = $computed(() => []);
|
|
|
|
|
|
|
|
const headerTabs = $computed(() => []);
|
|
|
|
|
|
|
|
definePageMetadata({
|
|
|
|
title: i18n.ts._accountDelete.accountDelete,
|
2022-12-19 12:01:30 +02:00
|
|
|
icon: 'ti ti-alert-triangle',
|
2021-08-21 06:48:50 +03:00
|
|
|
});
|
|
|
|
</script>
|