From 9754a095be9fed67c94aaa718596f59efee01b64 Mon Sep 17 00:00:00 2001 From: Audric Ackermann Date: Mon, 26 Aug 2024 13:32:32 +1000 Subject: [PATCH] fix: use hidemenu desc & download file with filetype --- .../message/message-content/ClickToTrustSender.tsx | 14 +++++++++++--- .../settings/section/CategoryAppearance.tsx | 2 +- 2 files changed, 12 insertions(+), 4 deletions(-) diff --git a/ts/components/conversation/message/message-content/ClickToTrustSender.tsx b/ts/components/conversation/message/message-content/ClickToTrustSender.tsx index ca8bebef1..df963df6f 100644 --- a/ts/components/conversation/message/message-content/ClickToTrustSender.tsx +++ b/ts/components/conversation/message/message-content/ClickToTrustSender.tsx @@ -3,9 +3,11 @@ import { Data } from '../../../../data/data'; import { getConversationController } from '../../../../session/conversations'; import { AttachmentDownloads } from '../../../../session/utils'; import { updateConfirmModal } from '../../../../state/ducks/modalDialog'; +import { useMessageAttachments } from '../../../../state/selectors'; +import { isAudio } from '../../../../types/MIME'; +import { isImageTypeSupported, isVideoTypeSupported } from '../../../../util/GoogleChrome'; import { SessionButtonColor } from '../../../basic/SessionButton'; import { SessionIcon } from '../../../icon'; -import { useMessageAttachments } from '../../../../state/selectors'; const StyledTrustSenderUI = styled.div` padding-inline: var(--margins-lg); @@ -115,7 +117,13 @@ export const ClickToTrustSender = (props: { messageId: string }) => { ); }; - const firstMimeType = attachments?.[0].contentType; + const firstMimeType = attachments?.[0].contentType || 'unknown'; + + const fileType = isAudio(firstMimeType) + ? window.i18n('audio') + : isVideoTypeSupported(firstMimeType) || isImageTypeSupported(firstMimeType) + ? window.i18n('media') + : window.i18n('file'); return ( // eslint-disable-next-line @typescript-eslint/no-misused-promises @@ -124,7 +132,7 @@ export const ClickToTrustSender = (props: { messageId: string }) => { {/** TODO - Add file type */} {window.i18n('attachmentsClickToDownload', { - file_type: firstMimeType || window.i18n('unknown'), + file_type: fileType, })} diff --git a/ts/components/settings/section/CategoryAppearance.tsx b/ts/components/settings/section/CategoryAppearance.tsx index 5e64b3dd4..a8b2aa7ae 100644 --- a/ts/components/settings/section/CategoryAppearance.tsx +++ b/ts/components/settings/section/CategoryAppearance.tsx @@ -28,7 +28,7 @@ export const SettingsCategoryAppearance = () => { forceUpdate(); }} title={window.i18n('appearanceHideMenuBar')} - description={window.i18n('appearanceHideMenuBar')} + description={window.i18n('hideMenuBarDescription')} active={isHideMenuBarActive} /> )}