diff --git a/ts/components/conversation/SessionStagedLinkPreview.tsx b/ts/components/conversation/SessionStagedLinkPreview.tsx index afd51c8d3..714b2f4fa 100644 --- a/ts/components/conversation/SessionStagedLinkPreview.tsx +++ b/ts/components/conversation/SessionStagedLinkPreview.tsx @@ -6,7 +6,7 @@ import { arrayBufferFromFile } from '../../types/Attachment'; import { AttachmentUtil, LinkPreviewUtil } from '../../util'; import { fetchLinkPreviewImage } from '../../util/linkPreviewFetch'; import { StagedLinkPreview } from './StagedLinkPreview'; -import { getImageDimensions } from '../../types/attachments/VisualAttachment'; +import { getImageDimensions, THUMBNAIL_SIDE } from '../../types/attachments/VisualAttachment'; export interface StagedLinkPreviewProps extends StagedLinkPreviewData { onClose: (url: string) => void; @@ -69,7 +69,7 @@ export const getPreview = async ( type: fullSizeImage.contentType, }), }, - { maxSize: 100 * 1000 } // this is a preview image. No need for it to be crazy big. 100k is big enough + { maxSide: THUMBNAIL_SIDE, maxSize: 100 * 1000 } // this is a preview image. No need for it to be crazy big. 100k is big enough ); const data = await arrayBufferFromFile(withBlob.blob); diff --git a/ts/components/conversation/composition/CompositionBox.tsx b/ts/components/conversation/composition/CompositionBox.tsx index e048eef3f..56f1fc255 100644 --- a/ts/components/conversation/composition/CompositionBox.tsx +++ b/ts/components/conversation/composition/CompositionBox.tsx @@ -46,6 +46,7 @@ import { Flex } from '../../basic/Flex'; import { CaptionEditor } from '../../CaptionEditor'; import { StagedAttachmentList } from '../StagedAttachmentList'; import { processNewAttachment } from '../../../types/MessageAttachment'; +import { StagedAttachmentImportedType } from '../../../util/attachmentsUtil'; export interface ReplyingToMessageProps { convoId: string; @@ -71,7 +72,7 @@ export interface StagedAttachmentType extends AttachmentType { export type SendMessageType = { body: string; - attachments: Array | undefined; + attachments: Array | undefined; quote: any | undefined; preview: any | undefined; groupInvitation: { url: string | undefined; name: string } | undefined; @@ -866,7 +867,7 @@ class CompositionBoxInner extends React.Component { } // this function is called right before sending a message, to gather really the files behind attachments. - private async getFiles(): Promise> { + private async getFiles(): Promise> { const { stagedAttachments } = this.props; if (_.isEmpty(stagedAttachments)) { diff --git a/ts/types/Attachment.ts b/ts/types/Attachment.ts index 0e6d29e9f..2f73a4ed7 100644 --- a/ts/types/Attachment.ts +++ b/ts/types/Attachment.ts @@ -162,10 +162,10 @@ export function isVideoAttachment(attachment?: AttachmentType): boolean { ); } -export function hasVideoScreenshot(attachments?: Array) { +export function hasVideoScreenshot(attachments?: Array): boolean { const firstAttachment = attachments ? attachments[0] : null; - return firstAttachment && firstAttachment.screenshot && firstAttachment.screenshot.url; + return Boolean(firstAttachment?.screenshot?.url); } type DimensionsType = { diff --git a/ts/util/attachmentsUtil.ts b/ts/util/attachmentsUtil.ts index 0bed50dd8..cfb3d4b26 100644 --- a/ts/util/attachmentsUtil.ts +++ b/ts/util/attachmentsUtil.ts @@ -213,9 +213,14 @@ export async function autoScale( }; } +export type StagedAttachmentImportedType = Omit< + StagedAttachmentType, + 'file' | 'url' | 'fileSize' +> & { flags?: number }; + export async function getFileAndStoreLocally( attachment: StagedAttachmentType -): Promise<(StagedAttachmentType & { flags?: number }) | null> { +): Promise { if (!attachment) { return null; } @@ -244,15 +249,10 @@ export async function getFileAndStoreLocally( contentType: attachment.contentType, }); - console.warn('attachmentSavedLocally', attachmentSavedLocally); - return { caption: attachment.caption, contentType: attachment.contentType, fileName: attachment.fileName, - file: new File([blob], 'getFile-blob'), - fileSize: null, - url: '', path: attachmentSavedLocally.path, width: scaled.width, height: scaled.height,