2022-10-23 16:54:54 -05:00
|
|
|
<script lang="ts">
|
2023-02-26 20:57:34 +01:00
|
|
|
import { ServerStatsResponseDto } from '@api';
|
2022-10-25 21:41:46 -05:00
|
|
|
import CameraIris from 'svelte-material-icons/CameraIris.svelte';
|
|
|
|
|
import PlayCircle from 'svelte-material-icons/PlayCircle.svelte';
|
|
|
|
|
import Memory from 'svelte-material-icons/Memory.svelte';
|
|
|
|
|
import StatsCard from './stats-card.svelte';
|
2023-02-26 20:57:34 +01:00
|
|
|
import { asByteUnitString, getBytesWithUnit } from '../../../utils/byte-units';
|
2023-02-22 18:53:08 +01:00
|
|
|
import { locale } from '$lib/stores/preferences.store';
|
2023-01-09 22:40:54 +02:00
|
|
|
|
2023-02-26 20:57:34 +01:00
|
|
|
export let stats: ServerStatsResponseDto = {
|
|
|
|
|
photos: 0,
|
|
|
|
|
videos: 0,
|
|
|
|
|
usage: 0,
|
|
|
|
|
usageByUser: []
|
2022-10-23 16:54:54 -05:00
|
|
|
};
|
2022-10-25 21:41:46 -05:00
|
|
|
|
2023-02-26 20:57:34 +01:00
|
|
|
$: [statsUsage, statsUsageUnit] = getBytesWithUnit(stats.usage, 0);
|
2022-10-23 16:54:54 -05:00
|
|
|
</script>
|
|
|
|
|
|
2022-10-25 21:41:46 -05:00
|
|
|
<div class="flex flex-col gap-5">
|
|
|
|
|
<div>
|
2022-10-26 11:10:48 -05:00
|
|
|
<p class="text-sm dark:text-immich-dark-fg">TOTAL USAGE</p>
|
2022-10-25 21:41:46 -05:00
|
|
|
|
|
|
|
|
<div class="flex mt-5 justify-between">
|
2023-02-26 20:57:34 +01:00
|
|
|
<StatsCard logo={CameraIris} title="PHOTOS" value={stats.photos} />
|
|
|
|
|
<StatsCard logo={PlayCircle} title="VIDEOS" value={stats.videos} />
|
|
|
|
|
<StatsCard logo={Memory} title="STORAGE" value={statsUsage} unit={statsUsageUnit} />
|
2022-10-23 16:54:54 -05:00
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
|
2022-10-25 21:41:46 -05:00
|
|
|
<div>
|
2022-10-26 11:10:48 -05:00
|
|
|
<p class="text-sm dark:text-immich-dark-fg">USER USAGE DETAIL</p>
|
2022-10-25 21:41:46 -05:00
|
|
|
<table class="text-left w-full mt-5">
|
2022-10-26 11:10:48 -05:00
|
|
|
<thead
|
|
|
|
|
class="border rounded-md mb-4 bg-gray-50 dark:bg-immich-dark-gray dark:border-immich-dark-gray flex text-immich-primary dark:text-immich-dark-primary w-full h-12"
|
|
|
|
|
>
|
2022-10-23 16:54:54 -05:00
|
|
|
<tr class="flex w-full place-items-center">
|
2022-11-20 13:09:31 -06:00
|
|
|
<th class="text-center w-1/4 font-medium text-sm">User</th>
|
|
|
|
|
<th class="text-center w-1/4 font-medium text-sm">Photos</th>
|
|
|
|
|
<th class="text-center w-1/4 font-medium text-sm">Videos</th>
|
|
|
|
|
<th class="text-center w-1/4 font-medium text-sm">Size</th>
|
2022-10-23 16:54:54 -05:00
|
|
|
</tr>
|
|
|
|
|
</thead>
|
2022-10-26 11:10:48 -05:00
|
|
|
<tbody
|
2022-11-09 05:41:45 -06:00
|
|
|
class="overflow-y-auto rounded-md w-full max-h-[320px] block border dark:border-immich-dark-gray dark:text-immich-dark-fg"
|
2022-10-26 11:10:48 -05:00
|
|
|
>
|
2023-02-26 20:57:34 +01:00
|
|
|
{#each stats.usageByUser as user (user.userId)}
|
2022-10-25 21:41:46 -05:00
|
|
|
<tr
|
2023-02-26 20:57:34 +01:00
|
|
|
class="text-center flex place-items-center w-full h-[50px] even:bg-immich-bg even:dark:bg-immich-dark-gray/50 odd:bg-immich-gray odd:dark:bg-immich-dark-gray/75"
|
2022-10-25 21:41:46 -05:00
|
|
|
>
|
2023-02-26 20:57:34 +01:00
|
|
|
<td class="text-sm px-2 w-1/4 text-ellipsis"
|
|
|
|
|
>{user.userFirstName} {user.userLastName}</td
|
|
|
|
|
>
|
|
|
|
|
<td class="text-sm px-2 w-1/4 text-ellipsis">{user.photos.toLocaleString($locale)}</td>
|
|
|
|
|
<td class="text-sm px-2 w-1/4 text-ellipsis">{user.videos.toLocaleString($locale)}</td>
|
|
|
|
|
<td class="text-sm px-2 w-1/4 text-ellipsis">{asByteUnitString(user.usage, $locale)}</td
|
|
|
|
|
>
|
2022-10-23 16:54:54 -05:00
|
|
|
</tr>
|
2023-02-26 20:57:34 +01:00
|
|
|
{/each}
|
2022-10-23 16:54:54 -05:00
|
|
|
</tbody>
|
|
|
|
|
</table>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|