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