mirror of
https://iceshrimp.dev/limepotato/jormungandr-bite.git
synced 2024-11-25 11:27:31 -07:00
add pie chart to meili stats
This commit is contained in:
parent
62835aa4a3
commit
8dc133ada2
1 changed files with 11 additions and 0 deletions
|
@ -1,5 +1,6 @@
|
||||||
<template>
|
<template>
|
||||||
<div class="ms_stats">
|
<div class="ms_stats">
|
||||||
|
<XPie class="pie" :value="progress" />
|
||||||
<div>
|
<div>
|
||||||
<p><i class="ph-file-search ph-bold ph-lg"></i>MeiliSearch</p>
|
<p><i class="ph-file-search ph-bold ph-lg"></i>MeiliSearch</p>
|
||||||
<p>{{ i18n.ts._widgets.meiliStatus }}: {{ available }}</p>
|
<p>{{ i18n.ts._widgets.meiliStatus }}: {{ available }}</p>
|
||||||
|
@ -13,6 +14,7 @@
|
||||||
<script lang="ts" setup>
|
<script lang="ts" setup>
|
||||||
import { onBeforeUnmount, onMounted } from "vue";
|
import { onBeforeUnmount, onMounted } from "vue";
|
||||||
import bytes from "@/filters/bytes";
|
import bytes from "@/filters/bytes";
|
||||||
|
import XPie from "./pie.vue";
|
||||||
import { i18n } from "@/i18n";
|
import { i18n } from "@/i18n";
|
||||||
|
|
||||||
const props = defineProps<{
|
const props = defineProps<{
|
||||||
|
@ -20,6 +22,8 @@ const props = defineProps<{
|
||||||
meta: any;
|
meta: any;
|
||||||
}>();
|
}>();
|
||||||
|
|
||||||
|
let progress: number = $ref(0);
|
||||||
|
|
||||||
let total_size: number = $ref(0);
|
let total_size: number = $ref(0);
|
||||||
let index_count: number = $ref(0);
|
let index_count: number = $ref(0);
|
||||||
let available: string = $ref("unavailable");
|
let available: string = $ref("unavailable");
|
||||||
|
@ -28,6 +32,7 @@ function onStats(stats) {
|
||||||
total_size = stats.meilisearch.size;
|
total_size = stats.meilisearch.size;
|
||||||
index_count = stats.meilisearch.indexed_count;
|
index_count = stats.meilisearch.indexed_count;
|
||||||
available = stats.meilisearch.health;
|
available = stats.meilisearch.health;
|
||||||
|
progress = Math.floor((index_count / total_size) * 100);
|
||||||
}
|
}
|
||||||
|
|
||||||
onMounted(() => {
|
onMounted(() => {
|
||||||
|
@ -43,6 +48,12 @@ onBeforeUnmount(() => {
|
||||||
.ms_stats {
|
.ms_stats {
|
||||||
padding: 16px;
|
padding: 16px;
|
||||||
|
|
||||||
|
> .pie {
|
||||||
|
height: 82px;
|
||||||
|
flex-shrink: 0;
|
||||||
|
margin-right: 16px;
|
||||||
|
}
|
||||||
|
|
||||||
> div {
|
> div {
|
||||||
> p {
|
> p {
|
||||||
margin: 0;
|
margin: 0;
|
||||||
|
|
Loading…
Reference in a new issue