summaryrefslogtreecommitdiff
path: root/packages/client/src/pages/settings/delete-account.vue
blob: 018f7c795ea7263da800896e11ff5e525c181f20 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
<template>
<FormBase>
	<FormInfo warn>{{ $ts._accountDelete.mayTakeTime }}</FormInfo>
	<FormInfo>{{ $ts._accountDelete.sendEmail }}</FormInfo>
	<FormButton @click="deleteAccount" danger v-if="!$i.isDeleted">{{ $ts._accountDelete.requestAccountDelete }}</FormButton>
	<FormButton disabled v-else>{{ $ts._accountDelete.inProgress }}</FormButton>
</FormBase>
</template>

<script lang="ts">
import { defineAsyncComponent, defineComponent } from 'vue';
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';

export default defineComponent({
	components: {
		FormBase,
		FormButton,
		FormGroup,
		FormInfo,
	},

	emits: ['info'],
	
	data() {
		return {
			[symbols.PAGE_INFO]: {
				title: this.$ts._accountDelete.accountDelete,
				icon: 'fas fa-exclamation-triangle',
				bg: 'var(--bg)',
			},
			debug,
		}
	},

	mounted() {
		this.$emit('info', this[symbols.PAGE_INFO]);
	},

	methods: {
		async deleteAccount() {
			const { canceled, result: password } = await os.dialog({
				title: this.$ts.password,
				input: {
					type: 'password'
				}
			});
			if (canceled) return;

			await os.apiWithDialog('i/delete-account', {
				password: password
			});

			await os.dialog({
				title: this.$ts._accountDelete.started,
			});

			signout();
		}
	}
});
</script>