forked from coracle/flotilla
39 lines
1.4 KiB
Svelte
39 lines
1.4 KiB
Svelte
<script lang="ts">
|
|
import type {TrustedEvent, EventContent} from "@welshman/util"
|
|
import ReactionSummary from "@app/components/ReactionSummary.svelte"
|
|
import ThunkStatusOrDeleted from "@app/components/ThunkStatusOrDeleted.svelte"
|
|
import EventActivity from "@app/components/EventActivity.svelte"
|
|
import EventActions from "@app/components/EventActions.svelte"
|
|
import {publishDelete, publishReaction, canEnforceNip70} from "@app/commands"
|
|
import {makeThreadPath} from "@app/routes"
|
|
|
|
interface Props {
|
|
url: any
|
|
event: any
|
|
showActivity?: boolean
|
|
}
|
|
|
|
const {url, event, showActivity = false}: Props = $props()
|
|
|
|
const shouldProtect = canEnforceNip70(url)
|
|
|
|
const path = makeThreadPath(url, event.id)
|
|
|
|
const deleteReaction = async (event: TrustedEvent) =>
|
|
publishDelete({relays: [url], event, protect: await shouldProtect})
|
|
|
|
const createReaction = async (template: EventContent) =>
|
|
publishReaction({...template, event, relays: [url], protect: await shouldProtect})
|
|
</script>
|
|
|
|
<div class="flex flex-wrap items-center justify-between gap-2">
|
|
<div class="flex flex-grow flex-wrap justify-end gap-2">
|
|
<ReactionSummary {url} {event} {deleteReaction} {createReaction} reactionClass="tooltip-left" />
|
|
<ThunkStatusOrDeleted {event} />
|
|
{#if showActivity}
|
|
<EventActivity {url} {path} {event} />
|
|
{/if}
|
|
<EventActions {url} {event} noun="Thread" />
|
|
</div>
|
|
</div>
|