Sharkey/packages/client/src/pages/settings/delete-account.vue

65 lines
1.5 KiB
Vue
Raw Normal View History

<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>
</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';
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)',
},
}
},
methods: {
async deleteAccount() {
{
const { canceled } = await os.confirm({
type: 'warning',
text: this.$ts.deleteAccountConfirm,
});
if (canceled) return;
}
const { canceled, result: password } = await os.inputText({
title: this.$ts.password,
type: 'password'
});
if (canceled) return;
await os.apiWithDialog('i/delete-account', {
password: password
});
await os.alert({
title: this.$ts._accountDelete.started,
});
signout();
}
}
});
</script>