mirror of
https://github.com/BillyOutlast/drop.git
synced 2026-02-04 00:31:17 +01:00
* Adds new tile on the admin home page with system data. Also fixes the active users bug in the pie chart * Fixes missing parentheses * Updates user stats cache when signing in * Reads active number of users from session provider * Removes unused variable * Small improvements * Removes acl properties from system data websocket and performs initial push of data * fix: remove acl fetch --------- Co-authored-by: DecDuck <declanahofmeyr@gmail.com>
46 lines
1.3 KiB
Vue
46 lines
1.3 KiB
Vue
<template>
|
|
<h2 v-if="title" class="text-lg mb-4 w-full">{{ title }}</h2>
|
|
<div class="flex flex-col xl:flex-row gap-4">
|
|
<div class="relative flex grow max-w-[12rem]">
|
|
<svg class="aspect-square grow relative inline" viewBox="0 0 100 100">
|
|
<PieChartPieSlice
|
|
v-for="slice in slices"
|
|
:key="`${slice.percentage}-${slice.totalPercentage}`"
|
|
:slice="slice"
|
|
/>
|
|
</svg>
|
|
<div class="absolute inset-0 bg-zinc-900 rounded-full m-12" />
|
|
</div>
|
|
<ul class="flex flex-col gap-y-1 my-auto text-left">
|
|
<li
|
|
v-for="slice in slices"
|
|
:key="slice.value"
|
|
class="text-sm inline-flex items-center gap-x-1"
|
|
>
|
|
<span
|
|
class="size-3 inline-block rounded-sm"
|
|
:class="CHART_COLOURS[slice.color].bg"
|
|
/>
|
|
{{
|
|
$t("common.labelValueColon", {
|
|
label: slice.label,
|
|
value: slice.value,
|
|
})
|
|
}}
|
|
</li>
|
|
</ul>
|
|
</div>
|
|
</template>
|
|
|
|
<script setup lang="ts">
|
|
import { generateSlices } from "~/components/PieChart/utils";
|
|
import type { SliceData } from "~/components/PieChart/types";
|
|
|
|
const { data, title = undefined } = defineProps<{
|
|
data: SliceData[];
|
|
title?: string | undefined;
|
|
}>();
|
|
|
|
const slices = generateSlices(data);
|
|
</script>
|