2020-10-17 06:12:00 -05:00
|
|
|
<template>
|
|
|
|
<div class="vvcocwet" :class="{ wide: !narrow }" ref="el">
|
2021-04-11 07:09:35 -05:00
|
|
|
<div class="nav" v-if="!narrow || page == null">
|
2021-10-10 01:19:16 -05:00
|
|
|
<div class="title">{{ $ts.settings }}</div>
|
2021-10-02 22:25:59 -05:00
|
|
|
<MkInfo v-if="emailNotConfigured" warn class="info">{{ $ts.emailNotConfiguredWarning }} <MkA to="/settings/email" class="_link">{{ $ts.configure }}</MkA></MkInfo>
|
2021-10-10 01:19:16 -05:00
|
|
|
<MkSuperMenu :def="menuDef" :grid="page == null"></MkSuperMenu>
|
2021-04-11 07:09:35 -05:00
|
|
|
</div>
|
2020-10-17 06:12:00 -05:00
|
|
|
<div class="main">
|
2021-10-08 22:33:08 -05:00
|
|
|
<component :is="component" :key="page" v-bind="pageProps"/>
|
2020-10-17 06:12:00 -05:00
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</template>
|
|
|
|
|
|
|
|
<script lang="ts">
|
2021-01-11 05:38:34 -06:00
|
|
|
import { computed, defineAsyncComponent, defineComponent, nextTick, onMounted, reactive, ref, watch } from 'vue';
|
2021-03-23 03:30:14 -05:00
|
|
|
import { i18n } from '@client/i18n';
|
2021-10-01 10:51:37 -05:00
|
|
|
import MkInfo from '@client/components/ui/info.vue';
|
2021-10-10 01:19:16 -05:00
|
|
|
import MkSuperMenu from '@client/components/ui/super-menu.vue';
|
2021-03-23 03:30:14 -05:00
|
|
|
import { scroll } from '@client/scripts/scroll';
|
|
|
|
import { signout } from '@client/account';
|
|
|
|
import { unisonReload } from '@client/scripts/unison-reload';
|
2021-04-09 22:54:12 -05:00
|
|
|
import * as symbols from '@client/symbols';
|
2021-05-04 03:09:57 -05:00
|
|
|
import { instance } from '@client/instance';
|
|
|
|
import { $i } from '@client/account';
|
2020-10-17 06:12:00 -05:00
|
|
|
|
|
|
|
export default defineComponent({
|
2020-11-25 06:31:34 -06:00
|
|
|
components: {
|
2021-10-01 10:51:37 -05:00
|
|
|
MkInfo,
|
2021-10-10 01:19:16 -05:00
|
|
|
MkSuperMenu,
|
2020-11-25 06:31:34 -06:00
|
|
|
},
|
|
|
|
|
2020-10-24 11:21:41 -05:00
|
|
|
props: {
|
2021-04-11 07:09:35 -05:00
|
|
|
initialPage: {
|
2020-10-24 11:21:41 -05:00
|
|
|
type: String,
|
|
|
|
required: false
|
|
|
|
}
|
|
|
|
},
|
|
|
|
|
2020-10-17 06:12:00 -05:00
|
|
|
setup(props, context) {
|
2021-04-11 09:49:13 -05:00
|
|
|
const indexInfo = {
|
2021-10-10 01:19:16 -05:00
|
|
|
title: i18n.locale.controllPanel,
|
2021-09-17 08:39:15 -05:00
|
|
|
icon: 'fas fa-cog',
|
|
|
|
bg: 'var(--bg)',
|
2021-04-11 09:49:13 -05:00
|
|
|
};
|
|
|
|
const INFO = ref(indexInfo);
|
2021-04-11 07:09:35 -05:00
|
|
|
const page = ref(props.initialPage);
|
2020-10-17 06:12:00 -05:00
|
|
|
const narrow = ref(false);
|
|
|
|
const view = ref(null);
|
|
|
|
const el = ref(null);
|
2021-10-10 01:19:16 -05:00
|
|
|
const menuDef = computed(() => [{
|
|
|
|
title: i18n.locale.basicSettings,
|
|
|
|
items: [{
|
|
|
|
icon: 'fas fa-user',
|
|
|
|
text: i18n.locale.profile,
|
|
|
|
to: '/settings/profile',
|
|
|
|
active: page.value === 'profile',
|
|
|
|
}, {
|
|
|
|
icon: 'fas fa-lock-open',
|
|
|
|
text: i18n.locale.privacy,
|
|
|
|
to: '/settings/privacy',
|
|
|
|
active: page.value === 'privacy',
|
|
|
|
}, {
|
|
|
|
icon: 'fas fa-laugh',
|
|
|
|
text: i18n.locale.reaction,
|
|
|
|
to: '/settings/reaction',
|
|
|
|
active: page.value === 'reaction',
|
|
|
|
}, {
|
|
|
|
icon: 'fas fa-cloud',
|
|
|
|
text: i18n.locale.drive,
|
|
|
|
to: '/settings/drive',
|
|
|
|
active: page.value === 'drive',
|
|
|
|
}, {
|
|
|
|
icon: 'fas fa-bell',
|
|
|
|
text: i18n.locale.notifications,
|
|
|
|
to: '/settings/notifications',
|
|
|
|
active: page.value === 'notifications',
|
|
|
|
}, {
|
|
|
|
icon: 'fas fa-envelope',
|
|
|
|
text: i18n.locale.email,
|
|
|
|
to: '/settings/email',
|
|
|
|
active: page.value === 'email',
|
|
|
|
}, {
|
|
|
|
icon: 'fas fa-share-alt',
|
|
|
|
text: i18n.locale.integration,
|
|
|
|
to: '/settings/integration',
|
|
|
|
active: page.value === 'integration',
|
|
|
|
}, {
|
|
|
|
icon: 'fas fa-lock',
|
|
|
|
text: i18n.locale.security,
|
|
|
|
to: '/settings/security',
|
|
|
|
active: page.value === 'security',
|
|
|
|
}],
|
|
|
|
}, {
|
|
|
|
title: i18n.locale.clientSettings,
|
|
|
|
items: [{
|
|
|
|
icon: 'fas fa-cogs',
|
|
|
|
text: i18n.locale.general,
|
|
|
|
to: '/settings/general',
|
|
|
|
active: page.value === 'general',
|
|
|
|
}, {
|
|
|
|
icon: 'fas fa-palette',
|
|
|
|
text: i18n.locale.theme,
|
|
|
|
to: '/settings/theme',
|
|
|
|
active: page.value === 'theme',
|
|
|
|
}, {
|
|
|
|
icon: 'fas fa-list-ul',
|
|
|
|
text: i18n.locale.menu,
|
|
|
|
to: '/settings/menu',
|
|
|
|
active: page.value === 'menu',
|
|
|
|
}, {
|
|
|
|
icon: 'fas fa-music',
|
|
|
|
text: i18n.locale.sounds,
|
|
|
|
to: '/settings/sounds',
|
|
|
|
active: page.value === 'sounds',
|
|
|
|
}, {
|
|
|
|
icon: 'fas fa-plug',
|
|
|
|
text: i18n.locale.plugins,
|
|
|
|
to: '/settings/plugin',
|
|
|
|
active: page.value === 'plugin',
|
|
|
|
}],
|
|
|
|
}, {
|
|
|
|
title: i18n.locale.otherSettings,
|
|
|
|
items: [{
|
|
|
|
icon: 'fas fa-boxes',
|
|
|
|
text: i18n.locale.importAndExport,
|
|
|
|
to: '/settings/import-export',
|
|
|
|
active: page.value === 'import-export',
|
|
|
|
}, {
|
|
|
|
icon: 'fas fa-ban',
|
|
|
|
text: i18n.locale.muteAndBlock,
|
|
|
|
to: '/settings/mute-block',
|
|
|
|
active: page.value === 'mute-block',
|
|
|
|
}, {
|
|
|
|
icon: 'fas fa-comment-slash',
|
|
|
|
text: i18n.locale.wordMute,
|
|
|
|
to: '/settings/word-mute',
|
|
|
|
active: page.value === 'word-mute',
|
|
|
|
}, {
|
|
|
|
icon: 'fas fa-key',
|
|
|
|
text: 'API',
|
|
|
|
to: '/settings/api',
|
|
|
|
active: page.value === 'api',
|
|
|
|
}, {
|
|
|
|
icon: 'fas fa-ellipsis-h',
|
|
|
|
text: i18n.locale.other,
|
|
|
|
to: '/settings/other',
|
|
|
|
active: page.value === 'other',
|
|
|
|
}],
|
|
|
|
}, {
|
|
|
|
items: [{
|
|
|
|
type: 'button',
|
|
|
|
icon: 'fas fa-trash',
|
|
|
|
text: i18n.locale.clearCache,
|
|
|
|
action: () => {
|
|
|
|
localStorage.removeItem('locale');
|
|
|
|
localStorage.removeItem('theme');
|
|
|
|
unisonReload();
|
|
|
|
},
|
|
|
|
}, {
|
|
|
|
type: 'button',
|
|
|
|
icon: 'fas fa-sign-in-alt fa-flip-horizontal',
|
|
|
|
text: i18n.locale.logout,
|
|
|
|
action: () => {
|
|
|
|
signout();
|
|
|
|
},
|
|
|
|
danger: true,
|
|
|
|
},],
|
|
|
|
}]);
|
2021-10-08 22:33:08 -05:00
|
|
|
|
2021-01-11 05:38:34 -06:00
|
|
|
const pageProps = ref({});
|
2020-10-24 11:21:41 -05:00
|
|
|
const component = computed(() => {
|
2021-04-11 07:09:35 -05:00
|
|
|
if (page.value == null) return null;
|
|
|
|
switch (page.value) {
|
2021-04-22 23:01:52 -05:00
|
|
|
case 'accounts': return defineAsyncComponent(() => import('./accounts.vue'));
|
2020-10-24 11:21:41 -05:00
|
|
|
case 'profile': return defineAsyncComponent(() => import('./profile.vue'));
|
|
|
|
case 'privacy': return defineAsyncComponent(() => import('./privacy.vue'));
|
|
|
|
case 'reaction': return defineAsyncComponent(() => import('./reaction.vue'));
|
2021-01-23 03:14:57 -06:00
|
|
|
case 'drive': return defineAsyncComponent(() => import('./drive.vue'));
|
2020-10-24 11:21:41 -05:00
|
|
|
case 'notifications': return defineAsyncComponent(() => import('./notifications.vue'));
|
|
|
|
case 'mute-block': return defineAsyncComponent(() => import('./mute-block.vue'));
|
|
|
|
case 'word-mute': return defineAsyncComponent(() => import('./word-mute.vue'));
|
|
|
|
case 'integration': return defineAsyncComponent(() => import('./integration.vue'));
|
|
|
|
case 'security': return defineAsyncComponent(() => import('./security.vue'));
|
2020-11-25 06:31:34 -06:00
|
|
|
case '2fa': return defineAsyncComponent(() => import('./2fa.vue'));
|
2020-10-24 11:21:41 -05:00
|
|
|
case 'api': return defineAsyncComponent(() => import('./api.vue'));
|
2020-11-25 06:31:34 -06:00
|
|
|
case 'apps': return defineAsyncComponent(() => import('./apps.vue'));
|
2020-10-24 11:21:41 -05:00
|
|
|
case 'other': return defineAsyncComponent(() => import('./other.vue'));
|
|
|
|
case 'general': return defineAsyncComponent(() => import('./general.vue'));
|
2020-11-25 06:31:34 -06:00
|
|
|
case 'email': return defineAsyncComponent(() => import('./email.vue'));
|
|
|
|
case 'email/address': return defineAsyncComponent(() => import('./email-address.vue'));
|
2021-02-12 21:28:26 -06:00
|
|
|
case 'email/notification': return defineAsyncComponent(() => import('./email-notification.vue'));
|
2020-10-24 11:21:41 -05:00
|
|
|
case 'theme': return defineAsyncComponent(() => import('./theme.vue'));
|
2020-11-25 06:31:34 -06:00
|
|
|
case 'theme/install': return defineAsyncComponent(() => import('./theme.install.vue'));
|
|
|
|
case 'theme/manage': return defineAsyncComponent(() => import('./theme.manage.vue'));
|
2021-07-18 21:36:35 -05:00
|
|
|
case 'menu': return defineAsyncComponent(() => import('./menu.vue'));
|
2020-10-24 11:21:41 -05:00
|
|
|
case 'sounds': return defineAsyncComponent(() => import('./sounds.vue'));
|
2021-07-13 10:11:05 -05:00
|
|
|
case 'custom-css': return defineAsyncComponent(() => import('./custom-css.vue'));
|
2020-11-25 06:31:34 -06:00
|
|
|
case 'deck': return defineAsyncComponent(() => import('./deck.vue'));
|
2021-02-06 06:05:00 -06:00
|
|
|
case 'plugin': return defineAsyncComponent(() => import('./plugin.vue'));
|
|
|
|
case 'plugin/install': return defineAsyncComponent(() => import('./plugin.install.vue'));
|
|
|
|
case 'plugin/manage': return defineAsyncComponent(() => import('./plugin.manage.vue'));
|
2020-10-24 11:21:41 -05:00
|
|
|
case 'import-export': return defineAsyncComponent(() => import('./import-export.vue'));
|
2020-11-25 06:31:34 -06:00
|
|
|
case 'account-info': return defineAsyncComponent(() => import('./account-info.vue'));
|
2021-01-23 01:52:45 -06:00
|
|
|
case 'update': return defineAsyncComponent(() => import('./update.vue'));
|
2021-01-11 05:38:34 -06:00
|
|
|
case 'registry': return defineAsyncComponent(() => import('./registry.vue'));
|
2021-08-20 22:48:50 -05:00
|
|
|
case 'delete-account': return defineAsyncComponent(() => import('./delete-account.vue'));
|
2020-11-29 03:06:35 -06:00
|
|
|
case 'experimental-features': return defineAsyncComponent(() => import('./experimental-features.vue'));
|
2021-01-11 05:38:34 -06:00
|
|
|
}
|
2021-04-11 07:09:35 -05:00
|
|
|
if (page.value.startsWith('registry/keys/system/')) {
|
2021-01-11 05:38:34 -06:00
|
|
|
return defineAsyncComponent(() => import('./registry.keys.vue'));
|
|
|
|
}
|
2021-04-11 07:09:35 -05:00
|
|
|
if (page.value.startsWith('registry/value/system/')) {
|
2021-01-11 05:38:34 -06:00
|
|
|
return defineAsyncComponent(() => import('./registry.value.vue'));
|
2020-10-24 11:21:41 -05:00
|
|
|
}
|
|
|
|
});
|
2020-10-17 06:12:00 -05:00
|
|
|
|
2020-11-25 06:31:34 -06:00
|
|
|
watch(component, () => {
|
2021-01-11 05:38:34 -06:00
|
|
|
pageProps.value = {};
|
|
|
|
|
2021-04-11 07:09:35 -05:00
|
|
|
if (page.value) {
|
|
|
|
if (page.value.startsWith('registry/keys/system/')) {
|
|
|
|
pageProps.value.scope = page.value.replace('registry/keys/system/', '').split('/');
|
2021-01-11 05:38:34 -06:00
|
|
|
}
|
2021-04-11 07:09:35 -05:00
|
|
|
if (page.value.startsWith('registry/value/system/')) {
|
|
|
|
const path = page.value.replace('registry/value/system/', '').split('/');
|
2021-01-11 05:38:34 -06:00
|
|
|
pageProps.value.xKey = path.pop();
|
|
|
|
pageProps.value.scope = path;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-11-25 06:31:34 -06:00
|
|
|
nextTick(() => {
|
2021-10-08 22:33:08 -05:00
|
|
|
scroll(el.value, { top: 0 });
|
2020-11-25 06:31:34 -06:00
|
|
|
});
|
2021-01-11 05:38:34 -06:00
|
|
|
}, { immediate: true });
|
2020-11-25 06:31:34 -06:00
|
|
|
|
2021-04-11 07:09:35 -05:00
|
|
|
watch(() => props.initialPage, () => {
|
2021-04-11 07:31:38 -05:00
|
|
|
if (props.initialPage == null && !narrow.value) {
|
|
|
|
page.value = 'profile';
|
|
|
|
} else {
|
|
|
|
page.value = props.initialPage;
|
2021-04-11 09:49:13 -05:00
|
|
|
if (props.initialPage == null) {
|
|
|
|
INFO.value = indexInfo;
|
|
|
|
}
|
2021-04-11 07:31:38 -05:00
|
|
|
}
|
2021-04-11 07:09:35 -05:00
|
|
|
});
|
|
|
|
|
2020-10-17 06:12:00 -05:00
|
|
|
onMounted(() => {
|
2021-04-11 07:09:35 -05:00
|
|
|
narrow.value = el.value.offsetWidth < 800;
|
|
|
|
if (!narrow.value) {
|
|
|
|
page.value = 'profile';
|
|
|
|
}
|
2020-10-17 06:12:00 -05:00
|
|
|
});
|
|
|
|
|
2021-05-04 03:09:57 -05:00
|
|
|
const emailNotConfigured = computed(() => instance.enableEmail && ($i.email == null || !$i.emailVerified));
|
|
|
|
|
2020-10-17 06:12:00 -05:00
|
|
|
return {
|
2021-04-09 22:54:12 -05:00
|
|
|
[symbols.PAGE_INFO]: INFO,
|
2021-04-11 07:09:35 -05:00
|
|
|
page,
|
2021-10-10 01:19:16 -05:00
|
|
|
menuDef,
|
2020-10-17 06:12:00 -05:00
|
|
|
narrow,
|
|
|
|
view,
|
|
|
|
el,
|
2021-01-11 05:38:34 -06:00
|
|
|
pageProps,
|
2020-10-24 11:21:41 -05:00
|
|
|
component,
|
2021-05-04 03:09:57 -05:00
|
|
|
emailNotConfigured,
|
2020-10-17 06:12:00 -05:00
|
|
|
};
|
|
|
|
},
|
|
|
|
});
|
|
|
|
</script>
|
|
|
|
|
|
|
|
<style lang="scss" scoped>
|
|
|
|
.vvcocwet {
|
2021-10-01 10:51:37 -05:00
|
|
|
> .nav {
|
2021-10-02 09:11:21 -05:00
|
|
|
> .info {
|
|
|
|
margin: 0 16px;
|
|
|
|
}
|
|
|
|
|
|
|
|
> .accounts {
|
|
|
|
> .avatar {
|
|
|
|
display: block;
|
|
|
|
width: 50px;
|
|
|
|
height: 50px;
|
2021-10-02 12:46:58 -05:00
|
|
|
margin: 8px auto 16px auto;
|
2021-10-01 10:51:37 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-10-17 06:12:00 -05:00
|
|
|
&.wide {
|
|
|
|
display: flex;
|
2021-09-29 10:50:45 -05:00
|
|
|
max-width: 1000px;
|
2020-11-25 06:31:34 -06:00
|
|
|
margin: 0 auto;
|
2021-04-11 07:09:35 -05:00
|
|
|
height: 100%;
|
2020-10-17 06:12:00 -05:00
|
|
|
|
|
|
|
> .nav {
|
2020-11-25 06:31:34 -06:00
|
|
|
width: 32%;
|
|
|
|
box-sizing: border-box;
|
2021-04-11 07:09:35 -05:00
|
|
|
overflow: auto;
|
2020-10-17 06:12:00 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
> .main {
|
|
|
|
flex: 1;
|
2020-12-11 21:12:01 -06:00
|
|
|
min-width: 0;
|
2021-04-11 07:09:35 -05:00
|
|
|
overflow: auto;
|
2020-11-13 21:16:28 -06:00
|
|
|
--baseContentWidth: 100%;
|
2020-10-17 06:12:00 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
</style>
|