mirror of
https://github.com/coracle-social/flotilla.git
synced 2025-12-10 10:57:04 +00:00
44 lines
1.4 KiB
Svelte
44 lines
1.4 KiB
Svelte
<script lang="ts">
|
|
import {nthEq} from "@welshman/lib"
|
|
import {formatTimestamp} from "@welshman/app"
|
|
import Link from "@lib/components/Link.svelte"
|
|
import Content from "@app/components/Content.svelte"
|
|
import ProfileName from "@app/components/ProfileName.svelte"
|
|
import ThreadActions from "@app/components/ThreadActions.svelte"
|
|
import {makeThreadPath} from "@app/routes"
|
|
import {pubkeyLink} from "@app/state"
|
|
|
|
export let url
|
|
export let event
|
|
export let hideActions = false
|
|
|
|
const title = event.tags.find(nthEq(0, "title"))?.[1]
|
|
</script>
|
|
|
|
<Link class="col-2 card2 bg-alt w-full cursor-pointer" href={makeThreadPath(url, event.id)}>
|
|
{#if title}
|
|
<div class="flex w-full items-center justify-between gap-2">
|
|
<p class="text-xl">{title}</p>
|
|
<p class="text-sm opacity-75">
|
|
{formatTimestamp(event.created_at)}
|
|
</p>
|
|
</div>
|
|
{:else}
|
|
<p class="-mb-3 h-0 text-end text-xs opacity-75">
|
|
{formatTimestamp(event.created_at)}
|
|
</p>
|
|
{/if}
|
|
<Content {event} expandMode="inline" quoteProps={{relays: [url]}} />
|
|
<div class="flex w-full flex-col items-end justify-between gap-2 sm:flex-row">
|
|
<span class="whitespace-nowrap py-1 text-sm opacity-75">
|
|
Posted by
|
|
<Link external href={pubkeyLink(event.pubkey)} class="link-content">
|
|
@<ProfileName pubkey={event.pubkey} />
|
|
</Link>
|
|
</span>
|
|
{#if !hideActions}
|
|
<ThreadActions showActivity {url} {event} />
|
|
{/if}
|
|
</div>
|
|
</Link>
|