2 import type { Topic } from '$lib/data/types';
4 export let topic: Topic;
6 import { _ } from 'svelte-i18n';
7 import { readableTime } from '$lib/utils/readable_time';
9 $: remainingTime = new Date(topic.updated_at).getTime() + topic.ttl - Date.now();
10 $: remaining = readableTime(remainingTime);
13 <li class="h-entry" title={$_('topic.title')}>
16 class="u-url u-uid underline text-blue-600 visited:text-purple-500"
17 title={$_('topic.permalink_title')}
23 <span class="topic-ttl"
24 >({$_('topic.remaining_time', {
25 values: { remaining: $_(remaining.label, { values: { count: remaining.count } }) }