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')}>
15 <a class="u-url u-uid underline text-blue-600 visited:text-purple-500" title={$_('topic.permalink_title')} href="/t/{topic.id}">
19 <span class="topic-ttl"
20 >({$_('topic.remaining_time', {
21 values: { remaining: $_(remaining.label, { values: { count: remaining.count } }) }