forked from coracle/flotilla
36 lines
1.3 KiB
Svelte
36 lines
1.3 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} from "@app/commands"
|
|
import {makeThreadPath} from "@app/routes"
|
|
|
|
interface Props {
|
|
url: any
|
|
event: any
|
|
showActivity?: boolean
|
|
}
|
|
|
|
const {url, event, showActivity = false}: Props = $props()
|
|
|
|
const path = makeThreadPath(url, event.id)
|
|
|
|
const deleteReaction = (event: TrustedEvent) => publishDelete({relays: [url], event})
|
|
|
|
const createReaction = (template: EventContent) =>
|
|
publishReaction({...template, event, relays: [url]})
|
|
</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="Comment" />
|
|
</div>
|
|
</div>
|