fix comments

This commit is contained in:
Jonathan Jogenfors
2026-02-25 00:39:58 +01:00
parent 6982987f3f
commit 8888166928
7 changed files with 275 additions and 148 deletions

View File

@@ -1,24 +1,37 @@
<script lang="ts"> <script lang="ts">
import { ByteUnit } from '$lib/utils/byte-units'; import { ByteUnit } from '$lib/utils/byte-units';
import { Icon, LoadingSpinner, Text } from '@immich/ui'; import { Icon, Text } from '@immich/ui';
interface ValueData {
value: number;
unit?: ByteUnit | undefined;
}
interface Props { interface Props {
icon: string; icon: string;
title: string; title: string;
value?: number; valuePromise: Promise<ValueData>;
unit?: ByteUnit | undefined;
} }
let { icon, title, value = undefined, unit = undefined }: Props = $props(); let { icon, title, valuePromise }: Props = $props();
let isLoading = $state(true);
let data = $state<ValueData | null>(null);
$effect.pre(() => {
isLoading = true;
void valuePromise.then((result) => {
data = result;
isLoading = false;
});
});
const zeros = $derived(() => { const zeros = $derived(() => {
if (value === undefined) {
return '';
}
const maxLength = 13; const maxLength = 13;
const valueLength = value.toString().length; if (!data) {
return '0'.repeat(maxLength);
}
const valueLength = data.value.toString().length;
const zeroLength = maxLength - valueLength; const zeroLength = maxLength - valueLength;
return '0'.repeat(zeroLength); return '0'.repeat(zeroLength);
}); });
</script> </script>
@@ -29,14 +42,26 @@
<Text size="giant" fontWeight="medium">{title}</Text> <Text size="giant" fontWeight="medium">{title}</Text>
</div> </div>
<div class="mx-auto font-mono text-2xl font-medium"> <div class="mx-auto font-mono text-2xl font-medium relative">
{#if value === undefined} <span class="text-gray-300 dark:text-gray-600" class:shimmer-text={isLoading}>{zeros()}</span
<LoadingSpinner /> >{#if !isLoading && data}<span>{data.value}</span>
{:else} {#if data.unit}<code class="font-mono text-base font-normal">{data.unit}</code>{/if}{/if}
<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}
{/if}
</div> </div>
</div> </div>
<style>
.shimmer-text {
mask-image: linear-gradient(90deg, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0.3) 50%, rgba(0, 0, 0, 1) 100%);
mask-size: 200% 100%;
animation: shimmer 2.25s infinite linear;
}
@keyframes shimmer {
from {
mask-position: 200% 0;
}
to {
mask-position: -200% 0;
}
}
</style>

View File

@@ -1,8 +1,8 @@
<script lang="ts"> <script lang="ts">
import StatsCard from '$lib/components/server-statistics/ServerStatisticsCard.svelte'; import ServerStatisticsCard from '$lib/components/server-statistics/ServerStatisticsCard.svelte';
import { locale } from '$lib/stores/preferences.store'; import { locale } from '$lib/stores/preferences.store';
import { getBytesWithUnit } from '$lib/utils/byte-units'; import { getBytesWithUnit } from '$lib/utils/byte-units';
import type { ServerStatsResponseDto } from '@immich/sdk'; import type { ServerStatsResponseDto, UserAdminResponseDto } from '@immich/sdk';
import { import {
Code, Code,
FormatBytes, FormatBytes,
@@ -19,10 +19,35 @@
import { t } from 'svelte-i18n'; import { t } from 'svelte-i18n';
type Props = { type Props = {
stats: ServerStatsResponseDto; statsPromise: Promise<ServerStatsResponseDto>;
users: UserAdminResponseDto[];
}; };
const { stats }: Props = $props(); const { statsPromise, users }: Props = $props();
let stats = $state<ServerStatsResponseDto | null>(null);
$effect.pre(() => {
void statsPromise.then((result) => {
stats = result;
});
});
const photosPromise = $derived.by(() => statsPromise.then((data) => ({ value: data.photos })));
const videosPromise = $derived.by(() => statsPromise.then((data) => ({ value: data.videos })));
const storagePromise = $derived.by(() =>
statsPromise.then((data) => {
const TiB = 1024 ** 4;
const [value, unit] = getBytesWithUnit(data.usage, data.usage > TiB ? 2 : 0);
return { value, unit };
}),
);
const storageUsageWithUnit = $derived.by(() => {
const TiB = 1024 ** 4;
return stats ? getBytesWithUnit(stats.usage, stats.usage > TiB ? 2 : 0) : ([0, ''] as const);
});
const zeros = (value: number, maxLength = 13) => { const zeros = (value: number, maxLength = 13) => {
const valueLength = value.toString().length; const valueLength = value.toString().length;
@@ -30,9 +55,6 @@
return '0'.repeat(zeroLength); return '0'.repeat(zeroLength);
}; };
const TiB = 1024 ** 4;
let [statsUsage, statsUsageUnit] = $derived(getBytesWithUnit(stats.usage, stats.usage > TiB ? 2 : 0));
</script> </script>
<div class="flex flex-col gap-5 my-4"> <div class="flex flex-col gap-5 my-4">
@@ -40,48 +62,52 @@
<Text class="mb-2" fontWeight="medium">{$t('total_usage')}</Text> <Text class="mb-2" fontWeight="medium">{$t('total_usage')}</Text>
<div class="hidden justify-between lg:flex gap-4"> <div class="hidden justify-between lg:flex gap-4">
<StatsCard icon={mdiCameraIris} title={$t('photos')} value={stats.photos} /> <ServerStatisticsCard icon={mdiCameraIris} title={$t('photos')} valuePromise={photosPromise} />
<StatsCard icon={mdiPlayCircle} title={$t('videos')} value={stats.videos} /> <ServerStatisticsCard icon={mdiPlayCircle} title={$t('videos')} valuePromise={videosPromise} />
<StatsCard icon={mdiChartPie} title={$t('storage')} value={statsUsage} unit={statsUsageUnit} /> <ServerStatisticsCard icon={mdiChartPie} title={$t('storage')} valuePromise={storagePromise} />
</div> </div>
<div class="mt-5 flex lg:hidden"> <div class="mt-5 flex lg:hidden">
<div class="flex flex-col justify-between rounded-3xl bg-subtle p-5 dark:bg-immich-dark-gray"> {#if stats}
<div class="flex flex-wrap gap-x-12"> <div class="flex flex-col justify-between rounded-3xl bg-subtle p-5 dark:bg-immich-dark-gray">
<div class="flex flex-1 place-items-center gap-4 text-primary"> <div class="flex flex-wrap gap-x-12">
<Icon icon={mdiCameraIris} size="25" /> <div class="flex flex-1 place-items-center gap-4 text-primary">
<Text size="medium" fontWeight="medium">{$t('photos')}</Text> <Icon icon={mdiCameraIris} size="25" />
</div> <Text size="medium" fontWeight="medium">{$t('photos')}</Text>
</div>
<div class="relative text-center font-mono text-2xl font-medium"> <div class="relative text-center font-mono text-2xl font-medium">
<span class="text-light-300">{zeros(stats.photos)}</span><span class="text-primary">{stats.photos}</span> <span class="text-light-300">{zeros(stats.photos)}</span><span class="text-primary">{stats.photos}</span>
</div> </div>
</div>
<div class="flex flex-wrap gap-x-12">
<div class="flex flex-1 place-items-center gap-4 text-primary">
<Icon icon={mdiPlayCircle} size="25" />
<Text size="medium" fontWeight="medium">{$t('videos')}</Text>
</div> </div>
<div class="flex flex-wrap gap-x-12">
<div class="flex flex-1 place-items-center gap-4 text-primary">
<Icon icon={mdiPlayCircle} size="25" />
<Text size="medium" fontWeight="medium">{$t('videos')}</Text>
</div>
<div class="relative text-center font-mono text-2xl font-medium"> <div class="relative text-center font-mono text-2xl font-medium">
<span class="text-light-300">{zeros(stats.videos)}</span><span class="text-primary">{stats.videos}</span> <span class="text-light-300">{zeros(stats.videos)}</span><span class="text-primary">{stats.videos}</span>
</div> </div>
</div>
<div class="flex flex-wrap gap-x-5">
<div class="flex flex-1 flex-nowrap place-items-center gap-4 text-primary">
<Icon icon={mdiChartPie} size="25" />
<Text size="medium" fontWeight="medium">{$t('storage')}</Text>
</div> </div>
<div class="flex flex-wrap gap-x-5">
<div class="flex flex-1 flex-nowrap place-items-center gap-4 text-primary">
<Icon icon={mdiChartPie} size="25" />
<Text size="medium" fontWeight="medium">{$t('storage')}</Text>
</div>
<div class="relative flex text-center font-mono text-2xl font-medium"> <div class="relative flex text-center font-mono text-2xl font-medium">
<span class="text-light-300">{zeros(statsUsage)}</span><span class="text-primary">{statsUsage}</span> <span class="text-light-300">{zeros(storageUsageWithUnit[0])}</span><span class="text-primary"
>{storageUsageWithUnit[0]}</span
>
<div class="absolute -end-1.5 -bottom-4"> <div class="absolute -end-1.5 -bottom-4">
<Code color="muted" class="text-xs font-light font-mono">{statsUsageUnit}</Code> <Code color="muted" class="text-xs font-light font-mono">{storageUsageWithUnit[1]}</Code>
</div>
</div> </div>
</div> </div>
</div> </div>
</div> {/if}
</div> </div>
</div> </div>
@@ -95,34 +121,82 @@
<TableHeading class="w-1/4">{$t('usage')}</TableHeading> <TableHeading class="w-1/4">{$t('usage')}</TableHeading>
</TableHeader> </TableHeader>
<TableBody class="block max-h-80 overflow-y-auto"> <TableBody class="block max-h-80 overflow-y-auto">
{#each stats.usageByUser as user (user.userId)} {#if stats}
<TableRow> {#each stats.usageByUser as user (user.userId)}
<TableCell class="w-1/4">{user.userName}</TableCell> <TableRow>
<TableCell class="w-1/4"> <TableCell class="w-1/4">{user.userName}</TableCell>
{user.photos.toLocaleString($locale)} (<FormatBytes bytes={user.usagePhotos} />)</TableCell <TableCell class="w-1/4">
> {user.photos.toLocaleString($locale)} (<FormatBytes bytes={user.usagePhotos} />)</TableCell
<TableCell class="w-1/4"> >
{user.videos.toLocaleString($locale)} (<FormatBytes bytes={user.usageVideos} precision={0} />)</TableCell <TableCell class="w-1/4">
> {user.videos.toLocaleString($locale)} (<FormatBytes
<TableCell class="w-1/4"> bytes={user.usageVideos}
<FormatBytes bytes={user.usage} precision={0} /> precision={0}
{#if user.quotaSizeInBytes !== null} />)</TableCell
/ <FormatBytes bytes={user.quotaSizeInBytes} precision={0} /> >
{/if} <TableCell class="w-1/4">
<span class="text-primary"> <FormatBytes bytes={user.usage} precision={0} />
{#if user.quotaSizeInBytes !== null && user.quotaSizeInBytes >= 0} {#if user.quotaSizeInBytes !== null}
({(user.quotaSizeInBytes === 0 ? 1 : user.usage / user.quotaSizeInBytes).toLocaleString($locale, { / <FormatBytes bytes={user.quotaSizeInBytes} precision={0} />
style: 'percent',
maximumFractionDigits: 0,
})})
{:else}
({$t('unlimited')})
{/if} {/if}
</span> <span class="text-primary">
</TableCell> {#if user.quotaSizeInBytes !== null && user.quotaSizeInBytes >= 0}
</TableRow> ({(user.quotaSizeInBytes === 0 ? 1 : user.usage / user.quotaSizeInBytes).toLocaleString($locale, {
{/each} style: 'percent',
maximumFractionDigits: 0,
})})
{:else}
({$t('unlimited')})
{/if}
</span>
</TableCell>
</TableRow>
{/each}
{:else if users.length}
{#each users as user (user.id)}
<TableRow>
<TableCell class="w-1/4">{user.name}</TableCell>
<TableCell class="w-1/4"><span class="skeleton-loader inline-block h-4 w-16"></span></TableCell>
<TableCell class="w-1/4"><span class="skeleton-loader inline-block h-4 w-16"></span></TableCell>
<TableCell class="w-1/4"><span class="skeleton-loader inline-block h-4 w-24"></span></TableCell>
</TableRow>
{/each}
{/if}
</TableBody> </TableBody>
</Table> </Table>
</div> </div>
</div> </div>
<style>
.skeleton-loader {
position: relative;
border-radius: 4px;
overflow: hidden;
background-color: rgba(156, 163, 175, 0.35);
}
.skeleton-loader::after {
content: '';
position: absolute;
inset: 0;
background-repeat: no-repeat;
background-image: linear-gradient(
90deg,
rgba(255, 255, 255, 0),
rgba(255, 255, 255, 0.8) 50%,
rgba(255, 255, 255, 0)
);
background-size: 200% 100%;
background-position: 200% 0;
animation: skeleton-animation 2000ms infinite;
}
@keyframes skeleton-animation {
from {
background-position: 200% 0;
}
to {
background-position: -200% 0;
}
}
</style>

View File

@@ -13,7 +13,6 @@
Container, Container,
ContextMenuButton, ContextMenuButton,
Link, Link,
LoadingSpinner,
MenuItemType, MenuItemType,
Table, Table,
TableBody, TableBody,
@@ -116,29 +115,29 @@
<TableCell class={classes.column2}> <TableCell class={classes.column2}>
<Link href={Route.viewUser(owner)}>{owner.name}</Link> <Link href={Route.viewUser(owner)}>{owner.name}</Link>
</TableCell> </TableCell>
<TableCell class={classes.column3}> {#if stats}
{#if stats} <TableCell class={classes.column3}>
{stats.photos.toLocaleString($locale)} {stats.photos.toLocaleString($locale)}
{:else} </TableCell>
<LoadingSpinner /> <TableCell class={classes.column4}>
{/if}
</TableCell>
<TableCell class={classes.column4}>
{#if stats}
{stats.videos.toLocaleString($locale)} {stats.videos.toLocaleString($locale)}
{:else} </TableCell>
<LoadingSpinner /> <TableCell class={classes.column5}>
{/if}
</TableCell>
<TableCell class={classes.column5}>
{#if stats}
{@const [diskUsage, diskUsageUnit] = getBytesWithUnit(stats.usage, 0)} {@const [diskUsage, diskUsageUnit] = getBytesWithUnit(stats.usage, 0)}
{diskUsage} {diskUsage}
{diskUsageUnit} {diskUsageUnit}
{:else} </TableCell>
<LoadingSpinner /> {:else}
{/if} <TableCell class={classes.column3}>
</TableCell> <span class="skeleton-loader inline-block h-4 w-14"></span>
</TableCell>
<TableCell class={classes.column4}>
<span class="skeleton-loader inline-block h-4 w-14"></span>
</TableCell>
<TableCell class={classes.column5}>
<span class="skeleton-loader inline-block h-4 w-20"></span>
</TableCell>
{/if}
<TableCell class={classes.column6}> <TableCell class={classes.column6}>
<ContextMenuButton color="primary" aria-label={$t('open')} items={getActionsForLibrary(library)} /> <ContextMenuButton color="primary" aria-label={$t('open')} items={getActionsForLibrary(library)} />
</TableCell> </TableCell>
@@ -159,3 +158,37 @@
</div> </div>
</Container> </Container>
</AdminPageLayout> </AdminPageLayout>
<style>
.skeleton-loader {
position: relative;
border-radius: 4px;
overflow: hidden;
background-color: rgba(156, 163, 175, 0.35);
}
.skeleton-loader::after {
content: '';
position: absolute;
inset: 0;
background-repeat: no-repeat;
background-image: linear-gradient(
90deg,
rgba(255, 255, 255, 0),
rgba(255, 255, 255, 0.8) 50%,
rgba(255, 255, 255, 0)
);
background-size: 200% 100%;
background-position: 200% 0;
animation: skeleton-animation 2000ms infinite;
}
@keyframes skeleton-animation {
from {
background-position: 200% 0;
}
to {
background-position: -200% 0;
}
}
</style>

View File

@@ -14,7 +14,6 @@
getLibraryExclusionPatternActions, getLibraryExclusionPatternActions,
getLibraryFolderActions, getLibraryFolderActions,
} from '$lib/services/library.service'; } from '$lib/services/library.service';
import type { ByteUnit } from '$lib/utils/byte-units';
import { getBytesWithUnit } from '$lib/utils/byte-units'; import { getBytesWithUnit } from '$lib/utils/byte-units';
import type { LibraryResponseDto, LibraryStatsResponseDto } from '@immich/sdk'; import type { LibraryResponseDto, LibraryStatsResponseDto } from '@immich/sdk';
@@ -36,40 +35,28 @@
data: LayoutData; data: LayoutData;
}; };
const { children, data }: Props = $props(); let { children, data }: Props = $props();
const statisticsPromise = $derived.by(() => data.statisticsPromise as Promise<LibraryStatsResponseDto>);
let statistics = $state<LibraryStatsResponseDto | undefined>(undefined); const photosPromise = $derived.by(() => statisticsPromise.then((stats) => ({ value: stats.photos })));
let storageUsage = $state<number | undefined>(undefined);
let unit = $state<ByteUnit | undefined>(undefined);
$effect(() => { const videosPromise = $derived.by(() => statisticsPromise.then((stats) => ({ value: stats.videos })));
if (statistics) {
const [usage, u] = getBytesWithUnit(statistics.usage);
storageUsage = usage;
unit = u;
} else {
storageUsage = undefined;
unit = undefined;
}
});
const loadStatistics = async () => { const usagePromise = $derived.by(() =>
try { statisticsPromise.then((stats) => {
statistics = await data.statisticsPromise; const [value, unit] = getBytesWithUnit(stats.usage);
} catch (error) { return { value, unit };
console.error('Failed to load statistics:', error); }),
} );
};
$effect(() => { const offlinePromise = $derived.by(() => statisticsPromise.then((stats) => ({ value: stats.offline })));
void loadStatistics();
});
let library = $state(data.library); let updatedLibrary = $state<LibraryResponseDto | undefined>(undefined);
const library = $derived.by(() => (updatedLibrary?.id === data.library.id ? updatedLibrary : data.library));
const onLibraryUpdate = (newLibrary: LibraryResponseDto) => { const onLibraryUpdate = (newLibrary: LibraryResponseDto) => {
if (newLibrary.id === library.id) { if (newLibrary.id === library.id) {
library = newLibrary; updatedLibrary = newLibrary;
} }
}; };
@@ -94,9 +81,9 @@
<div class="grid gap-4 grid-cols-1 lg:grid-cols-2 w-full"> <div class="grid gap-4 grid-cols-1 lg:grid-cols-2 w-full">
<Heading tag="h1" size="large" class="col-span-full my-4">{library.name}</Heading> <Heading tag="h1" size="large" class="col-span-full my-4">{library.name}</Heading>
<div class="flex flex-col lg:flex-row gap-4 col-span-full"> <div class="flex flex-col lg:flex-row gap-4 col-span-full">
<ServerStatisticsCard icon={mdiCameraIris} title={$t('photos')} value={statistics?.photos} /> <ServerStatisticsCard icon={mdiCameraIris} title={$t('photos')} valuePromise={photosPromise} />
<ServerStatisticsCard icon={mdiPlayCircle} title={$t('videos')} value={statistics?.videos} /> <ServerStatisticsCard icon={mdiPlayCircle} title={$t('videos')} valuePromise={videosPromise} />
<ServerStatisticsCard icon={mdiChartPie} title={$t('usage')} value={storageUsage} {unit} /> <ServerStatisticsCard icon={mdiChartPie} title={$t('usage')} valuePromise={usagePromise} />
</div> </div>
<AdminCard icon={mdiFolderOutline} title={$t('folders')} headerAction={AddFolder}> <AdminCard icon={mdiFolderOutline} title={$t('folders')} headerAction={AddFolder}>
@@ -147,7 +134,7 @@
</AdminCard> </AdminCard>
<div class="flex flex-col lg:flex-row gap-4"> <div class="flex flex-col lg:flex-row gap-4">
<ServerStatisticsCard icon={mdiFileDocumentRemoveOutline} title={$t('offline')} value={statistics?.offline} /> <ServerStatisticsCard icon={mdiFileDocumentRemoveOutline} title={$t('offline')} valuePromise={offlinePromise} />
</div> </div>
</div> </div>
{@render children?.()} {@render children?.()}

View File

@@ -2,7 +2,7 @@
import AdminPageLayout from '$lib/components/layouts/AdminPageLayout.svelte'; import AdminPageLayout from '$lib/components/layouts/AdminPageLayout.svelte';
import ServerStatisticsPanel from '$lib/components/server-statistics/ServerStatisticsPanel.svelte'; import ServerStatisticsPanel from '$lib/components/server-statistics/ServerStatisticsPanel.svelte';
import { getServerStatistics, type ServerStatsResponseDto } from '@immich/sdk'; import { getServerStatistics, type ServerStatsResponseDto } from '@immich/sdk';
import { Container, LoadingSpinner } from '@immich/ui'; import { Container } from '@immich/ui';
import { onMount } from 'svelte'; import { onMount } from 'svelte';
import type { PageData } from './$types'; import type { PageData } from './$types';
@@ -14,20 +14,18 @@
let stats = $state<ServerStatsResponseDto | undefined>(undefined); let stats = $state<ServerStatsResponseDto | undefined>(undefined);
const loadStatistics = async () => { const statsPromise = $derived.by(() => {
try { if (stats) {
stats = await data.statsPromise; return Promise.resolve(stats);
} catch (error) {
console.error('Failed to load server statistics:', error);
} }
}; return data.statsPromise;
});
const updateStatistics = async () => { const updateStatistics = async () => {
stats = await getServerStatistics(); stats = await getServerStatistics();
}; };
onMount(() => { onMount(() => {
void loadStatistics();
const interval = setInterval(() => void updateStatistics(), 5000); const interval = setInterval(() => void updateStatistics(), 5000);
return () => clearInterval(interval); return () => clearInterval(interval);
@@ -36,10 +34,6 @@
<AdminPageLayout breadcrumbs={[{ title: data.meta.title }]}> <AdminPageLayout breadcrumbs={[{ title: data.meta.title }]}>
<Container size="large" center> <Container size="large" center>
{#if stats} <ServerStatisticsPanel {statsPromise} users={data.users} />
<ServerStatisticsPanel {stats} />
{:else}
<LoadingSpinner />
{/if}
</Container> </Container>
</AdminPageLayout> </AdminPageLayout>

View File

@@ -1,15 +1,17 @@
import { authenticate } from '$lib/utils/auth'; import { authenticate } from '$lib/utils/auth';
import { getFormatter } from '$lib/utils/i18n'; import { getFormatter } from '$lib/utils/i18n';
import { getServerStatistics } from '@immich/sdk'; import { getServerStatistics, searchUsersAdmin } from '@immich/sdk';
import type { PageLoad } from './$types'; import type { PageLoad } from './$types';
export const load = (async ({ url }) => { export const load = (async ({ url }) => {
await authenticate(url, { admin: true }); await authenticate(url, { admin: true });
const statsPromise = getServerStatistics(); const statsPromise = getServerStatistics();
const users = await searchUsersAdmin({ withDeleted: false });
const $t = await getFormatter(); const $t = await getFormatter();
return { return {
statsPromise, statsPromise,
users,
meta: { meta: {
title: $t('server_stats'), title: $t('server_stats'),
}, },

View File

@@ -123,9 +123,21 @@
</div> </div>
<div class="col-span-full"> <div class="col-span-full">
<div class="flex flex-col lg:flex-row gap-4 w-full"> <div class="flex flex-col lg:flex-row gap-4 w-full">
<ServerStatisticsCard icon={mdiCameraIris} title={$t('photos')} value={userStatistics.images} /> <ServerStatisticsCard
<ServerStatisticsCard icon={mdiPlayCircle} title={$t('videos')} value={userStatistics.videos} /> icon={mdiCameraIris}
<ServerStatisticsCard icon={mdiChartPie} title={$t('storage')} value={statsUsage} unit={statsUsageUnit} /> title={$t('photos')}
valuePromise={Promise.resolve({ value: userStatistics.images })}
/>
<ServerStatisticsCard
icon={mdiPlayCircle}
title={$t('videos')}
valuePromise={Promise.resolve({ value: userStatistics.videos })}
/>
<ServerStatisticsCard
icon={mdiChartPie}
title={$t('storage')}
valuePromise={Promise.resolve({ value: statsUsage, unit: statsUsageUnit })}
/>
</div> </div>
</div> </div>