34 lines
1.1 KiB
Svelte
34 lines
1.1 KiB
Svelte
<script lang="ts">
|
|
import {
|
|
fromPairs,
|
|
formatTimestamp,
|
|
formatTimestampAsDate,
|
|
formatTimestampAsTime,
|
|
} from "@welshman/lib"
|
|
import type {TrustedEvent} from "@welshman/util"
|
|
import Icon from "@lib/components/Icon.svelte"
|
|
|
|
type Props = {
|
|
event: TrustedEvent
|
|
}
|
|
|
|
const {event}: Props = $props()
|
|
const meta = $derived(fromPairs(event.tags) as Record<string, string>)
|
|
const start = $derived(parseInt(meta.start))
|
|
const end = $derived(parseInt(meta.end))
|
|
const startDateDisplay = $derived(formatTimestampAsDate(start))
|
|
const endDateDisplay = $derived(formatTimestampAsDate(end))
|
|
const isSingleDay = $derived(startDateDisplay === endDateDisplay)
|
|
</script>
|
|
|
|
<div class="flex flex-grow flex-wrap justify-between gap-2">
|
|
<p class="text-xl">{meta.title || meta.name}</p>
|
|
<div class="flex items-center gap-2 text-sm">
|
|
<Icon icon="clock-circle" size={4} />
|
|
<span class="sm:hidden">{formatTimestampAsDate(start)}</span>
|
|
{formatTimestampAsTime(start)} — {isSingleDay
|
|
? formatTimestampAsTime(end)
|
|
: formatTimestamp(end)}
|
|
</div>
|
|
</div>
|