mirror of
https://github.com/immich-app/immich.git
synced 2026-03-23 08:09:12 +03:00
* fix(web): display storage unit next to value instead of absolute positioning in admin user page * chore: styling --------- Co-authored-by: Alex Tran <alex.tran1502@gmail.com>
36 lines
994 B
Svelte
36 lines
994 B
Svelte
<script lang="ts">
|
|
import { ByteUnit } from '$lib/utils/byte-units';
|
|
import { Icon, Text } from '@immich/ui';
|
|
|
|
interface Props {
|
|
icon: string;
|
|
title: string;
|
|
value: number;
|
|
unit?: ByteUnit | undefined;
|
|
}
|
|
|
|
let { icon, title, value, unit = undefined }: Props = $props();
|
|
|
|
const zeros = $derived(() => {
|
|
const maxLength = 13;
|
|
const valueLength = value.toString().length;
|
|
const zeroLength = maxLength - valueLength;
|
|
|
|
return '0'.repeat(zeroLength);
|
|
});
|
|
</script>
|
|
|
|
<div class="flex h-35 w-full flex-col justify-between rounded-3xl bg-subtle text-primary p-5">
|
|
<div class="flex place-items-center gap-4">
|
|
<Icon {icon} size="40" />
|
|
<Text size="giant" fontWeight="medium">{title}</Text>
|
|
</div>
|
|
|
|
<div class="mx-auto font-mono text-2xl font-medium">
|
|
<span class="text-gray-300 dark:text-gray-600">{zeros()}</span><span>{value}</span>
|
|
{#if unit}
|
|
<code class="font-mono text-base font-normal">{unit}</code>
|
|
{/if}
|
|
</div>
|
|
</div>
|