summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndreas Nedbal <andreas.nedbal@in2code.de>2022-05-04 03:15:06 +0200
committerGitHub <noreply@github.com>2022-05-04 10:15:06 +0900
commit80355fb08ee115f7d458bcdb6bb265597032cc87 (patch)
tree89fb54558600c98680e0368d01c8f330d558f57c
parentrefactor(client): refactor settings/drive to use Composition API (#8573) (diff)
downloadmisskey-80355fb08ee115f7d458bcdb6bb265597032cc87.tar.gz
misskey-80355fb08ee115f7d458bcdb6bb265597032cc87.tar.bz2
misskey-80355fb08ee115f7d458bcdb6bb265597032cc87.zip
Refactor delete-account to use Composition API (#8572)
* refactor(client): refactor delete-account to use Composition API * Apply review suggestion from @Johann150 Co-authored-by: Johann150 <johann@qwertqwefsday.eu> Co-authored-by: Johann150 <johann@qwertqwefsday.eu>
-rw-r--r--packages/client/src/pages/settings/delete-account.vue78
1 files changed, 33 insertions, 45 deletions
diff --git a/packages/client/src/pages/settings/delete-account.vue b/packages/client/src/pages/settings/delete-account.vue
index 7edc81a309..e9f19aaf0b 100644
--- a/packages/client/src/pages/settings/delete-account.vue
+++ b/packages/client/src/pages/settings/delete-account.vue
@@ -1,64 +1,52 @@
<template>
<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>
- <FormButton v-else disabled>{{ $ts._accountDelete.inProgress }}</FormButton>
+ <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>
</template>
-<script lang="ts">
-import { defineAsyncComponent, defineComponent } from 'vue';
+<script lang="ts" setup>
+import { defineExpose } from 'vue';
import FormInfo from '@/components/ui/info.vue';
import FormButton from '@/components/ui/button.vue';
import * as os from '@/os';
import { signout } from '@/account';
import * as symbols from '@/symbols';
+import { i18n } from '@/i18n';
-export default defineComponent({
- components: {
- FormButton,
- FormInfo,
- },
-
- emits: ['info'],
-
- data() {
- return {
- [symbols.PAGE_INFO]: {
- title: this.$ts._accountDelete.accountDelete,
- icon: 'fas fa-exclamation-triangle',
- bg: 'var(--bg)',
- },
- }
- },
+async function deleteAccount() {
+ {
+ const { canceled } = await os.confirm({
+ type: 'warning',
+ text: i18n.ts.deleteAccountConfirm,
+ });
+ if (canceled) return;
+ }
- 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: i18n.ts.password,
+ type: 'password'
+ });
+ 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.apiWithDialog('i/delete-account', {
- password: password
- });
+ await os.alert({
+ title: i18n.ts._accountDelete.started,
+ });
- await os.alert({
- title: this.$ts._accountDelete.started,
- });
+ await signout();
+}
- signout();
- }
+defineExpose({
+ [symbols.PAGE_INFO]: {
+ title: i18n.ts._accountDelete.accountDelete,
+ icon: 'fas fa-exclamation-triangle',
+ bg: 'var(--bg)',
}
});
</script>