2021-04-22 16:29:33 +03:00
|
|
|
<template>
|
2022-12-23 08:21:55 +02:00
|
|
|
<MkSpacer :content-max="1000">
|
2022-12-26 02:22:39 +02:00
|
|
|
<div ref="rootEl" class="edbbcaef">
|
2022-12-23 08:21:55 +02:00
|
|
|
<MkFolder class="item">
|
|
|
|
<template #header>Stats</template>
|
|
|
|
<XStats/>
|
|
|
|
</MkFolder>
|
2022-12-27 02:47:54 +02:00
|
|
|
|
2022-12-23 08:21:55 +02:00
|
|
|
<MkFolder class="item">
|
|
|
|
<template #header>Active users</template>
|
|
|
|
<XActiveUsers/>
|
|
|
|
</MkFolder>
|
2022-12-27 02:47:54 +02:00
|
|
|
|
|
|
|
<MkFolder class="item">
|
|
|
|
<template #header>Heatmap</template>
|
|
|
|
<XHeatmap/>
|
|
|
|
</MkFolder>
|
|
|
|
|
2022-12-27 07:31:24 +02:00
|
|
|
<MkFolder class="item">
|
|
|
|
<template #header>Retention rate</template>
|
|
|
|
<XRetention/>
|
|
|
|
</MkFolder>
|
|
|
|
|
2022-12-26 02:22:39 +02:00
|
|
|
<MkFolder class="item">
|
|
|
|
<template #header>Moderators</template>
|
|
|
|
<XModerators/>
|
|
|
|
</MkFolder>
|
2022-12-27 02:47:54 +02:00
|
|
|
|
2022-12-23 08:21:55 +02:00
|
|
|
<MkFolder class="item">
|
|
|
|
<template #header>Federation</template>
|
|
|
|
<XFederation/>
|
|
|
|
</MkFolder>
|
2022-12-27 02:47:54 +02:00
|
|
|
|
2022-12-23 08:21:55 +02:00
|
|
|
<MkFolder class="item">
|
|
|
|
<template #header>Instances</template>
|
|
|
|
<XInstances/>
|
|
|
|
</MkFolder>
|
2022-12-27 02:47:54 +02:00
|
|
|
|
2022-12-23 08:21:55 +02:00
|
|
|
<MkFolder class="item">
|
|
|
|
<template #header>Ap requests</template>
|
|
|
|
<XApRequests/>
|
|
|
|
</MkFolder>
|
2022-12-27 02:47:54 +02:00
|
|
|
|
2022-12-23 08:21:55 +02:00
|
|
|
<MkFolder class="item">
|
|
|
|
<template #header>New users</template>
|
|
|
|
<XUsers/>
|
|
|
|
</MkFolder>
|
2022-12-27 02:47:54 +02:00
|
|
|
|
2022-12-23 08:21:55 +02:00
|
|
|
<MkFolder class="item">
|
|
|
|
<template #header>Deliver queue</template>
|
|
|
|
<XQueue domain="deliver"/>
|
|
|
|
</MkFolder>
|
2022-12-27 02:47:54 +02:00
|
|
|
|
2022-12-23 08:21:55 +02:00
|
|
|
<MkFolder class="item">
|
|
|
|
<template #header>Inbox queue</template>
|
|
|
|
<XQueue domain="inbox"/>
|
|
|
|
</MkFolder>
|
2022-06-25 17:01:40 +03:00
|
|
|
</div>
|
|
|
|
</MkSpacer>
|
2021-04-22 16:29:33 +03:00
|
|
|
</template>
|
|
|
|
|
2022-05-25 10:37:35 +03:00
|
|
|
<script lang="ts" setup>
|
|
|
|
import { markRaw, version as vueVersion, onMounted, onBeforeUnmount, nextTick } from 'vue';
|
2022-06-25 17:01:40 +03:00
|
|
|
import XFederation from './overview.federation.vue';
|
2022-12-23 08:21:55 +02:00
|
|
|
import XInstances from './overview.instances.vue';
|
|
|
|
import XQueue from './overview.queue.vue';
|
|
|
|
import XApRequests from './overview.ap-requests.vue';
|
|
|
|
import XUsers from './overview.users.vue';
|
|
|
|
import XActiveUsers from './overview.active-users.vue';
|
|
|
|
import XStats from './overview.stats.vue';
|
2022-12-27 07:31:24 +02:00
|
|
|
import XRetention from './overview.retention.vue';
|
2022-12-26 02:22:39 +02:00
|
|
|
import XModerators from './overview.moderators.vue';
|
2022-12-27 02:47:54 +02:00
|
|
|
import XHeatmap from './overview.heatmap.vue';
|
2022-08-30 18:24:33 +03:00
|
|
|
import MkTagCloud from '@/components/MkTagCloud.vue';
|
2021-11-11 19:02:25 +02:00
|
|
|
import { version, url } from '@/config';
|
|
|
|
import * as os from '@/os';
|
2021-12-29 15:13:09 +02:00
|
|
|
import { stream } from '@/stream';
|
2022-05-25 10:37:35 +03:00
|
|
|
import { i18n } from '@/i18n';
|
2022-06-20 11:38:49 +03:00
|
|
|
import { definePageMetadata } from '@/scripts/page-metadata';
|
2022-06-25 17:01:40 +03:00
|
|
|
import { defaultStore } from '@/store';
|
2022-08-30 18:24:33 +03:00
|
|
|
import MkFileListForAdmin from '@/components/MkFileListForAdmin.vue';
|
2022-12-23 08:21:55 +02:00
|
|
|
import MkFolder from '@/components/MkFolder.vue';
|
2022-06-25 17:01:40 +03:00
|
|
|
|
2023-01-03 03:12:37 +02:00
|
|
|
const rootEl = $shallowRef<HTMLElement>();
|
2022-05-25 10:37:35 +03:00
|
|
|
let serverInfo: any = $ref(null);
|
2022-06-30 16:02:08 +03:00
|
|
|
let topSubInstancesForPie: any = $ref(null);
|
|
|
|
let topPubInstancesForPie: any = $ref(null);
|
2022-06-25 19:45:33 +03:00
|
|
|
let federationPubActive = $ref<number | null>(null);
|
|
|
|
let federationPubActiveDiff = $ref<number | null>(null);
|
|
|
|
let federationSubActive = $ref<number | null>(null);
|
|
|
|
let federationSubActiveDiff = $ref<number | null>(null);
|
|
|
|
let newUsers = $ref(null);
|
2022-06-29 15:22:15 +03:00
|
|
|
let activeInstances = $shallowRef(null);
|
2022-05-25 10:37:35 +03:00
|
|
|
const queueStatsConnection = markRaw(stream.useChannel('queueStats'));
|
2022-06-25 17:01:40 +03:00
|
|
|
const now = new Date();
|
2022-06-26 07:28:47 +03:00
|
|
|
const filesPagination = {
|
|
|
|
endpoint: 'admin/drive/files' as const,
|
|
|
|
limit: 9,
|
|
|
|
noPaging: true,
|
|
|
|
};
|
2022-06-25 17:01:40 +03:00
|
|
|
|
2022-06-29 15:22:15 +03:00
|
|
|
function onInstanceClick(i) {
|
|
|
|
os.pageWindow(`/instance-info/${i.host}`);
|
|
|
|
}
|
|
|
|
|
2022-06-25 17:01:40 +03:00
|
|
|
onMounted(async () => {
|
|
|
|
/*
|
|
|
|
const magicGrid = new MagicGrid({
|
|
|
|
container: rootEl,
|
|
|
|
static: true,
|
|
|
|
animate: true,
|
|
|
|
});
|
|
|
|
|
|
|
|
magicGrid.listen();
|
|
|
|
*/
|
|
|
|
|
2022-06-25 19:45:33 +03:00
|
|
|
os.apiGet('charts/federation', { limit: 2, span: 'day' }).then(chart => {
|
|
|
|
federationPubActive = chart.pubActive[0];
|
|
|
|
federationPubActiveDiff = chart.pubActive[0] - chart.pubActive[1];
|
|
|
|
federationSubActive = chart.subActive[0];
|
|
|
|
federationSubActiveDiff = chart.subActive[0] - chart.subActive[1];
|
|
|
|
});
|
|
|
|
|
2022-06-30 14:15:14 +03:00
|
|
|
os.apiGet('federation/stats', { limit: 10 }).then(res => {
|
2022-06-30 18:38:20 +03:00
|
|
|
topSubInstancesForPie = res.topSubInstances.map(x => ({
|
2022-06-30 16:02:08 +03:00
|
|
|
name: x.host,
|
|
|
|
color: x.themeColor,
|
|
|
|
value: x.followersCount,
|
|
|
|
onClick: () => {
|
|
|
|
os.pageWindow(`/instance-info/${x.host}`);
|
|
|
|
},
|
2022-06-30 18:38:20 +03:00
|
|
|
})).concat([{ name: '(other)', color: '#80808080', value: res.otherFollowersCount }]);
|
|
|
|
topPubInstancesForPie = res.topPubInstances.map(x => ({
|
2022-06-30 16:02:08 +03:00
|
|
|
name: x.host,
|
|
|
|
color: x.themeColor,
|
|
|
|
value: x.followingCount,
|
|
|
|
onClick: () => {
|
|
|
|
os.pageWindow(`/instance-info/${x.host}`);
|
|
|
|
},
|
2022-06-30 18:38:20 +03:00
|
|
|
})).concat([{ name: '(other)', color: '#80808080', value: res.otherFollowingCount }]);
|
2022-06-28 04:42:26 +03:00
|
|
|
});
|
|
|
|
|
2022-05-25 10:37:35 +03:00
|
|
|
os.api('admin/server-info').then(serverInfoResponse => {
|
|
|
|
serverInfo = serverInfoResponse;
|
|
|
|
});
|
2021-10-22 18:04:19 +03:00
|
|
|
|
2022-06-25 19:45:33 +03:00
|
|
|
os.api('admin/show-users', {
|
|
|
|
limit: 5,
|
|
|
|
sort: '+createdAt',
|
|
|
|
}).then(res => {
|
|
|
|
newUsers = res;
|
|
|
|
});
|
|
|
|
|
2022-06-29 15:22:15 +03:00
|
|
|
os.api('federation/instances', {
|
2023-01-03 02:00:42 +02:00
|
|
|
sort: '+latestRequestReceivedAt',
|
2022-06-29 15:22:15 +03:00
|
|
|
limit: 25,
|
|
|
|
}).then(res => {
|
|
|
|
activeInstances = res;
|
|
|
|
});
|
|
|
|
|
2022-05-25 10:37:35 +03:00
|
|
|
nextTick(() => {
|
|
|
|
queueStatsConnection.send('requestLog', {
|
|
|
|
id: Math.random().toString().substr(2, 8),
|
2022-06-26 07:28:47 +03:00
|
|
|
length: 100,
|
2021-10-22 18:04:19 +03:00
|
|
|
});
|
2022-05-25 10:37:35 +03:00
|
|
|
});
|
|
|
|
});
|
2021-04-22 16:29:33 +03:00
|
|
|
|
2022-05-25 10:37:35 +03:00
|
|
|
onBeforeUnmount(() => {
|
|
|
|
queueStatsConnection.dispose();
|
|
|
|
});
|
2021-04-22 16:29:33 +03:00
|
|
|
|
2022-06-20 11:38:49 +03:00
|
|
|
const headerActions = $computed(() => []);
|
|
|
|
|
|
|
|
const headerTabs = $computed(() => []);
|
|
|
|
|
|
|
|
definePageMetadata({
|
|
|
|
title: i18n.ts.dashboard,
|
2022-12-19 12:01:30 +02:00
|
|
|
icon: 'ti ti-dashboard',
|
2021-04-22 16:29:33 +03:00
|
|
|
});
|
|
|
|
</script>
|
2021-10-21 23:36:48 +03:00
|
|
|
|
2022-12-27 11:29:39 +02:00
|
|
|
<style lang="scss" scoped>
|
2021-10-21 23:36:48 +03:00
|
|
|
.edbbcaef {
|
2022-12-23 08:21:55 +02:00
|
|
|
display: grid;
|
|
|
|
grid-template-columns: repeat(auto-fill, minmax(400px, 1fr));
|
|
|
|
grid-gap: 16px;
|
2021-10-21 23:36:48 +03:00
|
|
|
}
|
|
|
|
</style>
|