mirror of
https://git.joinsharkey.org/Sharkey/Sharkey.git
synced 2024-11-14 20:43:09 +02:00
577f63c4f4
* refactor(client): refactor admin/database to use Composition API * Apply review suggestion from @Johann150 Co-authored-by: Johann150 <johann@qwertqwefsday.eu> Co-authored-by: Johann150 <johann@qwertqwefsday.eu>
31 lines
1 KiB
Vue
31 lines
1 KiB
Vue
<template>
|
|
<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>
|
|
</template>
|
|
|
|
<script lang="ts" setup>
|
|
import { } from 'vue';
|
|
import FormSuspense from '@/components/form/suspense.vue';
|
|
import MkKeyValue from '@/components/key-value.vue';
|
|
import * as os from '@/os';
|
|
import * as symbols from '@/symbols';
|
|
import bytes from '@/filters/bytes';
|
|
import number from '@/filters/number';
|
|
import { i18n } from '@/i18n';
|
|
|
|
const databasePromiseFactory = () => os.api('admin/get-table-stats').then(res => Object.entries(res).sort((a, b) => b[1].size - a[1].size));
|
|
|
|
defineExpose({
|
|
[symbols.PAGE_INFO]: {
|
|
title: i18n.ts.database,
|
|
icon: 'fas fa-database',
|
|
bg: 'var(--bg)',
|
|
}
|
|
});
|
|
</script>
|