forked from coracle/flotilla
108 lines
3.9 KiB
Svelte
108 lines
3.9 KiB
Svelte
<script lang="ts">
|
|
import {hash, now, formatTimestampAsTime, formatTimestampAsDate} from "@welshman/lib"
|
|
import type {TrustedEvent} from "@welshman/util"
|
|
import {thunks, pubkey, deriveProfile, deriveProfileDisplay} from "@welshman/app"
|
|
import {isMobile} from "@lib/html"
|
|
import TapTarget from "@lib/components/TapTarget.svelte"
|
|
import Avatar from "@lib/components/Avatar.svelte"
|
|
import Icon from "@lib/components/Icon.svelte"
|
|
import Button from "@lib/components/Button.svelte"
|
|
import Content from "@app/components/Content.svelte"
|
|
import ThunkStatus from "@app/components/ThunkStatus.svelte"
|
|
import ProfileDetail from "@app/components/ProfileDetail.svelte"
|
|
import ReactionSummary from "@app/components/ReactionSummary.svelte"
|
|
import ChannelMessageEmojiButton from "@app/components/ChannelMessageEmojiButton.svelte"
|
|
import ChannelMessageMenuButton from "@app/components/ChannelMessageMenuButton.svelte"
|
|
import ChannelMessageMenuMobile from "@app/components/ChannelMessageMenuMobile.svelte"
|
|
import {colors} from "@app/state"
|
|
import {publishDelete, publishReaction} from "@app/commands"
|
|
import {pushModal} from "@app/modal"
|
|
|
|
interface Props {
|
|
url: string
|
|
room: string
|
|
event: TrustedEvent
|
|
replyTo?: (event: TrustedEvent) => void
|
|
showPubkey?: boolean
|
|
inert?: boolean
|
|
}
|
|
|
|
const {url, room, event, replyTo = undefined, showPubkey = false, inert = false}: Props = $props()
|
|
|
|
const thunk = $thunks[event.id]
|
|
const today = formatTimestampAsDate(now())
|
|
const profile = deriveProfile(event.pubkey, [url])
|
|
const profileDisplay = deriveProfileDisplay(event.pubkey, [url])
|
|
const [_, colorValue] = colors[parseInt(hash(event.pubkey)) % colors.length]
|
|
|
|
const reply = () => replyTo!(event)
|
|
|
|
const onTap = () => pushModal(ChannelMessageMenuMobile, {url, event, reply})
|
|
|
|
const openProfile = () => pushModal(ProfileDetail, {pubkey: event.pubkey, url})
|
|
|
|
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]})
|
|
}
|
|
}
|
|
</script>
|
|
|
|
<TapTarget
|
|
data-event={event.id}
|
|
onTap={inert ? null : onTap}
|
|
class="group relative flex w-full cursor-default flex-col p-2 pb-3 text-left">
|
|
<div class="flex w-full gap-3 overflow-auto">
|
|
{#if showPubkey}
|
|
<Button onclick={openProfile} class="flex items-start">
|
|
<Avatar src={$profile?.picture} class="border border-solid border-base-content" size={8} />
|
|
</Button>
|
|
{:else}
|
|
<div class="w-8 min-w-8 max-w-8"></div>
|
|
{/if}
|
|
<div class="min-w-0 flex-grow pr-1">
|
|
{#if showPubkey}
|
|
<div class="flex items-center gap-2">
|
|
<Button onclick={openProfile} class="text-sm font-bold" style="color: {colorValue}">
|
|
{$profileDisplay}
|
|
</Button>
|
|
<span class="text-xs opacity-50">
|
|
{#if formatTimestampAsDate(event.created_at) === today}
|
|
Today
|
|
{:else}
|
|
{formatTimestampAsDate(event.created_at)}
|
|
{/if}
|
|
at {formatTimestampAsTime(event.created_at)}
|
|
</span>
|
|
</div>
|
|
{/if}
|
|
<div class="text-sm">
|
|
<Content {event} {url} />
|
|
{#if thunk}
|
|
<ThunkStatus {thunk} class="mt-2" />
|
|
{/if}
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<div class="row-2 ml-10 mt-1">
|
|
<ReactionSummary {url} {event} {onReactionClick} reactionClass="tooltip-right" />
|
|
</div>
|
|
{#if !isMobile}
|
|
<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}>
|
|
<ChannelMessageEmojiButton {url} {room} {event} />
|
|
{#if replyTo}
|
|
<Button class="btn join-item btn-xs" onclick={reply}>
|
|
<Icon icon="reply" size={4} />
|
|
</Button>
|
|
{/if}
|
|
<ChannelMessageMenuButton {url} {event} />
|
|
</button>
|
|
{/if}
|
|
</TapTarget>
|