mirror of
https://github.com/gpxstudio/gpx.studio.git
synced 2025-12-04 02:42:13 +00:00
94 lines
3.6 KiB
Svelte
94 lines
3.6 KiB
Svelte
<script lang="ts">
|
|
import * as Card from '$lib/components/ui/card';
|
|
import Tooltip from '$lib/components/Tooltip.svelte';
|
|
import WithUnits from '$lib/components/WithUnits.svelte';
|
|
|
|
import { MoveDownRight, MoveUpRight, Ruler, Timer, Zap } from '@lucide/svelte';
|
|
|
|
import { i18n } from '$lib/i18n.svelte';
|
|
import type { GPXStatistics } from 'gpx';
|
|
import type { Readable } from 'svelte/store';
|
|
import { settings } from '$lib/logic/settings';
|
|
|
|
const { velocityUnits } = settings;
|
|
|
|
let {
|
|
gpxStatistics,
|
|
slicedGPXStatistics,
|
|
orientation,
|
|
panelSize,
|
|
}: {
|
|
gpxStatistics: Readable<GPXStatistics>;
|
|
slicedGPXStatistics: Readable<[GPXStatistics, number, number] | undefined>;
|
|
orientation: 'horizontal' | 'vertical';
|
|
panelSize: number;
|
|
} = $props();
|
|
|
|
let statistics = $derived(
|
|
$slicedGPXStatistics !== undefined ? $slicedGPXStatistics[0] : $gpxStatistics
|
|
);
|
|
</script>
|
|
|
|
<Card.Root
|
|
class="h-full {orientation === 'vertical'
|
|
? 'min-w-40 sm:min-w-44 text-sm sm:text-base'
|
|
: 'w-full'} border-none shadow-none p-0"
|
|
>
|
|
<Card.Content
|
|
class="h-full flex {orientation === 'vertical'
|
|
? 'flex-col justify-center'
|
|
: 'flex-row w-full justify-between'} gap-4 p-0"
|
|
>
|
|
<Tooltip label={i18n._('quantities.distance')}>
|
|
<span class="flex flex-row items-center">
|
|
<Ruler size="16" class="mr-1" />
|
|
<WithUnits value={statistics.global.distance.total} type="distance" />
|
|
</span>
|
|
</Tooltip>
|
|
<Tooltip label={i18n._('quantities.elevation_gain_loss')}>
|
|
<span class="flex flex-row items-center">
|
|
<MoveUpRight size="16" class="mr-1" />
|
|
<WithUnits value={statistics.global.elevation.gain} type="elevation" />
|
|
<MoveDownRight size="16" class="mx-1" />
|
|
<WithUnits value={statistics.global.elevation.loss} type="elevation" />
|
|
</span>
|
|
</Tooltip>
|
|
{#if panelSize > 120 || orientation === 'horizontal'}
|
|
<Tooltip
|
|
class={orientation === 'horizontal' ? 'hidden xs:block' : ''}
|
|
label="{$velocityUnits === 'speed'
|
|
? i18n._('quantities.speed')
|
|
: i18n._('quantities.pace')} ({i18n._('quantities.moving')} / {i18n._(
|
|
'quantities.total'
|
|
)})"
|
|
>
|
|
<span class="flex flex-row items-center">
|
|
<Zap size="16" class="mr-1" />
|
|
<WithUnits
|
|
value={statistics.global.speed.moving}
|
|
type="speed"
|
|
showUnits={false}
|
|
/>
|
|
<span class="mx-1">/</span>
|
|
<WithUnits value={statistics.global.speed.total} type="speed" />
|
|
</span>
|
|
</Tooltip>
|
|
{/if}
|
|
{#if panelSize > 160 || orientation === 'horizontal'}
|
|
<Tooltip
|
|
class={orientation === 'horizontal' ? 'hidden md:block' : ''}
|
|
label="{i18n._('quantities.time')} ({i18n._('quantities.moving')} / {i18n._(
|
|
'quantities.total'
|
|
)})"
|
|
>
|
|
<span class="flex flex-row items-center">
|
|
<Timer size="16" class="mr-1" />
|
|
<WithUnits value={statistics.global.time.moving} type="time" />
|
|
<span class="mx-1">/</span>
|
|
<WithUnits value={statistics.global.time.total} type="time" />
|
|
</span>
|
|
</Tooltip>
|
|
{/if}
|
|
</Card.Content>
|
|
</Card.Root>
|