forked from coracle/flotilla
58 lines
1.8 KiB
Svelte
58 lines
1.8 KiB
Svelte
<script lang="ts">
|
|
import type {NativeEmoji} from "emoji-picker-element/shared"
|
|
import type {TrustedEvent} from "@welshman/util"
|
|
import {pubkey} from "@welshman/app"
|
|
import Button from "@lib/components/Button.svelte"
|
|
import Icon from "@lib/components/Icon.svelte"
|
|
import EmojiPicker from "@lib/components/EmojiPicker.svelte"
|
|
import EventInfo from "@app/components/EventInfo.svelte"
|
|
import EventDeleteConfirm from "@app/components/EventDeleteConfirm.svelte"
|
|
import {publishReaction} from "@app/commands"
|
|
import {pushModal} from "@app/modal"
|
|
|
|
type Props = {
|
|
url: string
|
|
event: TrustedEvent
|
|
reply: () => void
|
|
}
|
|
|
|
const {url, event, reply}: Props = $props()
|
|
|
|
const onEmoji = ((event: TrustedEvent, url: string, emoji: NativeEmoji) => {
|
|
history.back()
|
|
publishReaction({event, relays: [url], content: emoji.unicode})
|
|
}).bind(undefined, event, url)
|
|
|
|
const showEmojiPicker = () => pushModal(EmojiPicker, {onClick: onEmoji}, {replaceState: true})
|
|
|
|
const sendReply = () => {
|
|
history.back()
|
|
reply()
|
|
}
|
|
|
|
const showInfo = () => pushModal(EventInfo, {url, event}, {replaceState: true})
|
|
|
|
const showDelete = () => pushModal(EventDeleteConfirm, {url, event})
|
|
</script>
|
|
|
|
<div class="col-2">
|
|
<Button class="btn btn-primary w-full" onclick={showEmojiPicker}>
|
|
<Icon size={4} icon="smile-circle" />
|
|
Send Reaction
|
|
</Button>
|
|
<Button class="btn btn-neutral w-full" onclick={sendReply}>
|
|
<Icon size={4} icon="reply" />
|
|
Send Reply
|
|
</Button>
|
|
<Button class="btn btn-neutral" onclick={showInfo}>
|
|
<Icon size={4} icon="code-2" />
|
|
Message Details
|
|
</Button>
|
|
{#if event.pubkey === $pubkey}
|
|
<Button class="btn btn-neutral text-error" onclick={showDelete}>
|
|
<Icon size={4} icon="trash-bin-2" />
|
|
Delete Message
|
|
</Button>
|
|
{/if}
|
|
</div>
|