2021-08-21 05:48:50 +02:00
|
|
|
<template>
|
2023-04-08 02:01:42 +02:00
|
|
|
<div class="_formRoot">
|
|
|
|
<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>
|
|
|
|
</div>
|
2021-08-21 05:48:50 +02:00
|
|
|
</template>
|
|
|
|
|
2022-05-04 03:15:06 +02:00
|
|
|
<script lang="ts" setup>
|
2023-04-08 02:01:42 +02:00
|
|
|
import FormInfo from "@/components/MkInfo.vue";
|
|
|
|
import FormButton from "@/components/MkButton.vue";
|
|
|
|
import * as os from "@/os";
|
|
|
|
import { signout } from "@/account";
|
|
|
|
import { i18n } from "@/i18n";
|
|
|
|
import { definePageMetadata } from "@/scripts/page-metadata";
|
2022-05-04 03:15:06 +02:00
|
|
|
|
|
|
|
async function deleteAccount() {
|
|
|
|
{
|
|
|
|
const { canceled } = await os.confirm({
|
2023-04-08 02:01:42 +02:00
|
|
|
type: "warning",
|
2022-05-04 03:15:06 +02:00
|
|
|
text: i18n.ts.deleteAccountConfirm,
|
|
|
|
});
|
|
|
|
if (canceled) return;
|
|
|
|
}
|
2021-08-21 05:48:50 +02:00
|
|
|
|
2022-05-04 03:15:06 +02:00
|
|
|
const { canceled, result: password } = await os.inputText({
|
|
|
|
title: i18n.ts.password,
|
2023-04-08 02:01:42 +02:00
|
|
|
type: "password",
|
2022-05-04 03:15:06 +02:00
|
|
|
});
|
|
|
|
if (canceled) return;
|
2021-11-14 05:27:46 +01:00
|
|
|
|
2023-04-08 02:01:42 +02:00
|
|
|
await os.apiWithDialog("i/delete-account", {
|
2022-06-20 10:38:49 +02:00
|
|
|
password: password,
|
2022-05-04 03:15:06 +02:00
|
|
|
});
|
2021-08-21 05:48:50 +02:00
|
|
|
|
2022-05-04 03:15:06 +02:00
|
|
|
await os.alert({
|
|
|
|
title: i18n.ts._accountDelete.started,
|
|
|
|
});
|
2021-08-21 05:48:50 +02:00
|
|
|
|
2022-05-04 03:15:06 +02:00
|
|
|
await signout();
|
|
|
|
}
|
2021-08-21 05:48:50 +02:00
|
|
|
|
2022-06-20 10:38:49 +02:00
|
|
|
const headerActions = $computed(() => []);
|
|
|
|
|
|
|
|
const headerTabs = $computed(() => []);
|
|
|
|
|
|
|
|
definePageMetadata({
|
|
|
|
title: i18n.ts._accountDelete.accountDelete,
|
2023-04-08 02:01:42 +02:00
|
|
|
icon: "ph-warning ph-bold ph-lg",
|
2021-08-21 05:48:50 +02:00
|
|
|
});
|
|
|
|
</script>
|