2022-12-19 12:01:30 +02:00
|
|
|
<template>
|
|
|
|
<MkStickyContainer>
|
2022-06-20 11:38:49 +03:00
|
|
|
<template #header><MkPageHeader :actions="headerActions" :tabs="headerTabs"/></template>
|
2022-12-19 12:01:30 +02:00
|
|
|
<MkSpacer :content-max="800" :margin-min="16" :margin-max="32">
|
|
|
|
<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 16:29:33 +03:00
|
|
|
</template>
|
|
|
|
|
2022-05-14 15:35:08 +03:00
|
|
|
<script lang="ts" setup>
|
|
|
|
import { } from 'vue';
|
2022-01-04 14:37:16 +02:00
|
|
|
import FormSuspense from '@/components/form/suspense.vue';
|
2022-08-30 18:24:33 +03:00
|
|
|
import MkKeyValue from '@/components/MkKeyValue.vue';
|
2021-11-11 19:02:25 +02:00
|
|
|
import * as os from '@/os';
|
|
|
|
import bytes from '@/filters/bytes';
|
|
|
|
import number from '@/filters/number';
|
2022-05-14 15:35:08 +03:00
|
|
|
import { i18n } from '@/i18n';
|
2022-06-20 11:38:49 +03:00
|
|
|
import { definePageMetadata } from '@/scripts/page-metadata';
|
2021-04-22 16:29:33 +03:00
|
|
|
|
2022-05-14 15:35:08 +03: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 16:29:33 +03:00
|
|
|
|
2022-06-20 11:38:49 +03:00
|
|
|
const headerActions = $computed(() => []);
|
|
|
|
|
|
|
|
const headerTabs = $computed(() => []);
|
|
|
|
|
|
|
|
definePageMetadata({
|
|
|
|
title: i18n.ts.database,
|
2022-12-19 12:01:30 +02:00
|
|
|
icon: 'ti ti-database',
|
2021-04-22 16:29:33 +03:00
|
|
|
});
|
|
|
|
</script>
|