2020-10-17 11:12:00 +00:00
|
|
|
<template>
|
2023-01-06 04:40:17 +00:00
|
|
|
<div class="_gaps_m">
|
2023-05-04 23:34:05 +00:00
|
|
|
<!--
|
2023-01-07 05:59:54 +00:00
|
|
|
<MkSwitch v-model="$i.injectFeaturedNote" @update:model-value="onChangeInjectFeaturedNote">
|
2023-05-04 23:34:05 +00:00
|
|
|
<template #label>{{ i18n.ts.showFeaturedNotesInTimeline }}</template>
|
2023-01-07 05:59:54 +00:00
|
|
|
</MkSwitch>
|
2023-05-04 23:34:05 +00:00
|
|
|
-->
|
2020-11-25 12:31:34 +00:00
|
|
|
|
2022-03-04 15:35:59 +00:00
|
|
|
<!--
|
2023-01-07 05:59:54 +00:00
|
|
|
<MkSwitch v-model="reportError">{{ i18n.ts.sendErrorReports }}<template #caption>{{ i18n.ts.sendErrorReportsDescription }}</template></MkSwitch>
|
2022-03-04 15:35:59 +00:00
|
|
|
-->
|
2021-01-08 12:43:56 +00:00
|
|
|
|
2023-05-04 23:34:05 +00:00
|
|
|
<div class="_gaps_s">
|
2023-05-04 23:47:02 +00:00
|
|
|
<MkFolder>
|
|
|
|
<template #icon><i class="ti ti-info-circle"></i></template>
|
|
|
|
<template #label>{{ i18n.ts.accountInfo }}</template>
|
|
|
|
|
|
|
|
<div class="_gaps_m">
|
|
|
|
<MkKeyValue>
|
|
|
|
<template #key>ID</template>
|
|
|
|
<template #value><span class="_monospace">{{ $i.id }}</span></template>
|
|
|
|
</MkKeyValue>
|
|
|
|
|
|
|
|
<MkKeyValue>
|
|
|
|
<template #key>{{ i18n.ts.registeredDate }}</template>
|
|
|
|
<template #value><MkTime :time="$i.createdAt" mode="detail"/></template>
|
|
|
|
</MkKeyValue>
|
|
|
|
|
|
|
|
<FormLink to="/settings/account-stats"><template #icon><i class="ti ti-info-circle"></i></template>{{ i18n.ts.statistics }}</FormLink>
|
|
|
|
</div>
|
|
|
|
</MkFolder>
|
|
|
|
|
2023-05-04 23:34:05 +00:00
|
|
|
<FormLink to="/registry"><template #icon><i class="ti ti-adjustments"></i></template>{{ i18n.ts.registry }}</FormLink>
|
2020-11-25 12:31:34 +00:00
|
|
|
|
2023-05-04 23:47:02 +00:00
|
|
|
<MkFolder>
|
|
|
|
<template #icon><i class="ti ti-alert-triangle"></i></template>
|
|
|
|
<template #label>{{ i18n.ts.closeAccount }}</template>
|
2022-07-16 14:11:05 +00:00
|
|
|
|
2023-05-04 23:47:02 +00:00
|
|
|
<div class="_gaps_m">
|
|
|
|
<FormInfo warn>{{ i18n.ts._accountDelete.mayTakeTime }}</FormInfo>
|
|
|
|
<FormInfo>{{ i18n.ts._accountDelete.sendEmail }}</FormInfo>
|
|
|
|
<MkButton v-if="!$i.isDeleted" danger @click="deleteAccount">{{ i18n.ts._accountDelete.requestAccountDelete }}</MkButton>
|
|
|
|
<MkButton v-else disabled>{{ i18n.ts._accountDelete.inProgress }}</MkButton>
|
|
|
|
</div>
|
|
|
|
</MkFolder>
|
|
|
|
|
|
|
|
<MkFolder>
|
|
|
|
<template #icon><i class="ti ti-flask"></i></template>
|
|
|
|
<template #label>{{ i18n.ts.experimentalFeatures }}</template>
|
|
|
|
|
|
|
|
<div class="_gaps_m">
|
|
|
|
<MkSwitch v-model="enableCondensedLineForAcct">
|
|
|
|
<template #label>Enable condensed line for acct</template>
|
|
|
|
</MkSwitch>
|
|
|
|
</div>
|
|
|
|
</MkFolder>
|
|
|
|
</div>
|
2021-12-05 03:47:57 +00:00
|
|
|
</div>
|
2020-10-17 11:12:00 +00:00
|
|
|
</template>
|
|
|
|
|
2022-05-04 01:12:08 +00:00
|
|
|
<script lang="ts" setup>
|
2023-05-04 23:34:05 +00:00
|
|
|
import { computed, watch } from 'vue';
|
2023-01-07 05:59:54 +00:00
|
|
|
import MkSwitch from '@/components/MkSwitch.vue';
|
2022-01-02 15:41:01 +00:00
|
|
|
import FormLink from '@/components/form/link.vue';
|
2023-05-04 23:34:05 +00:00
|
|
|
import MkFolder from '@/components/MkFolder.vue';
|
2023-05-04 23:47:02 +00:00
|
|
|
import FormInfo from '@/components/MkInfo.vue';
|
|
|
|
import MkKeyValue from '@/components/MkKeyValue.vue';
|
|
|
|
import MkButton from '@/components/MkButton.vue';
|
2021-11-11 17:02:25 +00:00
|
|
|
import * as os from '@/os';
|
|
|
|
import { defaultStore } from '@/store';
|
2023-05-04 23:47:02 +00:00
|
|
|
import { signout, $i } from '@/account';
|
2022-05-04 01:12:08 +00:00
|
|
|
import { i18n } from '@/i18n';
|
2022-06-20 08:38:49 +00:00
|
|
|
import { definePageMetadata } from '@/scripts/page-metadata';
|
2023-05-04 23:34:05 +00:00
|
|
|
import { unisonReload } from '@/scripts/unison-reload';
|
2022-05-04 01:12:08 +00:00
|
|
|
|
|
|
|
const reportError = computed(defaultStore.makeGetterSetter('reportError'));
|
2023-05-04 23:34:05 +00:00
|
|
|
const enableCondensedLineForAcct = computed(defaultStore.makeGetterSetter('enableCondensedLineForAcct'));
|
2022-05-04 01:12:08 +00:00
|
|
|
|
|
|
|
function onChangeInjectFeaturedNote(v) {
|
|
|
|
os.api('i/update', {
|
2022-06-20 08:38:49 +00:00
|
|
|
injectFeaturedNote: v,
|
2022-05-04 01:12:08 +00:00
|
|
|
}).then((i) => {
|
|
|
|
$i!.injectFeaturedNote = i.injectFeaturedNote;
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
2023-05-04 23:47:02 +00:00
|
|
|
async function deleteAccount() {
|
|
|
|
{
|
|
|
|
const { canceled } = await os.confirm({
|
|
|
|
type: 'warning',
|
|
|
|
text: i18n.ts.deleteAccountConfirm,
|
|
|
|
});
|
|
|
|
if (canceled) return;
|
|
|
|
}
|
|
|
|
|
|
|
|
const { canceled, result: password } = await os.inputText({
|
|
|
|
title: i18n.ts.password,
|
|
|
|
type: 'password',
|
|
|
|
});
|
|
|
|
if (canceled) return;
|
|
|
|
|
|
|
|
await os.apiWithDialog('i/delete-account', {
|
|
|
|
password: password,
|
|
|
|
});
|
|
|
|
|
|
|
|
await os.alert({
|
|
|
|
title: i18n.ts._accountDelete.started,
|
|
|
|
});
|
|
|
|
|
|
|
|
await signout();
|
|
|
|
}
|
|
|
|
|
2023-05-04 23:34:05 +00:00
|
|
|
async function reloadAsk() {
|
|
|
|
const { canceled } = await os.confirm({
|
|
|
|
type: 'info',
|
|
|
|
text: i18n.ts.reloadToApplySetting,
|
|
|
|
});
|
|
|
|
if (canceled) return;
|
|
|
|
|
|
|
|
unisonReload();
|
|
|
|
}
|
|
|
|
|
|
|
|
watch([
|
|
|
|
enableCondensedLineForAcct,
|
|
|
|
], async () => {
|
|
|
|
await reloadAsk();
|
|
|
|
});
|
|
|
|
|
2022-06-20 08:38:49 +00:00
|
|
|
const headerActions = $computed(() => []);
|
|
|
|
|
|
|
|
const headerTabs = $computed(() => []);
|
|
|
|
|
|
|
|
definePageMetadata({
|
|
|
|
title: i18n.ts.other,
|
2022-12-19 10:01:30 +00:00
|
|
|
icon: 'ti ti-dots',
|
2020-10-17 11:12:00 +00:00
|
|
|
});
|
|
|
|
</script>
|