fix: copy accountId & copy button on messageInfo did not write anything

pull/3206/head
Audric Ackermann 7 months ago
parent d009ad0209
commit bb8ce5fc3b
No known key found for this signature in database

@ -22,6 +22,7 @@ import { deleteMessagesById } from '../../../../../interactions/conversations/un
import { PubKey } from '../../../../../session/types'; import { PubKey } from '../../../../../session/types';
import { import {
useMessageAttachments, useMessageAttachments,
useMessageAuthor,
useMessageBody, useMessageBody,
useMessageDirection, useMessageDirection,
useMessageIsDeletable, useMessageIsDeletable,
@ -191,7 +192,7 @@ function useMessageInfo(messageId: string | undefined) {
return details; return details;
} }
type WithMessageIdOpt = { messageId?: string }; type WithMessageIdOpt = { messageId: string };
/** /**
* Always shown, even if the message has no body so we always have at least one item in the PanelButtonGroup * Always shown, even if the message has no body so we always have at least one item in the PanelButtonGroup
@ -234,22 +235,22 @@ function ReplyToMessageButton({ messageId }: WithMessageIdOpt) {
); );
} }
function CopySenderSessionId() { function CopySenderSessionId({ messageId }: WithMessageIdOpt) {
const isGroupOrCommunity = useSelectedIsGroupOrCommunity(); const isGroupOrCommunity = useSelectedIsGroupOrCommunity();
const isPrivate = useSelectedIsPrivate(); const isPrivate = useSelectedIsPrivate();
const isPublic = useSelectedIsPublic(); const isPublic = useSelectedIsPublic();
const selectedConvo = useSelectedConversationKey(); const senderId = useMessageAuthor(messageId);
const isGroup = isGroupOrCommunity && !isPublic; const isGroup = isGroupOrCommunity && !isPublic;
const isPrivateButNotBlinded = selectedConvo && isPrivate && !PubKey.isBlinded(selectedConvo); const isPrivateButNotBlinded = senderId && isPrivate && !PubKey.isBlinded(senderId);
if (selectedConvo && (isGroup || isPrivateButNotBlinded)) { if (senderId && (isGroup || isPrivateButNotBlinded)) {
return ( return (
<PanelIconButton <PanelIconButton
text={window.i18n('accountIDCopy')} text={window.i18n('accountIDCopy')}
iconType="copy" iconType="copy"
onClick={() => { onClick={() => {
clipboard.writeText(selectedConvo); clipboard.writeText(senderId);
ToastUtils.pushCopiedToClipBoard(); ToastUtils.pushCopiedToClipBoard();
}} }}
dataTestId="copy-sender-from-details" dataTestId="copy-sender-from-details"
@ -363,9 +364,9 @@ export const OverlayMessageInfo = () => {
<SpacerLG /> <SpacerLG />
<PanelButtonGroup style={{ margin: '0' }}> <PanelButtonGroup style={{ margin: '0' }}>
{/* CopyMessageBodyButton is always shown so the PanelButtonGroup always has at least one item */} {/* CopyMessageBodyButton is always shown so the PanelButtonGroup always has at least one item */}
<CopyMessageBodyButton /> <CopyMessageBodyButton messageId={messageId} />
<ReplyToMessageButton /> <ReplyToMessageButton messageId={messageId} />
<CopySenderSessionId /> <CopySenderSessionId messageId={messageId} />
{hasErrors && direction === 'outgoing' && ( {hasErrors && direction === 'outgoing' && (
<PanelIconButton <PanelIconButton
text={window.i18n('resend')} text={window.i18n('resend')}

Loading…
Cancel
Save