fix: make attachment "save" hidden until downloaded

also display mime type of file about to be downloaded before trusted
contact

SES-28
SES-80
pull/3206/head
Audric Ackermann 8 months ago
parent 462d82d784
commit 1460220fd1

@ -5,6 +5,7 @@ import { AttachmentDownloads } from '../../../../session/utils';
import { updateConfirmModal } from '../../../../state/ducks/modalDialog';
import { SessionButtonColor } from '../../../basic/SessionButton';
import { SessionIcon } from '../../../icon';
import { useMessageAttachments } from '../../../../state/selectors';
const StyledTrustSenderUI = styled.div`
padding-inline: var(--margins-lg);
@ -25,6 +26,7 @@ const ClickToDownload = styled.div`
`;
export const ClickToTrustSender = (props: { messageId: string }) => {
const attachments = useMessageAttachments(props.messageId);
const openConfirmationModal = async (e: any) => {
e.stopPropagation();
e.preventDefault();
@ -110,13 +112,17 @@ export const ClickToTrustSender = (props: { messageId: string }) => {
);
};
const firstMimeType = attachments?.[0].contentType;
return (
// eslint-disable-next-line @typescript-eslint/no-misused-promises
<StyledTrustSenderUI onClick={openConfirmationModal}>
<SessionIcon iconSize="small" iconType="gallery" />
{/** TODO - Add file type */}
<ClickToDownload>
{window.i18n('attachmentsClickToDownload', { file_type: '' })}
{window.i18n('attachmentsClickToDownload', {
file_type: firstMimeType || window.i18n('unknown'),
})}
</ClickToDownload>
</StyledTrustSenderUI>
);

@ -370,8 +370,8 @@ export const MessageContextMenu = (props: Props) => {
messageId={messageId}
/>
)}
{attachments?.length ? (
<Item onClick={saveAttachment}>{window.i18n('attachmentsDownload')}</Item>
{attachments?.length && attachments.every(m => !m.pending && m.path) ? (
<Item onClick={saveAttachment}>{window.i18n('save')}</Item>
) : null}
<Item onClick={copyText}>{window.i18n('copy')}</Item>
{(isSent || !isOutgoing) && <Item onClick={onReply}>{window.i18n('reply')}</Item>}

Loading…
Cancel
Save