feat: add chat message actions
This commit is contained in:
parent
53d8fb52a2
commit
429538dd49
|
@ -23,6 +23,7 @@ interface Props {
|
||||||
onReplyClick: () => void
|
onReplyClick: () => void
|
||||||
onEditClick: () => void
|
onEditClick: () => void
|
||||||
onPinClick: () => void
|
onPinClick: () => void
|
||||||
|
onDeleteClick: () => void
|
||||||
onReactionClick: (reaction: Reaction) => void
|
onReactionClick: (reaction: Reaction) => void
|
||||||
reacting: boolean
|
reacting: boolean
|
||||||
onReactingChange: (reacting: boolean) => void
|
onReactingChange: (reacting: boolean) => void
|
||||||
|
@ -32,12 +33,13 @@ interface Props {
|
||||||
export const Actions = (props: Props) => {
|
export const Actions = (props: Props) => {
|
||||||
const {
|
const {
|
||||||
owner,
|
owner,
|
||||||
// pinned,
|
|
||||||
onReplyClick,
|
onReplyClick,
|
||||||
onEditClick,
|
onEditClick,
|
||||||
|
onDeleteClick,
|
||||||
|
// pinned,
|
||||||
// onPinClick,
|
// onPinClick,
|
||||||
onReactionClick,
|
|
||||||
reacting,
|
reacting,
|
||||||
|
onReactionClick,
|
||||||
onReactingChange,
|
onReactingChange,
|
||||||
reactions,
|
reactions,
|
||||||
} = props
|
} = props
|
||||||
|
@ -103,6 +105,7 @@ export const Actions = (props: Props) => {
|
||||||
description="Are you sure you want to delete this message?"
|
description="Are you sure you want to delete this message?"
|
||||||
actionLabel="Delete"
|
actionLabel="Delete"
|
||||||
actionVariant="danger"
|
actionVariant="danger"
|
||||||
|
onAction={onDeleteClick}
|
||||||
cancelLabel="Cancel"
|
cancelLabel="Cancel"
|
||||||
/>
|
/>
|
||||||
</AlertDialogTrigger>
|
</AlertDialogTrigger>
|
||||||
|
|
|
@ -1,12 +1,10 @@
|
||||||
import React, { useState } from 'react'
|
import React, { useState } from 'react'
|
||||||
|
|
||||||
import snarkdown from 'snarkdown'
|
|
||||||
|
|
||||||
import { UserProfileDialog } from '~/src/components/user-profile-dialog'
|
import { UserProfileDialog } from '~/src/components/user-profile-dialog'
|
||||||
import { useChatContext } from '~/src/contexts/chat-context'
|
import { useChatContext } from '~/src/contexts/chat-context'
|
||||||
import { BellIcon } from '~/src/icons/bell-icon'
|
import { BellIcon } from '~/src/icons/bell-icon'
|
||||||
import { PinIcon } from '~/src/icons/pin-icon'
|
// import { PinIcon } from '~/src/icons/pin-icon'
|
||||||
import { useProtocol } from '~/src/protocol/provider'
|
import { useProtocol } from '~/src/protocol'
|
||||||
import { styled } from '~/src/styles/config'
|
import { styled } from '~/src/styles/config'
|
||||||
import {
|
import {
|
||||||
Avatar,
|
Avatar,
|
||||||
|
@ -28,11 +26,11 @@ import { Actions } from './actions'
|
||||||
import { MessageReply } from './message-reply'
|
import { MessageReply } from './message-reply'
|
||||||
import { MessageReactions } from './reactions'
|
import { MessageReactions } from './reactions'
|
||||||
|
|
||||||
import type { Message, Reaction } from '~/src/protocol/use-messages'
|
import type { Message, Reaction } from '~/src/protocol'
|
||||||
|
|
||||||
interface Props {
|
interface Props {
|
||||||
message: Message
|
message: Message
|
||||||
previousMessage?: Message
|
prevMessage?: Message
|
||||||
}
|
}
|
||||||
|
|
||||||
// const MessageLink = forwardRef(function MessageLink(
|
// const MessageLink = forwardRef(function MessageLink(
|
||||||
|
@ -57,17 +55,28 @@ interface Props {
|
||||||
// })
|
// })
|
||||||
|
|
||||||
export const ChatMessage = (props: Props) => {
|
export const ChatMessage = (props: Props) => {
|
||||||
const { client } = useProtocol()
|
const { client, account } = useProtocol()
|
||||||
|
|
||||||
const { message } = props
|
const { message } = props
|
||||||
|
|
||||||
const owner = false
|
|
||||||
const mention = false
|
const mention = false
|
||||||
const pinned = false
|
const pinned = false
|
||||||
const reply = false
|
|
||||||
|
|
||||||
const { messageId, chatId, contentType, clock, displayName, reactions } =
|
const {
|
||||||
message
|
messageId,
|
||||||
|
chatId,
|
||||||
|
contentType,
|
||||||
|
clock,
|
||||||
|
reactions,
|
||||||
|
sender,
|
||||||
|
responseTo,
|
||||||
|
} = message
|
||||||
|
|
||||||
|
// TODO: remove usage of 0x prefix
|
||||||
|
const owner = '0x' + account?.publicKey === sender
|
||||||
|
const chat = client.community.getChatById(chatId)
|
||||||
|
|
||||||
|
const member = client.community.getMember(sender) ?? {}
|
||||||
|
|
||||||
const [editing, setEditing] = useState(false)
|
const [editing, setEditing] = useState(false)
|
||||||
const [reacting, setReacting] = useState(false)
|
const [reacting, setReacting] = useState(false)
|
||||||
|
@ -77,11 +86,20 @@ export const ChatMessage = (props: Props) => {
|
||||||
const userProfileDialog = useDialog(UserProfileDialog)
|
const userProfileDialog = useDialog(UserProfileDialog)
|
||||||
|
|
||||||
const handleMessageSubmit = (message: string) => {
|
const handleMessageSubmit = (message: string) => {
|
||||||
client.community.chats.get(chatId).sendTextMessage(message)
|
chat.sendTextMessage(message)
|
||||||
|
}
|
||||||
|
|
||||||
|
const handleMessageEdit = (message: string) => {
|
||||||
|
chat.editMessage(messageId, message)
|
||||||
|
setEditing(false)
|
||||||
|
}
|
||||||
|
|
||||||
|
const handleMessageDelete = () => {
|
||||||
|
chat.deleteMessage(messageId)
|
||||||
}
|
}
|
||||||
|
|
||||||
const handleReaction = (reaction: Reaction) => {
|
const handleReaction = (reaction: Reaction) => {
|
||||||
client.community.getChatById(chatId).sendReaction(messageId, reaction)
|
chat.sendReaction(messageId, reaction)
|
||||||
}
|
}
|
||||||
|
|
||||||
const handleReplyClick = () => {
|
const handleReplyClick = () => {
|
||||||
|
@ -96,10 +114,7 @@ export const ChatMessage = (props: Props) => {
|
||||||
if (editing) {
|
if (editing) {
|
||||||
return (
|
return (
|
||||||
<Box>
|
<Box>
|
||||||
<ChatInput
|
<ChatInput value={message?.text ?? ''} onSubmit={handleMessageEdit} />
|
||||||
value={message?.text ?? ''}
|
|
||||||
onSubmit={handleMessageSubmit}
|
|
||||||
/>
|
|
||||||
<Flex gap={2}>
|
<Flex gap={2}>
|
||||||
<Button
|
<Button
|
||||||
variant="outline"
|
variant="outline"
|
||||||
|
@ -161,25 +176,27 @@ export const ChatMessage = (props: Props) => {
|
||||||
<>
|
<>
|
||||||
<ContextMenuTrigger>
|
<ContextMenuTrigger>
|
||||||
<Wrapper mention={mention} pinned={pinned} data-active={reacting}>
|
<Wrapper mention={mention} pinned={pinned} data-active={reacting}>
|
||||||
{reply && <MessageReply reply={reply} />}
|
{responseTo && <MessageReply messageId={responseTo} />}
|
||||||
<Flex gap={2}>
|
<Flex gap={2}>
|
||||||
<Box>
|
<Box>
|
||||||
<DropdownMenuTrigger>
|
<DropdownMenuTrigger>
|
||||||
<button type="button">
|
<button type="button">
|
||||||
<Avatar size={44} />
|
<Avatar
|
||||||
|
size={44}
|
||||||
|
name={member.username}
|
||||||
|
colorHash={member.colorHash}
|
||||||
|
/>
|
||||||
</button>
|
</button>
|
||||||
<DropdownMenu>
|
<DropdownMenu>
|
||||||
<Flex direction="column" align="center" gap="1">
|
<Flex direction="column" align="center" gap="1">
|
||||||
<Avatar size="36" />
|
<Avatar size="36" />
|
||||||
<Text>{displayName}</Text>
|
<Text>{member.username}</Text>
|
||||||
<EmojiHash />
|
<EmojiHash />
|
||||||
</Flex>
|
</Flex>
|
||||||
<DropdownMenu.Separator />
|
<DropdownMenu.Separator />
|
||||||
<DropdownMenu.Item
|
<DropdownMenu.Item
|
||||||
icon={<BellIcon />}
|
icon={<BellIcon />}
|
||||||
onSelect={() =>
|
onSelect={() => userProfileDialog.open({ member })}
|
||||||
userProfileDialog.open({ name: displayName })
|
|
||||||
}
|
|
||||||
>
|
>
|
||||||
View Profile
|
View Profile
|
||||||
</DropdownMenu.Item>
|
</DropdownMenu.Item>
|
||||||
|
@ -210,7 +227,7 @@ export const ChatMessage = (props: Props) => {
|
||||||
|
|
||||||
<Flex gap="1" align="center">
|
<Flex gap="1" align="center">
|
||||||
<Text color="primary" weight="500" size="15">
|
<Text color="primary" weight="500" size="15">
|
||||||
{displayName}
|
{member.username}
|
||||||
</Text>
|
</Text>
|
||||||
<Text size="10" color="gray">
|
<Text size="10" color="gray">
|
||||||
{new Date(Number(clock)).toLocaleTimeString([], {
|
{new Date(Number(clock)).toLocaleTimeString([], {
|
||||||
|
@ -235,6 +252,7 @@ export const ChatMessage = (props: Props) => {
|
||||||
onEditClick={() => setEditing(true)}
|
onEditClick={() => setEditing(true)}
|
||||||
onReplyClick={handleReplyClick}
|
onReplyClick={handleReplyClick}
|
||||||
onPinClick={handlePinClick}
|
onPinClick={handlePinClick}
|
||||||
|
onDeleteClick={handleMessageDelete}
|
||||||
onReactionClick={handleReaction}
|
onReactionClick={handleReaction}
|
||||||
reacting={reacting}
|
reacting={reacting}
|
||||||
onReactingChange={setReacting}
|
onReactingChange={setReacting}
|
||||||
|
|
Loading…
Reference in New Issue