2020-01-29 20:37:25 +01:00
|
|
|
<template>
|
2021-11-19 11:36:12 +01:00
|
|
|
<div ref="el" class="hiyeyicy" :class="{ wide: !narrow }">
|
2022-09-14 19:32:39 +02:00
|
|
|
<div v-if="!narrow || currentPage?.route.name == null" class="nav">
|
2021-12-30 13:47:48 +01:00
|
|
|
<MkSpacer :content-max="700" :margin-min="16">
|
2021-10-24 13:16:55 +02:00
|
|
|
<div class="lxpfedzu">
|
|
|
|
<div class="banner">
|
|
|
|
<img :src="$instance.iconUrl || '/favicon.ico'" alt="" class="icon"/>
|
|
|
|
</div>
|
2021-10-10 10:48:07 +02:00
|
|
|
|
2022-07-20 15:24:26 +02:00
|
|
|
<MkInfo v-if="thereIsUnresolvedAbuseReport" warn class="info">{{ i18n.ts.thereIsUnresolvedAbuseReportWarning }} <MkA to="/admin/abuses" class="_link">{{ i18n.ts.check }}</MkA></MkInfo>
|
|
|
|
<MkInfo v-if="noMaintainerInformation" warn class="info">{{ i18n.ts.noMaintainerInformationWarning }} <MkA to="/admin/settings" class="_link">{{ i18n.ts.configure }}</MkA></MkInfo>
|
|
|
|
<MkInfo v-if="noBotProtection" warn class="info">{{ i18n.ts.noBotProtectionWarning }} <MkA to="/admin/security" class="_link">{{ i18n.ts.configure }}</MkA></MkInfo>
|
|
|
|
<MkInfo v-if="noEmailServer" warn class="info">{{ i18n.ts.noEmailServerWarning }} <MkA to="/admin/email-settings" class="_link">{{ i18n.ts.configure }}</MkA></MkInfo>
|
2022-09-16 00:41:26 +02:00
|
|
|
<MkInfo v-if="updateAvailable" warn class="info">{{ i18n.ts.updateAvailable }} <a href="https://codeberg.org/thatonecalculator/calckey/releases" target="_bank" class="_link">{{ i18n.ts.check }}</a></MkInfo>
|
2021-10-10 10:48:07 +02:00
|
|
|
|
2022-07-20 12:59:27 +02:00
|
|
|
<MkSuperMenu :def="menuDef" :grid="currentPage?.route.name == null"></MkSuperMenu>
|
2021-10-24 13:16:55 +02:00
|
|
|
</div>
|
|
|
|
</MkSpacer>
|
2021-04-22 15:29:33 +02:00
|
|
|
</div>
|
2022-07-20 12:59:27 +02:00
|
|
|
<div v-if="!(narrow && currentPage?.route.name == null)" class="main">
|
|
|
|
<RouterView/>
|
2021-04-22 15:29:33 +02:00
|
|
|
</div>
|
2020-01-29 20:37:25 +01:00
|
|
|
</div>
|
|
|
|
</template>
|
|
|
|
|
2022-05-17 18:32:21 +02:00
|
|
|
<script lang="ts" setup>
|
2022-06-20 10:38:49 +02:00
|
|
|
import { defineAsyncComponent, inject, nextTick, onMounted, onUnmounted, provide, watch } from 'vue';
|
2021-11-11 18:02:25 +01:00
|
|
|
import { i18n } from '@/i18n';
|
2022-09-06 11:21:49 +02:00
|
|
|
import MkSuperMenu from '@/components/MkSuperMenu.vue';
|
|
|
|
import MkInfo from '@/components/MkInfo.vue';
|
2021-11-11 18:02:25 +01:00
|
|
|
import { scroll } from '@/scripts/scroll';
|
|
|
|
import { instance } from '@/instance';
|
2022-09-14 19:32:39 +02:00
|
|
|
import { version } from '@/config';
|
2021-11-11 18:02:25 +01:00
|
|
|
import * as os from '@/os';
|
|
|
|
import { lookupUser } from '@/scripts/lookup-user';
|
2022-10-26 07:31:19 +02:00
|
|
|
import { defaultStore } from '@/store';
|
2022-06-20 10:38:49 +02:00
|
|
|
import { useRouter } from '@/router';
|
|
|
|
import { definePageMetadata, provideMetadataReceiver, setPageMetadata } from '@/scripts/page-metadata';
|
2020-02-16 18:21:27 +01:00
|
|
|
|
2022-05-17 18:32:21 +02:00
|
|
|
const isEmpty = (x: string | null) => x == null || x === '';
|
2020-01-29 20:37:25 +01:00
|
|
|
|
2022-06-20 10:38:49 +02:00
|
|
|
const router = useRouter();
|
2021-10-23 21:03:07 +02:00
|
|
|
|
2022-05-17 18:32:21 +02:00
|
|
|
const indexInfo = {
|
|
|
|
title: i18n.ts.controlPanel,
|
|
|
|
icon: 'fas fa-cog',
|
|
|
|
hideHeader: true,
|
|
|
|
};
|
2020-01-29 20:37:25 +01:00
|
|
|
|
2022-05-17 18:32:21 +02:00
|
|
|
provide('shouldOmitHeaderTitle', false);
|
2021-10-10 08:19:16 +02:00
|
|
|
|
2022-05-17 18:32:21 +02:00
|
|
|
let INFO = $ref(indexInfo);
|
|
|
|
let childInfo = $ref(null);
|
|
|
|
let narrow = $ref(false);
|
|
|
|
let view = $ref(null);
|
|
|
|
let el = $ref(null);
|
|
|
|
let pageProps = $ref({});
|
|
|
|
let noMaintainerInformation = isEmpty(instance.maintainerName) || isEmpty(instance.maintainerEmail);
|
2022-07-13 14:23:20 +02:00
|
|
|
let noBotProtection = !instance.disableRegistration && !instance.enableHcaptcha && !instance.enableRecaptcha;
|
2022-06-21 12:48:28 +02:00
|
|
|
let noEmailServer = !instance.enableEmail;
|
|
|
|
let thereIsUnresolvedAbuseReport = $ref(false);
|
2022-09-14 19:32:39 +02:00
|
|
|
let updateAvailable = $ref(false);
|
2022-07-20 12:59:27 +02:00
|
|
|
let currentPage = $computed(() => router.currentRef.value.child);
|
2022-06-21 12:48:28 +02:00
|
|
|
|
|
|
|
os.api('admin/abuse-user-reports', {
|
|
|
|
state: 'unresolved',
|
|
|
|
limit: 1,
|
|
|
|
}).then(reports => {
|
2022-09-16 00:03:00 +02:00
|
|
|
if (reports?.length > 0) thereIsUnresolvedAbuseReport = true;
|
2022-06-21 12:48:28 +02:00
|
|
|
});
|
2021-10-10 08:19:16 +02:00
|
|
|
|
2022-10-26 07:31:19 +02:00
|
|
|
if (defaultStore.state.showAdminUpdates) {
|
|
|
|
os.api('latest-version').then(res => {
|
|
|
|
const cleanRes = res?.tag_name.replace(/[^0-9]/g, '');
|
|
|
|
const cleanVersion = version.replace(/[^0-9]/g, '');
|
|
|
|
if (cleanRes !== cleanVersion) {
|
|
|
|
updateAvailable = true;
|
|
|
|
}
|
|
|
|
});
|
|
|
|
}
|
2022-09-14 19:32:39 +02:00
|
|
|
|
2022-05-17 18:32:21 +02:00
|
|
|
const NARROW_THRESHOLD = 600;
|
|
|
|
const ro = new ResizeObserver((entries, observer) => {
|
|
|
|
if (entries.length === 0) return;
|
|
|
|
narrow = entries[0].borderBoxSize[0].inlineSize < NARROW_THRESHOLD;
|
|
|
|
});
|
2021-10-10 08:19:16 +02:00
|
|
|
|
2022-05-17 18:32:21 +02:00
|
|
|
const menuDef = $computed(() => [{
|
|
|
|
title: i18n.ts.quickAction,
|
|
|
|
items: [{
|
|
|
|
type: 'button',
|
|
|
|
icon: 'fas fa-search',
|
|
|
|
text: i18n.ts.lookup,
|
|
|
|
action: lookup,
|
|
|
|
}, ...(instance.disableRegistration ? [{
|
|
|
|
type: 'button',
|
|
|
|
icon: 'fas fa-user',
|
|
|
|
text: i18n.ts.invite,
|
|
|
|
action: invite,
|
|
|
|
}] : [])],
|
|
|
|
}, {
|
|
|
|
title: i18n.ts.administration,
|
|
|
|
items: [{
|
|
|
|
icon: 'fas fa-tachometer-alt',
|
|
|
|
text: i18n.ts.dashboard,
|
|
|
|
to: '/admin/overview',
|
2022-07-20 12:59:27 +02:00
|
|
|
active: currentPage?.route.name === 'overview',
|
2022-05-17 18:32:21 +02:00
|
|
|
}, {
|
|
|
|
icon: 'fas fa-users',
|
|
|
|
text: i18n.ts.users,
|
|
|
|
to: '/admin/users',
|
2022-07-20 12:59:27 +02:00
|
|
|
active: currentPage?.route.name === 'users',
|
2022-05-17 18:32:21 +02:00
|
|
|
}, {
|
|
|
|
icon: 'fas fa-laugh',
|
|
|
|
text: i18n.ts.customEmojis,
|
|
|
|
to: '/admin/emojis',
|
2022-07-20 12:59:27 +02:00
|
|
|
active: currentPage?.route.name === 'emojis',
|
2022-05-17 18:32:21 +02:00
|
|
|
}, {
|
|
|
|
icon: 'fas fa-globe',
|
|
|
|
text: i18n.ts.federation,
|
2022-06-29 09:00:00 +02:00
|
|
|
to: '/about#federation',
|
2022-07-20 12:59:27 +02:00
|
|
|
active: currentPage?.route.name === 'federation',
|
2022-05-17 18:32:21 +02:00
|
|
|
}, {
|
|
|
|
icon: 'fas fa-clipboard-list',
|
|
|
|
text: i18n.ts.jobQueue,
|
|
|
|
to: '/admin/queue',
|
2022-07-20 12:59:27 +02:00
|
|
|
active: currentPage?.route.name === 'queue',
|
2022-05-17 18:32:21 +02:00
|
|
|
}, {
|
|
|
|
icon: 'fas fa-cloud',
|
|
|
|
text: i18n.ts.files,
|
|
|
|
to: '/admin/files',
|
2022-07-20 12:59:27 +02:00
|
|
|
active: currentPage?.route.name === 'files',
|
2022-05-17 18:32:21 +02:00
|
|
|
}, {
|
|
|
|
icon: 'fas fa-broadcast-tower',
|
|
|
|
text: i18n.ts.announcements,
|
|
|
|
to: '/admin/announcements',
|
2022-07-20 12:59:27 +02:00
|
|
|
active: currentPage?.route.name === 'announcements',
|
2022-05-17 18:32:21 +02:00
|
|
|
}, {
|
|
|
|
icon: 'fas fa-audio-description',
|
|
|
|
text: i18n.ts.ads,
|
|
|
|
to: '/admin/ads',
|
2022-07-20 12:59:27 +02:00
|
|
|
active: currentPage?.route.name === 'ads',
|
2022-05-17 18:32:21 +02:00
|
|
|
}, {
|
|
|
|
icon: 'fas fa-exclamation-circle',
|
|
|
|
text: i18n.ts.abuseReports,
|
|
|
|
to: '/admin/abuses',
|
2022-07-20 12:59:27 +02:00
|
|
|
active: currentPage?.route.name === 'abuses',
|
2022-05-17 18:32:21 +02:00
|
|
|
}],
|
|
|
|
}, {
|
|
|
|
title: i18n.ts.settings,
|
|
|
|
items: [{
|
|
|
|
icon: 'fas fa-cog',
|
|
|
|
text: i18n.ts.general,
|
|
|
|
to: '/admin/settings',
|
2022-07-20 12:59:27 +02:00
|
|
|
active: currentPage?.route.name === 'settings',
|
2022-05-17 18:32:21 +02:00
|
|
|
}, {
|
|
|
|
icon: 'fas fa-envelope',
|
|
|
|
text: i18n.ts.emailServer,
|
|
|
|
to: '/admin/email-settings',
|
2022-07-20 12:59:27 +02:00
|
|
|
active: currentPage?.route.name === 'email-settings',
|
2022-05-17 18:32:21 +02:00
|
|
|
}, {
|
|
|
|
icon: 'fas fa-cloud',
|
|
|
|
text: i18n.ts.objectStorage,
|
|
|
|
to: '/admin/object-storage',
|
2022-07-20 12:59:27 +02:00
|
|
|
active: currentPage?.route.name === 'object-storage',
|
2022-05-17 18:32:21 +02:00
|
|
|
}, {
|
|
|
|
icon: 'fas fa-lock',
|
|
|
|
text: i18n.ts.security,
|
|
|
|
to: '/admin/security',
|
2022-07-20 12:59:27 +02:00
|
|
|
active: currentPage?.route.name === 'security',
|
2022-05-17 18:32:21 +02:00
|
|
|
}, {
|
|
|
|
icon: 'fas fa-globe',
|
|
|
|
text: i18n.ts.relays,
|
|
|
|
to: '/admin/relays',
|
2022-07-20 12:59:27 +02:00
|
|
|
active: currentPage?.route.name === 'relays',
|
2022-05-17 18:32:21 +02:00
|
|
|
}, {
|
|
|
|
icon: 'fas fa-share-alt',
|
|
|
|
text: i18n.ts.integration,
|
|
|
|
to: '/admin/integrations',
|
2022-07-20 12:59:27 +02:00
|
|
|
active: currentPage?.route.name === 'integrations',
|
2022-05-17 18:32:21 +02:00
|
|
|
}, {
|
|
|
|
icon: 'fas fa-ban',
|
|
|
|
text: i18n.ts.instanceBlocking,
|
|
|
|
to: '/admin/instance-block',
|
2022-07-20 12:59:27 +02:00
|
|
|
active: currentPage?.route.name === 'instance-block',
|
2022-05-17 18:32:21 +02:00
|
|
|
}, {
|
|
|
|
icon: 'fas fa-ghost',
|
|
|
|
text: i18n.ts.proxyAccount,
|
|
|
|
to: '/admin/proxy-account',
|
2022-07-20 12:59:27 +02:00
|
|
|
active: currentPage?.route.name === 'proxy-account',
|
2022-05-17 18:32:21 +02:00
|
|
|
}, {
|
|
|
|
icon: 'fas fa-cogs',
|
|
|
|
text: i18n.ts.other,
|
|
|
|
to: '/admin/other-settings',
|
2022-07-20 12:59:27 +02:00
|
|
|
active: currentPage?.route.name === 'other-settings',
|
2022-05-17 18:32:21 +02:00
|
|
|
}],
|
|
|
|
}, {
|
|
|
|
title: i18n.ts.info,
|
|
|
|
items: [{
|
|
|
|
icon: 'fas fa-database',
|
|
|
|
text: i18n.ts.database,
|
|
|
|
to: '/admin/database',
|
2022-07-20 12:59:27 +02:00
|
|
|
active: currentPage?.route.name === 'database',
|
2022-05-17 18:32:21 +02:00
|
|
|
}],
|
|
|
|
}]);
|
2020-02-10 15:17:42 +01:00
|
|
|
|
2022-05-17 18:32:21 +02:00
|
|
|
watch(narrow, () => {
|
2022-07-20 12:59:27 +02:00
|
|
|
if (currentPage?.route.name == null && !narrow) {
|
2022-06-20 10:38:49 +02:00
|
|
|
router.push('/admin/overview');
|
2022-05-17 18:32:21 +02:00
|
|
|
}
|
|
|
|
});
|
2021-04-22 15:29:33 +02:00
|
|
|
|
2022-05-17 18:32:21 +02:00
|
|
|
onMounted(() => {
|
|
|
|
ro.observe(el);
|
|
|
|
|
|
|
|
narrow = el.offsetWidth < NARROW_THRESHOLD;
|
2022-07-20 12:59:27 +02:00
|
|
|
if (currentPage?.route.name == null && !narrow) {
|
2022-06-20 10:38:49 +02:00
|
|
|
router.push('/admin/overview');
|
2022-05-17 18:32:21 +02:00
|
|
|
}
|
|
|
|
});
|
|
|
|
|
|
|
|
onUnmounted(() => {
|
|
|
|
ro.disconnect();
|
|
|
|
});
|
|
|
|
|
2022-06-20 10:38:49 +02:00
|
|
|
provideMetadataReceiver((info) => {
|
|
|
|
if (info == null) {
|
2022-05-17 18:32:21 +02:00
|
|
|
childInfo = null;
|
|
|
|
} else {
|
2022-06-20 10:38:49 +02:00
|
|
|
childInfo = info;
|
2022-05-17 18:32:21 +02:00
|
|
|
}
|
2022-06-20 10:38:49 +02:00
|
|
|
});
|
2020-08-09 08:51:02 +02:00
|
|
|
|
2022-05-17 18:32:21 +02:00
|
|
|
const invite = () => {
|
|
|
|
os.api('admin/invite').then(x => {
|
|
|
|
os.alert({
|
|
|
|
type: 'info',
|
2022-06-20 10:38:49 +02:00
|
|
|
text: x.code,
|
2022-05-17 18:32:21 +02:00
|
|
|
});
|
2022-05-26 15:53:09 +02:00
|
|
|
}).catch(err => {
|
2022-05-17 18:32:21 +02:00
|
|
|
os.alert({
|
|
|
|
type: 'error',
|
2022-05-26 15:53:09 +02:00
|
|
|
text: err,
|
2022-05-17 18:32:21 +02:00
|
|
|
});
|
|
|
|
});
|
|
|
|
};
|
|
|
|
|
|
|
|
const lookup = (ev) => {
|
|
|
|
os.popupMenu([{
|
|
|
|
text: i18n.ts.user,
|
|
|
|
icon: 'fas fa-user',
|
|
|
|
action: () => {
|
|
|
|
lookupUser();
|
2022-06-20 10:38:49 +02:00
|
|
|
},
|
2022-05-17 18:32:21 +02:00
|
|
|
}, {
|
|
|
|
text: i18n.ts.note,
|
|
|
|
icon: 'fas fa-pencil-alt',
|
|
|
|
action: () => {
|
|
|
|
alert('TODO');
|
2022-06-20 10:38:49 +02:00
|
|
|
},
|
2022-05-17 18:32:21 +02:00
|
|
|
}, {
|
|
|
|
text: i18n.ts.file,
|
|
|
|
icon: 'fas fa-cloud',
|
|
|
|
action: () => {
|
|
|
|
alert('TODO');
|
2022-06-20 10:38:49 +02:00
|
|
|
},
|
2022-05-17 18:32:21 +02:00
|
|
|
}, {
|
|
|
|
text: i18n.ts.instance,
|
|
|
|
icon: 'fas fa-globe',
|
|
|
|
action: () => {
|
|
|
|
alert('TODO');
|
2022-06-20 10:38:49 +02:00
|
|
|
},
|
2022-05-17 18:32:21 +02:00
|
|
|
}], ev.currentTarget ?? ev.target);
|
|
|
|
};
|
|
|
|
|
2022-06-20 10:38:49 +02:00
|
|
|
const headerActions = $computed(() => []);
|
|
|
|
|
|
|
|
const headerTabs = $computed(() => []);
|
|
|
|
|
|
|
|
definePageMetadata(INFO);
|
|
|
|
|
2022-05-17 18:32:21 +02:00
|
|
|
defineExpose({
|
|
|
|
header: {
|
|
|
|
title: i18n.ts.controlPanel,
|
2022-06-20 10:38:49 +02:00
|
|
|
},
|
2021-04-22 15:29:33 +02:00
|
|
|
});
|
|
|
|
</script>
|
2020-08-09 08:51:02 +02:00
|
|
|
|
2021-04-22 15:29:33 +02:00
|
|
|
<style lang="scss" scoped>
|
|
|
|
.hiyeyicy {
|
|
|
|
&.wide {
|
|
|
|
display: flex;
|
|
|
|
margin: 0 auto;
|
|
|
|
height: 100%;
|
|
|
|
|
|
|
|
> .nav {
|
|
|
|
width: 32%;
|
2021-10-10 08:19:16 +02:00
|
|
|
max-width: 280px;
|
2021-04-22 15:29:33 +02:00
|
|
|
box-sizing: border-box;
|
|
|
|
border-right: solid 0.5px var(--divider);
|
|
|
|
overflow: auto;
|
2021-10-10 08:19:16 +02:00
|
|
|
height: 100%;
|
2021-04-22 15:29:33 +02:00
|
|
|
}
|
2020-08-13 16:02:43 +02:00
|
|
|
|
2021-04-22 15:29:33 +02:00
|
|
|
> .main {
|
|
|
|
flex: 1;
|
|
|
|
min-width: 0;
|
|
|
|
}
|
2020-01-29 20:37:25 +01:00
|
|
|
}
|
2021-10-10 08:19:16 +02:00
|
|
|
|
|
|
|
> .nav {
|
2021-10-24 13:16:55 +02:00
|
|
|
.lxpfedzu {
|
|
|
|
> .info {
|
|
|
|
margin: 16px 0;
|
|
|
|
}
|
2021-04-22 15:29:33 +02:00
|
|
|
|
2021-10-24 13:16:55 +02:00
|
|
|
> .banner {
|
|
|
|
margin: 16px;
|
2021-04-22 15:29:33 +02:00
|
|
|
|
2021-10-24 13:16:55 +02:00
|
|
|
> .icon {
|
|
|
|
display: block;
|
|
|
|
margin: auto;
|
|
|
|
height: 42px;
|
|
|
|
border-radius: 8px;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2021-04-22 15:29:33 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
</style>
|