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