2020-10-17 14:12:00 +03:00
|
|
|
<template>
|
2022-06-20 11:38:49 +03:00
|
|
|
<MkStickyContainer>
|
|
|
|
<template #header><MkPageHeader :actions="headerActions" :tabs="headerTabs"/></template>
|
|
|
|
<MkSpacer :content-max="900" :margin-min="20" :margin-max="32">
|
|
|
|
<div ref="el" class="vvcocwet" :class="{ wide: !narrow }">
|
|
|
|
<div class="body">
|
2022-07-20 13:59:27 +03:00
|
|
|
<div v-if="!narrow || currentPage?.route.name == null" class="nav">
|
2022-06-20 11:38:49 +03:00
|
|
|
<div class="baaadecd">
|
2022-07-20 16:24:26 +03:00
|
|
|
<MkInfo v-if="emailNotConfigured" warn class="info">{{ i18n.ts.emailNotConfiguredWarning }} <MkA to="/settings/email" class="_link">{{ i18n.ts.configure }}</MkA></MkInfo>
|
2023-03-19 13:28:19 +02:00
|
|
|
<MkSuperMenu :def="menuDef" :grid="narrow"></MkSuperMenu>
|
2022-06-20 11:38:49 +03:00
|
|
|
</div>
|
2021-12-10 04:56:23 +02:00
|
|
|
</div>
|
2022-07-20 13:59:27 +03:00
|
|
|
<div v-if="!(narrow && currentPage?.route.name == null)" class="main">
|
2022-12-28 11:02:11 +02:00
|
|
|
<div class="bkzroven" style="container-type: inline-size;">
|
2022-07-20 13:59:27 +03:00
|
|
|
<RouterView/>
|
2022-06-20 11:38:49 +03:00
|
|
|
</div>
|
2021-12-10 04:56:23 +02:00
|
|
|
</div>
|
2021-11-28 13:07:37 +02:00
|
|
|
</div>
|
2021-12-10 04:56:23 +02:00
|
|
|
</div>
|
2022-06-20 11:38:49 +03:00
|
|
|
</MkSpacer>
|
|
|
|
</mkstickycontainer>
|
2020-10-17 14:12:00 +03:00
|
|
|
</template>
|
|
|
|
|
2022-03-06 12:17:43 +02:00
|
|
|
<script setup lang="ts">
|
2023-02-16 16:09:41 +02:00
|
|
|
import { computed, onActivated, onMounted, onUnmounted, ref, shallowRef, watch } from 'vue';
|
2021-11-11 19:02:25 +02:00
|
|
|
import { i18n } from '@/i18n';
|
2022-09-06 12:21:49 +03:00
|
|
|
import MkInfo from '@/components/MkInfo.vue';
|
|
|
|
import MkSuperMenu from '@/components/MkSuperMenu.vue';
|
2022-12-12 12:27:47 +02:00
|
|
|
import { signout, $i } from '@/account';
|
2021-11-11 19:02:25 +02:00
|
|
|
import { unisonReload } from '@/scripts/unison-reload';
|
|
|
|
import { instance } from '@/instance';
|
2022-06-20 11:38:49 +03:00
|
|
|
import { useRouter } from '@/router';
|
2023-02-16 16:09:41 +02:00
|
|
|
import { definePageMetadata, provideMetadataReceiver } from '@/scripts/page-metadata';
|
2022-06-30 09:09:10 +03:00
|
|
|
import * as os from '@/os';
|
2023-01-07 03:13:02 +02:00
|
|
|
import { miLocalStorage } from '@/local-storage';
|
2023-01-27 04:28:51 +02:00
|
|
|
import { fetchCustomEmojis } from '@/custom-emojis';
|
2020-10-17 14:12:00 +03:00
|
|
|
|
2022-03-06 12:17:43 +02:00
|
|
|
const indexInfo = {
|
|
|
|
title: i18n.ts.settings,
|
2022-12-19 12:01:30 +02:00
|
|
|
icon: 'ti ti-settings',
|
2022-03-06 12:17:43 +02:00
|
|
|
hideHeader: true,
|
|
|
|
};
|
|
|
|
const INFO = ref(indexInfo);
|
2023-01-03 03:12:37 +02:00
|
|
|
const el = shallowRef<HTMLElement | null>(null);
|
2022-03-06 12:17:43 +02:00
|
|
|
const childInfo = ref(null);
|
2022-04-23 13:17:15 +03:00
|
|
|
|
2022-06-20 11:38:49 +03:00
|
|
|
const router = useRouter();
|
2022-04-23 13:17:15 +03:00
|
|
|
|
2022-07-20 13:59:27 +03:00
|
|
|
let narrow = $ref(false);
|
2022-04-23 13:17:15 +03:00
|
|
|
const NARROW_THRESHOLD = 600;
|
|
|
|
|
2022-07-20 13:59:27 +03:00
|
|
|
let currentPage = $computed(() => router.currentRef.value.child);
|
|
|
|
|
2022-04-23 13:17:15 +03:00
|
|
|
const ro = new ResizeObserver((entries, observer) => {
|
|
|
|
if (entries.length === 0) return;
|
2022-07-20 13:59:27 +03:00
|
|
|
narrow = entries[0].borderBoxSize[0].inlineSize < NARROW_THRESHOLD;
|
2022-04-23 13:17:15 +03:00
|
|
|
});
|
|
|
|
|
2022-03-06 12:17:43 +02:00
|
|
|
const menuDef = computed(() => [{
|
|
|
|
title: i18n.ts.basicSettings,
|
|
|
|
items: [{
|
2022-12-19 12:01:30 +02:00
|
|
|
icon: 'ti ti-user',
|
2022-03-06 12:17:43 +02:00
|
|
|
text: i18n.ts.profile,
|
|
|
|
to: '/settings/profile',
|
2022-07-20 13:59:27 +03:00
|
|
|
active: currentPage?.route.name === 'profile',
|
2022-03-06 12:17:43 +02:00
|
|
|
}, {
|
2022-12-19 12:01:30 +02:00
|
|
|
icon: 'ti ti-lock-open',
|
2022-03-06 12:17:43 +02:00
|
|
|
text: i18n.ts.privacy,
|
|
|
|
to: '/settings/privacy',
|
2022-07-20 13:59:27 +03:00
|
|
|
active: currentPage?.route.name === 'privacy',
|
2022-03-06 12:17:43 +02:00
|
|
|
}, {
|
2022-12-19 12:01:30 +02:00
|
|
|
icon: 'ti ti-mood-happy',
|
2022-03-06 12:17:43 +02:00
|
|
|
text: i18n.ts.reaction,
|
|
|
|
to: '/settings/reaction',
|
2022-07-20 13:59:27 +03:00
|
|
|
active: currentPage?.route.name === 'reaction',
|
2022-03-06 12:17:43 +02:00
|
|
|
}, {
|
2022-12-19 12:01:30 +02:00
|
|
|
icon: 'ti ti-cloud',
|
2022-03-06 12:17:43 +02:00
|
|
|
text: i18n.ts.drive,
|
|
|
|
to: '/settings/drive',
|
2022-07-20 13:59:27 +03:00
|
|
|
active: currentPage?.route.name === 'drive',
|
2022-03-06 12:17:43 +02:00
|
|
|
}, {
|
2022-12-19 12:01:30 +02:00
|
|
|
icon: 'ti ti-bell',
|
2022-03-06 12:17:43 +02:00
|
|
|
text: i18n.ts.notifications,
|
|
|
|
to: '/settings/notifications',
|
2022-07-20 13:59:27 +03:00
|
|
|
active: currentPage?.route.name === 'notifications',
|
2022-03-06 12:17:43 +02:00
|
|
|
}, {
|
2022-12-19 12:01:30 +02:00
|
|
|
icon: 'ti ti-mail',
|
2022-03-06 12:17:43 +02:00
|
|
|
text: i18n.ts.email,
|
|
|
|
to: '/settings/email',
|
2022-07-20 13:59:27 +03:00
|
|
|
active: currentPage?.route.name === 'email',
|
2022-03-06 12:17:43 +02:00
|
|
|
}, {
|
2022-12-19 12:01:30 +02:00
|
|
|
icon: 'ti ti-lock',
|
2022-03-06 12:17:43 +02:00
|
|
|
text: i18n.ts.security,
|
|
|
|
to: '/settings/security',
|
2022-07-20 13:59:27 +03:00
|
|
|
active: currentPage?.route.name === 'security',
|
2022-03-06 12:17:43 +02:00
|
|
|
}],
|
|
|
|
}, {
|
|
|
|
title: i18n.ts.clientSettings,
|
|
|
|
items: [{
|
2022-12-19 12:01:30 +02:00
|
|
|
icon: 'ti ti-adjustments',
|
2022-03-06 12:17:43 +02:00
|
|
|
text: i18n.ts.general,
|
|
|
|
to: '/settings/general',
|
2022-07-20 13:59:27 +03:00
|
|
|
active: currentPage?.route.name === 'general',
|
2022-03-06 12:17:43 +02:00
|
|
|
}, {
|
2022-12-19 12:01:30 +02:00
|
|
|
icon: 'ti ti-palette',
|
2022-03-06 12:17:43 +02:00
|
|
|
text: i18n.ts.theme,
|
|
|
|
to: '/settings/theme',
|
2022-07-20 13:59:27 +03:00
|
|
|
active: currentPage?.route.name === 'theme',
|
2022-07-03 08:40:02 +03:00
|
|
|
}, {
|
2022-12-19 12:01:30 +02:00
|
|
|
icon: 'ti ti-menu-2',
|
2022-07-14 11:42:12 +03:00
|
|
|
text: i18n.ts.navbar,
|
|
|
|
to: '/settings/navbar',
|
2022-07-20 13:59:27 +03:00
|
|
|
active: currentPage?.route.name === 'navbar',
|
2022-07-14 11:42:12 +03:00
|
|
|
}, {
|
2022-12-19 12:01:30 +02:00
|
|
|
icon: 'ti ti-equal-double',
|
2022-07-03 08:40:02 +03:00
|
|
|
text: i18n.ts.statusbar,
|
2022-07-20 13:59:27 +03:00
|
|
|
to: '/settings/statusbar',
|
|
|
|
active: currentPage?.route.name === 'statusbar',
|
2022-03-06 12:17:43 +02:00
|
|
|
}, {
|
2022-12-19 12:01:30 +02:00
|
|
|
icon: 'ti ti-music',
|
2022-03-06 12:17:43 +02:00
|
|
|
text: i18n.ts.sounds,
|
|
|
|
to: '/settings/sounds',
|
2022-07-20 13:59:27 +03:00
|
|
|
active: currentPage?.route.name === 'sounds',
|
2022-03-06 12:17:43 +02:00
|
|
|
}, {
|
2022-12-19 12:01:30 +02:00
|
|
|
icon: 'ti ti-plug',
|
2022-03-06 12:17:43 +02:00
|
|
|
text: i18n.ts.plugins,
|
|
|
|
to: '/settings/plugin',
|
2022-07-20 13:59:27 +03:00
|
|
|
active: currentPage?.route.name === 'plugin',
|
2022-03-06 12:17:43 +02:00
|
|
|
}],
|
|
|
|
}, {
|
|
|
|
title: i18n.ts.otherSettings,
|
|
|
|
items: [{
|
2022-12-19 12:01:30 +02:00
|
|
|
icon: 'ti ti-package',
|
2022-03-06 12:17:43 +02:00
|
|
|
text: i18n.ts.importAndExport,
|
|
|
|
to: '/settings/import-export',
|
2022-07-20 13:59:27 +03:00
|
|
|
active: currentPage?.route.name === 'import-export',
|
2023-03-12 09:39:16 +02:00
|
|
|
}, {
|
|
|
|
icon: 'ti ti-badges',
|
|
|
|
text: i18n.ts.roles,
|
|
|
|
to: '/settings/roles',
|
|
|
|
active: currentPage?.route.name === 'roles',
|
2022-03-06 12:17:43 +02:00
|
|
|
}, {
|
2022-12-19 12:01:30 +02:00
|
|
|
icon: 'ti ti-planet-off',
|
2022-03-06 12:17:43 +02:00
|
|
|
text: i18n.ts.instanceMute,
|
|
|
|
to: '/settings/instance-mute',
|
2022-07-20 13:59:27 +03:00
|
|
|
active: currentPage?.route.name === 'instance-mute',
|
2022-03-06 12:17:43 +02:00
|
|
|
}, {
|
2022-12-19 12:01:30 +02:00
|
|
|
icon: 'ti ti-ban',
|
2022-03-06 12:17:43 +02:00
|
|
|
text: i18n.ts.muteAndBlock,
|
|
|
|
to: '/settings/mute-block',
|
2022-07-20 13:59:27 +03:00
|
|
|
active: currentPage?.route.name === 'mute-block',
|
2022-03-06 12:17:43 +02:00
|
|
|
}, {
|
2022-12-19 12:01:30 +02:00
|
|
|
icon: 'ti ti-message-off',
|
2022-03-06 12:17:43 +02:00
|
|
|
text: i18n.ts.wordMute,
|
|
|
|
to: '/settings/word-mute',
|
2022-07-20 13:59:27 +03:00
|
|
|
active: currentPage?.route.name === 'word-mute',
|
2022-03-06 12:17:43 +02:00
|
|
|
}, {
|
2022-12-19 12:01:30 +02:00
|
|
|
icon: 'ti ti-api',
|
2022-03-06 12:17:43 +02:00
|
|
|
text: 'API',
|
|
|
|
to: '/settings/api',
|
2022-07-20 13:59:27 +03:00
|
|
|
active: currentPage?.route.name === 'api',
|
2022-04-02 09:28:49 +03:00
|
|
|
}, {
|
2022-12-19 12:01:30 +02:00
|
|
|
icon: 'ti ti-webhook',
|
2022-04-02 09:28:49 +03:00
|
|
|
text: 'Webhook',
|
|
|
|
to: '/settings/webhook',
|
2022-07-20 13:59:27 +03:00
|
|
|
active: currentPage?.route.name === 'webhook',
|
2022-03-06 12:17:43 +02:00
|
|
|
}, {
|
2022-12-19 12:01:30 +02:00
|
|
|
icon: 'ti ti-dots',
|
2022-03-06 12:17:43 +02:00
|
|
|
text: i18n.ts.other,
|
|
|
|
to: '/settings/other',
|
2022-07-20 13:59:27 +03:00
|
|
|
active: currentPage?.route.name === 'other',
|
2022-03-06 12:17:43 +02:00
|
|
|
}],
|
|
|
|
}, {
|
|
|
|
items: [{
|
2022-12-19 12:01:30 +02:00
|
|
|
icon: 'ti ti-device-floppy',
|
2022-07-31 15:55:20 +03:00
|
|
|
text: i18n.ts.preferencesBackups,
|
|
|
|
to: '/settings/preferences-backups',
|
|
|
|
active: currentPage?.route.name === 'preferences-backups',
|
|
|
|
}, {
|
2022-03-06 12:17:43 +02:00
|
|
|
type: 'button',
|
2022-12-19 12:01:30 +02:00
|
|
|
icon: 'ti ti-trash',
|
2022-03-06 12:17:43 +02:00
|
|
|
text: i18n.ts.clearCache,
|
2023-01-27 04:28:51 +02:00
|
|
|
action: async () => {
|
|
|
|
os.waiting();
|
2023-01-07 03:13:02 +02:00
|
|
|
miLocalStorage.removeItem('locale');
|
|
|
|
miLocalStorage.removeItem('theme');
|
2023-01-09 08:50:25 +02:00
|
|
|
miLocalStorage.removeItem('emojis');
|
|
|
|
miLocalStorage.removeItem('lastEmojisFetchedAt');
|
2023-02-23 12:29:20 +02:00
|
|
|
await fetchCustomEmojis(true);
|
2022-03-06 12:17:43 +02:00
|
|
|
unisonReload();
|
|
|
|
},
|
|
|
|
}, {
|
|
|
|
type: 'button',
|
2022-12-21 01:39:28 +02:00
|
|
|
icon: 'ti ti-power',
|
2022-03-06 12:17:43 +02:00
|
|
|
text: i18n.ts.logout,
|
2022-06-30 09:09:10 +03:00
|
|
|
action: async () => {
|
|
|
|
const { canceled } = await os.confirm({
|
|
|
|
type: 'warning',
|
|
|
|
text: i18n.ts.logoutConfirm,
|
|
|
|
});
|
|
|
|
if (canceled) return;
|
2022-03-06 12:17:43 +02:00
|
|
|
signout();
|
|
|
|
},
|
|
|
|
danger: true,
|
2022-06-20 11:38:49 +03:00
|
|
|
}],
|
2022-03-06 12:17:43 +02:00
|
|
|
}]);
|
2021-10-09 06:33:08 +03:00
|
|
|
|
2022-07-20 13:59:27 +03:00
|
|
|
watch($$(narrow), () => {
|
2022-03-06 12:17:43 +02:00
|
|
|
});
|
2020-10-17 14:12:00 +03:00
|
|
|
|
2022-07-20 13:59:27 +03:00
|
|
|
onMounted(() => {
|
|
|
|
ro.observe(el.value);
|
2021-01-11 13:38:34 +02:00
|
|
|
|
2022-07-20 13:59:27 +03:00
|
|
|
narrow = el.value.offsetWidth < NARROW_THRESHOLD;
|
2020-11-25 14:31:34 +02:00
|
|
|
|
2022-07-20 13:59:27 +03:00
|
|
|
if (!narrow && currentPage?.route.name == null) {
|
|
|
|
router.replace('/settings/profile');
|
2022-04-23 13:17:15 +03:00
|
|
|
}
|
|
|
|
});
|
|
|
|
|
2022-07-20 13:59:27 +03:00
|
|
|
onActivated(() => {
|
|
|
|
narrow = el.value.offsetWidth < NARROW_THRESHOLD;
|
2022-04-23 13:17:15 +03:00
|
|
|
|
2022-07-20 13:59:27 +03:00
|
|
|
if (!narrow && currentPage?.route.name == null) {
|
|
|
|
router.replace('/settings/profile');
|
2022-03-06 12:17:43 +02:00
|
|
|
}
|
|
|
|
});
|
2020-10-17 14:12:00 +03:00
|
|
|
|
2022-04-23 13:17:15 +03:00
|
|
|
onUnmounted(() => {
|
|
|
|
ro.disconnect();
|
|
|
|
});
|
|
|
|
|
2023-03-19 13:28:19 +02:00
|
|
|
watch(router.currentRef, (to) => {
|
|
|
|
if (to.route.name === "settings" && to.child?.route.name == null && !narrow) {
|
|
|
|
router.replace('/settings/profile');
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
2022-03-06 12:17:43 +02:00
|
|
|
const emailNotConfigured = computed(() => instance.enableEmail && ($i.email == null || !$i.emailVerified));
|
2021-05-04 11:09:57 +03:00
|
|
|
|
2022-06-20 11:38:49 +03:00
|
|
|
provideMetadataReceiver((info) => {
|
|
|
|
if (info == null) {
|
2022-04-23 13:17:15 +03:00
|
|
|
childInfo.value = null;
|
|
|
|
} else {
|
2022-06-20 11:38:49 +03:00
|
|
|
childInfo.value = info;
|
2022-04-23 13:17:15 +03:00
|
|
|
}
|
2020-10-17 14:12:00 +03:00
|
|
|
});
|
|
|
|
|
2022-06-20 11:38:49 +03:00
|
|
|
const headerActions = $computed(() => []);
|
2021-10-02 17:11:21 +03:00
|
|
|
|
2022-06-20 11:38:49 +03:00
|
|
|
const headerTabs = $computed(() => []);
|
2021-10-01 18:51:37 +03:00
|
|
|
|
2022-06-20 11:38:49 +03:00
|
|
|
definePageMetadata(INFO);
|
2022-07-14 11:42:12 +03:00
|
|
|
// w 890
|
|
|
|
// h 700
|
2022-06-20 11:38:49 +03:00
|
|
|
</script>
|
2021-11-28 13:07:37 +02:00
|
|
|
|
2022-12-27 11:29:39 +02:00
|
|
|
<style lang="scss" scoped>
|
2022-06-20 11:38:49 +03:00
|
|
|
.vvcocwet {
|
2021-12-10 04:56:23 +02:00
|
|
|
> .body {
|
2020-10-17 14:12:00 +03:00
|
|
|
> .nav {
|
2021-10-24 14:16:55 +03:00
|
|
|
.baaadecd {
|
2021-12-10 04:56:23 +02:00
|
|
|
> .info {
|
|
|
|
margin: 16px 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
> .accounts {
|
|
|
|
> .avatar {
|
|
|
|
display: block;
|
|
|
|
width: 50px;
|
|
|
|
height: 50px;
|
|
|
|
margin: 8px auto 16px auto;
|
|
|
|
}
|
2021-10-24 14:16:55 +03:00
|
|
|
}
|
2021-10-16 09:00:55 +03:00
|
|
|
}
|
2020-10-17 14:12:00 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
> .main {
|
2021-11-28 13:07:37 +02:00
|
|
|
.bkzroven {
|
2021-12-10 04:56:23 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
&.wide {
|
|
|
|
> .body {
|
|
|
|
display: flex;
|
|
|
|
height: 100%;
|
|
|
|
|
|
|
|
> .nav {
|
|
|
|
width: 34%;
|
|
|
|
padding-right: 32px;
|
|
|
|
box-sizing: border-box;
|
|
|
|
}
|
|
|
|
|
|
|
|
> .main {
|
|
|
|
flex: 1;
|
|
|
|
min-width: 0;
|
2021-11-28 13:07:37 +02:00
|
|
|
}
|
2020-10-17 14:12:00 +03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
</style>
|