2023-07-27 05:31:52 +00:00
|
|
|
<!--
|
|
|
|
SPDX-FileCopyrightText: syuilo and other misskey contributors
|
|
|
|
SPDX-License-Identifier: AGPL-3.0-only
|
|
|
|
-->
|
|
|
|
|
2022-12-19 10:01:30 +00:00
|
|
|
<template>
|
|
|
|
<MkStickyContainer>
|
2022-06-20 08:38:49 +00:00
|
|
|
<template #header><MkPageHeader :actions="headerActions" :tabs="headerTabs"/></template>
|
2023-05-19 11:52:15 +00:00
|
|
|
<MkSpacer :contentMax="800" :marginMin="16" :marginMax="32">
|
2022-12-19 10:01:30 +00:00
|
|
|
<FormSuspense v-slot="{ result: database }" :p="databasePromiseFactory">
|
|
|
|
<MkKeyValue v-for="table in database" :key="table[0]" oneline style="margin: 1em 0;">
|
|
|
|
<template #key>{{ table[0] }}</template>
|
|
|
|
<template #value>{{ bytes(table[1].size) }} ({{ number(table[1].count) }} recs)</template>
|
|
|
|
</MkKeyValue>
|
|
|
|
</FormSuspense>
|
|
|
|
</MkSpacer>
|
|
|
|
</MkStickyContainer>
|
2021-04-22 13:29:33 +00:00
|
|
|
</template>
|
|
|
|
|
2022-05-14 12:35:08 +00:00
|
|
|
<script lang="ts" setup>
|
|
|
|
import { } from 'vue';
|
2022-01-04 12:37:16 +00:00
|
|
|
import FormSuspense from '@/components/form/suspense.vue';
|
2022-08-30 15:24:33 +00:00
|
|
|
import MkKeyValue from '@/components/MkKeyValue.vue';
|
2023-09-19 07:37:43 +00:00
|
|
|
import * as os from '@/os.js';
|
|
|
|
import bytes from '@/filters/bytes.js';
|
|
|
|
import number from '@/filters/number.js';
|
|
|
|
import { i18n } from '@/i18n.js';
|
|
|
|
import { definePageMetadata } from '@/scripts/page-metadata.js';
|
2021-04-22 13:29:33 +00:00
|
|
|
|
2022-05-14 12:35:08 +00:00
|
|
|
const databasePromiseFactory = () => os.api('admin/get-table-stats').then(res => Object.entries(res).sort((a, b) => b[1].size - a[1].size));
|
2021-04-22 13:29:33 +00:00
|
|
|
|
2022-06-20 08:38:49 +00:00
|
|
|
const headerActions = $computed(() => []);
|
|
|
|
|
|
|
|
const headerTabs = $computed(() => []);
|
|
|
|
|
|
|
|
definePageMetadata({
|
|
|
|
title: i18n.ts.database,
|
2022-12-19 10:01:30 +00:00
|
|
|
icon: 'ti ti-database',
|
2021-04-22 13:29:33 +00:00
|
|
|
});
|
|
|
|
</script>
|