hippofish/packages/frontend/src/pages/admin/overview.vue

199 lines
5.3 KiB
Vue
Raw Normal View History

<!--
SPDX-FileCopyrightText: syuilo and other misskey contributors
SPDX-License-Identifier: AGPL-3.0-only
-->
<template>
2023-05-19 13:52:15 +02:00
<MkSpacer :contentMax="1000">
2023-05-14 03:21:56 +02:00
<div ref="rootEl" :class="$style.root">
2023-01-09 01:41:25 +01:00
<MkFoldableSection class="item">
<template #header>Stats</template>
<XStats/>
2023-01-09 01:41:25 +01:00
</MkFoldableSection>
2022-12-27 01:47:54 +01:00
2023-01-09 01:41:25 +01:00
<MkFoldableSection class="item">
<template #header>Active users</template>
<XActiveUsers/>
2023-01-09 01:41:25 +01:00
</MkFoldableSection>
2022-12-27 01:47:54 +01:00
2023-01-09 01:41:25 +01:00
<MkFoldableSection class="item">
2022-12-27 01:47:54 +01:00
<template #header>Heatmap</template>
<XHeatmap/>
2023-01-09 01:41:25 +01:00
</MkFoldableSection>
2022-12-27 01:47:54 +01:00
2023-01-09 01:41:25 +01:00
<MkFoldableSection class="item">
2022-12-27 06:31:24 +01:00
<template #header>Retention rate</template>
<XRetention/>
2023-01-09 01:41:25 +01:00
</MkFoldableSection>
2022-12-27 06:31:24 +01:00
2023-01-09 01:41:25 +01:00
<MkFoldableSection class="item">
2022-12-26 01:22:39 +01:00
<template #header>Moderators</template>
<XModerators/>
2023-01-09 01:41:25 +01:00
</MkFoldableSection>
2022-12-27 01:47:54 +01:00
2023-01-09 01:41:25 +01:00
<MkFoldableSection class="item">
<template #header>Federation</template>
<XFederation/>
2023-01-09 01:41:25 +01:00
</MkFoldableSection>
2023-01-09 01:41:25 +01:00
<MkFoldableSection class="item">
<template #header>Instances</template>
<XInstances/>
2023-01-09 01:41:25 +01:00
</MkFoldableSection>
2022-12-27 01:47:54 +01:00
2023-01-09 01:41:25 +01:00
<MkFoldableSection class="item">
<template #header>Ap requests</template>
<XApRequests/>
2023-01-09 01:41:25 +01:00
</MkFoldableSection>
2022-12-27 01:47:54 +01:00
2023-01-09 01:41:25 +01:00
<MkFoldableSection class="item">
<template #header>New users</template>
<XUsers/>
2023-01-09 01:41:25 +01:00
</MkFoldableSection>
2022-12-27 01:47:54 +01:00
2023-01-09 01:41:25 +01:00
<MkFoldableSection class="item">
<template #header>Deliver queue</template>
<XQueue domain="deliver"/>
2023-01-09 01:41:25 +01:00
</MkFoldableSection>
2022-12-27 01:47:54 +01:00
2023-01-09 01:41:25 +01:00
<MkFoldableSection class="item">
<template #header>Inbox queue</template>
<XQueue domain="inbox"/>
2023-01-09 01:41:25 +01:00
</MkFoldableSection>
2022-06-25 16:01:40 +02:00
</div>
</MkSpacer>
</template>
<script lang="ts" setup>
import { markRaw, onMounted, onBeforeUnmount, nextTick, shallowRef, ref, computed } from 'vue';
import * as Misskey from 'misskey-js';
2022-06-25 16:01:40 +02:00
import XFederation from './overview.federation.vue';
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 06:31:24 +01:00
import XRetention from './overview.retention.vue';
2022-12-26 01:22:39 +01:00
import XModerators from './overview.moderators.vue';
2022-12-27 01:47:54 +01:00
import XHeatmap from './overview.heatmap.vue';
import type { InstanceForPie } from './overview.pie.vue';
2023-09-19 09:37:43 +02:00
import * as os from '@/os.js';
import { useStream } from '@/stream.js';
import { i18n } from '@/i18n.js';
import { definePageMetadata } from '@/scripts/page-metadata.js';
2023-01-09 01:41:25 +01:00
import MkFoldableSection from '@/components/MkFoldableSection.vue';
2022-06-25 16:01:40 +02:00
const rootEl = shallowRef<HTMLElement>();
const serverInfo = ref<Misskey.entities.ServerInfoResponse | null>(null);
const topSubInstancesForPie = ref<InstanceForPie[] | null>(null);
const topPubInstancesForPie = ref<InstanceForPie[] | null>(null);
const federationPubActive = ref<number | null>(null);
const federationPubActiveDiff = ref<number | null>(null);
const federationSubActive = ref<number | null>(null);
const federationSubActiveDiff = ref<number | null>(null);
const newUsers = ref<Misskey.entities.UserDetailed[] | null>(null);
const activeInstances = shallowRef<Misskey.entities.FederationInstance | null>(null);
const queueStatsConnection = markRaw(useStream().useChannel('queueStats'));
2022-06-25 16:01:40 +02:00
const now = new Date();
2022-06-26 06:28:47 +02:00
const filesPagination = {
endpoint: 'admin/drive/files' as const,
limit: 9,
noPaging: true,
};
2022-06-25 16:01:40 +02:00
2022-06-29 14:22:15 +02:00
function onInstanceClick(i) {
os.pageWindow(`/instance-info/${i.host}`);
}
2022-06-25 16:01:40 +02:00
onMounted(async () => {
/*
const magicGrid = new MagicGrid({
container: rootEl,
static: true,
animate: true,
});
magicGrid.listen();
*/
os.apiGet('charts/federation', { limit: 2, span: 'day' }).then(chart => {
federationPubActive.value = chart.pubActive[0];
federationPubActiveDiff.value = chart.pubActive[0] - chart.pubActive[1];
federationSubActive.value = chart.subActive[0];
federationSubActiveDiff.value = chart.subActive[0] - chart.subActive[1];
});
2022-06-30 13:15:14 +02:00
os.apiGet('federation/stats', { limit: 10 }).then(res => {
topSubInstancesForPie.value = [
...res.topSubInstances.map(x => ({
name: x.host,
color: x.themeColor,
value: x.followersCount,
onClick: () => {
os.pageWindow(`/instance-info/${x.host}`);
},
})),
{ name: '(other)', color: '#80808080', value: res.otherFollowersCount },
];
topPubInstancesForPie.value = [
...res.topPubInstances.map(x => ({
name: x.host,
color: x.themeColor,
value: x.followingCount,
onClick: () => {
os.pageWindow(`/instance-info/${x.host}`);
},
})),
{ name: '(other)', color: '#80808080', value: res.otherFollowingCount },
];
});
os.api('admin/server-info').then(serverInfoResponse => {
serverInfo.value = serverInfoResponse;
});
2021-10-22 17:04:19 +02:00
os.api('admin/show-users', {
limit: 5,
sort: '+createdAt',
}).then(res => {
newUsers.value = res;
});
2022-06-29 14:22:15 +02:00
os.api('federation/instances', {
2023-01-03 01:00:42 +01:00
sort: '+latestRequestReceivedAt',
2022-06-29 14:22:15 +02:00
limit: 25,
}).then(res => {
activeInstances.value = res;
2022-06-29 14:22:15 +02:00
});
nextTick(() => {
queueStatsConnection.send('requestLog', {
id: Math.random().toString().substring(2, 10),
2022-06-26 06:28:47 +02:00
length: 100,
2021-10-22 17:04:19 +02:00
});
});
});
onBeforeUnmount(() => {
queueStatsConnection.dispose();
});
const headerActions = computed(() => []);
const headerTabs = computed(() => []);
definePageMetadata({
title: i18n.ts.dashboard,
icon: 'ti ti-dashboard',
});
</script>
2023-05-14 03:21:56 +02:00
<style lang="scss" module>
.root {
display: grid;
grid-template-columns: repeat(auto-fill, minmax(400px, 1fr));
grid-gap: 16px;
}
</style>