]> git.r.bdr.sh - rbdr/forum/blame - src/lib/components/topic_summary/topic_summary.svelte
Start migration to supabase
[rbdr/forum] / src / lib / components / topic_summary / topic_summary.svelte
CommitLineData
a7cf03c1 1<script lang="ts">
be1ce532
RBR
2 import type { Topic } from '$lib/data/types';
3
4 export let topic: Topic;
c1bc5993 5
58f7d521 6 import { _ } from 'svelte-i18n';
a7cf03c1 7 import { readableTime } from '$lib/utils/readable_time';
c1bc5993 8
58f7d521
RBR
9 $: remainingTime = topic.updated_at + topic.ttl - Date.now();
10 $: remaining = readableTime(remainingTime);
c1bc5993
RBR
11</script>
12
58f7d521 13<li class="h-entry" title={$_('topic.title')}>
cac85db0
RBR
14 <span class="p-name">
15 <a class="u-url u-uid" title={$_('topic.permalink_title')} href="/t/{topic.id}">
16 {topic.title}
17 </a></span
18 >
19 <span class="topic-ttl"
20 >({$_('topic.remaining_time', {
58f7d521 21 values: { remaining: $_(remaining.label, { values: { count: remaining.count } }) }
cac85db0
RBR
22 })})
23 </span>
c1bc5993
RBR
24</li>
25
26<style>
27</style>