forked from coracle/flotilla
27 lines
896 B
Svelte
27 lines
896 B
Svelte
<script lang="ts">
|
|
import {formatTimestamp, formatTimestampRelative} from "@welshman/app"
|
|
import Icon from "@lib/components/Icon.svelte"
|
|
import Link from "@lib/components/Link.svelte"
|
|
import Content from "@app/components/Content.svelte"
|
|
import Profile from "@app/components/Profile.svelte"
|
|
import ThreadActions from "@app/components/ThreadActions.svelte"
|
|
import {makeThreadPath} from "@app/routes"
|
|
import {REPLY} from "@app/state"
|
|
|
|
export let url
|
|
export let event
|
|
</script>
|
|
|
|
<Link class="col-2 card2 bg-alt w-full cursor-pointer" href={makeThreadPath(url, event.id)}>
|
|
<div class="flex w-full justify-between gap-2">
|
|
<Profile pubkey={event.pubkey} />
|
|
<p class="text-sm opacity-75">
|
|
{formatTimestamp(event.created_at)}
|
|
</p>
|
|
</div>
|
|
<div class="col-4 w-full pl-12">
|
|
<Content {event} />
|
|
<ThreadActions showActivity {url} {event} />
|
|
</div>
|
|
</Link>
|