mirror of
https://github.com/immich-app/immich
synced 2025-06-09 18:45:37 +00:00

* make sidebar load more fluid use css before js kicks in added xs breakpoint in tailwind config * fix sidebar hr still showing if opened * make share tab not overflow on mobile * make user management tab responsive * make jobs panel responsive * fix format in tailwind config * fix full width on large screens use md breakpoint for w-[800px] * show accessible name for all screens * replace grid with flex-col * replace all xs with sm * remove isCollapsed completly using only tailwinds group feature and sm and md breakpoints * remove leftovers of isCollapsed and make the settings content less stretched * remove isCollapsed in layout and side-bar * fix code style --------- Co-authored-by: faupau03 <paul.paffe@gmx.net> Co-authored-by: Alex <alex.tran1502@gmail.com>
117 lines
3.6 KiB
Svelte
117 lines
3.6 KiB
Svelte
<script lang="ts">
|
|
import { onDestroy, onMount } from 'svelte';
|
|
import Cloud from 'svelte-material-icons/Cloud.svelte';
|
|
import Dns from 'svelte-material-icons/Dns.svelte';
|
|
import LoadingSpinner from './loading-spinner.svelte';
|
|
import { api, ServerInfoResponseDto } from '@api';
|
|
import { asByteUnitString } from '../../utils/byte-units';
|
|
import { locale } from '$lib/stores/preferences.store';
|
|
|
|
let isServerOk = true;
|
|
let serverVersion = '';
|
|
let serverInfo: ServerInfoResponseDto;
|
|
let pingServerInterval: NodeJS.Timer;
|
|
|
|
onMount(async () => {
|
|
try {
|
|
const { data: version } = await api.serverInfoApi.getServerVersion();
|
|
|
|
serverVersion = `v${version.major}.${version.minor}.${version.patch}`;
|
|
|
|
const { data: serverInfoRes } = await api.serverInfoApi.getServerInfo();
|
|
serverInfo = serverInfoRes;
|
|
getStorageUsagePercentage();
|
|
} catch (e) {
|
|
console.log('Error [StatusBox] [onMount]');
|
|
isServerOk = false;
|
|
}
|
|
|
|
pingServerInterval = setInterval(async () => {
|
|
try {
|
|
const { data: pingReponse } = await api.serverInfoApi.pingServer();
|
|
|
|
if (pingReponse.res === 'pong') isServerOk = true;
|
|
else isServerOk = false;
|
|
|
|
const { data: serverInfoRes } = await api.serverInfoApi.getServerInfo();
|
|
serverInfo = serverInfoRes;
|
|
} catch (e) {
|
|
console.log('Error [StatusBox] [pingServerInterval]', e);
|
|
isServerOk = false;
|
|
}
|
|
}, 10000);
|
|
});
|
|
|
|
onDestroy(() => clearInterval(pingServerInterval));
|
|
|
|
const getStorageUsagePercentage = () => {
|
|
return Math.round((serverInfo?.diskUseRaw / serverInfo?.diskSizeRaw) * 100);
|
|
};
|
|
</script>
|
|
|
|
<div class="dark:text-immich-dark-fg">
|
|
<div class="storage-status grid grid-cols-[64px_auto]">
|
|
<div
|
|
class="pl-5 pr-6 text-immich-primary dark:text-immich-dark-primary pb-[2.15rem] group-hover:sm:pb-0 md:pb-0"
|
|
>
|
|
<Cloud size={'24'} />
|
|
</div>
|
|
<div class="hidden md:block group-hover:sm:block">
|
|
<p class="text-sm font-medium text-immich-primary dark:text-immich-dark-primary">Storage</p>
|
|
{#if serverInfo}
|
|
<div class="w-full bg-gray-200 rounded-full h-[7px] dark:bg-gray-700 my-2">
|
|
<!-- style={`width: ${$downloadAssets[fileName]}%`} -->
|
|
<div
|
|
class="bg-immich-primary dark:bg-immich-dark-primary h-[7px] rounded-full"
|
|
style="width: {getStorageUsagePercentage()}%"
|
|
/>
|
|
</div>
|
|
<p class="text-xs">
|
|
{asByteUnitString(serverInfo?.diskUseRaw, $locale)} of
|
|
{asByteUnitString(serverInfo?.diskSizeRaw, $locale)} used
|
|
</p>
|
|
{:else}
|
|
<div class="mt-2">
|
|
<LoadingSpinner />
|
|
</div>
|
|
{/if}
|
|
</div>
|
|
</div>
|
|
<div>
|
|
<hr class="ml-5 my-4 dark:border-immich-dark-gray" />
|
|
</div>
|
|
<div class="server-status grid grid-cols-[64px_auto]">
|
|
<div
|
|
class="pl-5 pr-6 text-immich-primary dark:text-immich-dark-primary pb-11 md:pb-0 group-hover:sm:pb-0"
|
|
>
|
|
<Dns size={'24'} />
|
|
</div>
|
|
<div class="text-xs hidden md:block group-hover:sm:block">
|
|
<p class="text-sm font-medium text-immich-primary dark:text-immich-dark-primary">Server</p>
|
|
|
|
<div class="flex justify-items-center justify-between mt-2 ">
|
|
<p>Status</p>
|
|
|
|
{#if isServerOk}
|
|
<p class="font-medium text-immich-primary dark:text-immich-dark-primary">Online</p>
|
|
{:else}
|
|
<p class="font-medium text-red-500">Offline</p>
|
|
{/if}
|
|
</div>
|
|
|
|
<div class="flex justify-items-center justify-between mt-2 ">
|
|
<p>Version</p>
|
|
<p class="font-medium text-immich-primary dark:text-immich-dark-primary">
|
|
{serverVersion}
|
|
</p>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<!-- <div>
|
|
<hr class="ml-5 my-4" />
|
|
</div>
|
|
<button class="text-xs ml-5 underline hover:cursor-pointer text-immich-primary" on:click={() => goto('/changelog')}
|
|
>Changelog</button
|
|
> -->
|
|
</div>
|