forked from coracle/flotilla
125 lines
4.2 KiB
Svelte
125 lines
4.2 KiB
Svelte
<script lang="ts">
|
|
import {readable} from "svelte/store"
|
|
import {hash} from "@welshman/lib"
|
|
import type {TrustedEvent} from "@welshman/util"
|
|
import {deriveProfile, deriveProfileDisplay, formatTimestampAsTime, pubkey} from "@welshman/app"
|
|
import type {Thunk} from "@welshman/app"
|
|
import {isMobile} from "@lib/html"
|
|
import {slideAndFade, conditionalTransition} from "@lib/transition"
|
|
import Delay from "@lib/components/Delay.svelte"
|
|
import Avatar from "@lib/components/Avatar.svelte"
|
|
import Link from "@lib/components/Link.svelte"
|
|
import Content from "@app/components/Content.svelte"
|
|
import ThunkStatus from "@app/components/ThunkStatus.svelte"
|
|
import ReplySummary from "@app/components/ReplySummary.svelte"
|
|
import ReactionSummary from "@app/components/ReactionSummary.svelte"
|
|
import ChannelConversation from "@app/components/ChannelConversation.svelte"
|
|
import ChannelMessageEmojiButton from "@app/components/ChannelMessageEmojiButton.svelte"
|
|
import ChannelMessageMenuButton from "@app/components/ChannelMessageMenuButton.svelte"
|
|
import ChannelMessageMenuMobile from "@app/components/ChannelMessageMenuMobile.svelte"
|
|
import {colors, tagRoom, deriveEvent, pubkeyLink} from "@app/state"
|
|
import {publishDelete, publishReaction} from "@app/commands"
|
|
import {pushDrawer, pushModal} from "@app/modal"
|
|
|
|
export let url, room
|
|
export let event: TrustedEvent
|
|
export let thunk: Thunk
|
|
export let showPubkey = false
|
|
export let isHead = false
|
|
export let inert = false
|
|
|
|
const profile = deriveProfile(event.pubkey)
|
|
const profileDisplay = deriveProfileDisplay(event.pubkey)
|
|
const rootTag = event.tags.find(t => t[0].match(/^e$/i))
|
|
const rootId = rootTag?.[1]
|
|
const rootHints = [rootTag?.[2]].filter(Boolean) as string[]
|
|
const rootEvent = rootId ? deriveEvent(rootId, rootHints) : readable(null)
|
|
const [_, colorValue] = colors[parseInt(hash(event.pubkey)) % colors.length]
|
|
|
|
const transition = conditionalTransition(thunk, slideAndFade)
|
|
|
|
const onClick = () => {
|
|
if (inert) {
|
|
return
|
|
}
|
|
|
|
if (isMobile) {
|
|
pushModal(ChannelMessageMenuMobile, {url, event})
|
|
} else {
|
|
const root = $rootEvent || event
|
|
|
|
pushDrawer(ChannelConversation, {url, room, event: root})
|
|
}
|
|
}
|
|
|
|
const onReactionClick = (content: string, events: TrustedEvent[]) => {
|
|
const reaction = events.find(e => e.pubkey === $pubkey)
|
|
|
|
if (reaction) {
|
|
publishDelete({relays: [url], event: reaction})
|
|
} else {
|
|
publishReaction({
|
|
event,
|
|
content,
|
|
relays: [url],
|
|
tags: [tagRoom(room, url)],
|
|
})
|
|
}
|
|
}
|
|
</script>
|
|
|
|
<Delay>
|
|
<button
|
|
type="button"
|
|
in:transition
|
|
on:click={onClick}
|
|
class="group relative flex w-full flex-col gap-1 p-2 text-left transition-colors"
|
|
class:hover:bg-base-300={!inert}>
|
|
<div class="flex w-full gap-3">
|
|
{#if showPubkey}
|
|
<Link external href={pubkeyLink(event.pubkey)} class="flex items-start">
|
|
<Avatar
|
|
src={$profile?.picture}
|
|
class="border border-solid border-base-content"
|
|
size={10} />
|
|
</Link>
|
|
{:else}
|
|
<div class="w-10 min-w-10 max-w-10" />
|
|
{/if}
|
|
<div class="-mt-1 flex-grow pr-1">
|
|
{#if showPubkey}
|
|
<div class="flex items-center gap-2">
|
|
<Link
|
|
external
|
|
href={pubkeyLink(event.pubkey)}
|
|
class="text-sm font-bold"
|
|
style="color: {colorValue}">
|
|
{$profileDisplay}
|
|
</Link>
|
|
<span class="text-xs opacity-50">{formatTimestampAsTime(event.created_at)}</span>
|
|
</div>
|
|
{/if}
|
|
<div class="text-sm">
|
|
<Content {event} />
|
|
{#if thunk}
|
|
<ThunkStatus {thunk} />
|
|
{/if}
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<div class="row-2 ml-12">
|
|
{#if !isHead}
|
|
<ReplySummary {event} />
|
|
{/if}
|
|
<ReactionSummary {event} {onReactionClick} />
|
|
</div>
|
|
<button
|
|
class="join absolute right-1 top-1 border border-solid border-neutral text-xs opacity-0 transition-all"
|
|
class:group-hover:opacity-100={!isMobile}
|
|
on:click|stopPropagation>
|
|
<ChannelMessageEmojiButton {url} {room} {event} />
|
|
<ChannelMessageMenuButton {url} {event} />
|
|
</button>
|
|
</button>
|
|
</Delay>
|