Merge pull request #3170 from yougotwill/fix/ses-2546/attachment_preview_loading
Fix attachment previewspull/3172/head
commit
fa72be5d2f
@ -0,0 +1,75 @@
|
|||||||
|
import classNames from 'classnames';
|
||||||
|
import styled from 'styled-components';
|
||||||
|
import { PropsForAttachment } from '../../../../state/ducks/conversations';
|
||||||
|
import { AttachmentTypeWithPath, getExtensionForDisplay } from '../../../../types/Attachment';
|
||||||
|
import { Spinner } from '../../../loading';
|
||||||
|
import { MessageModelType } from '../../../../models/messageType';
|
||||||
|
import { MessageHighlighter } from './MessageHighlighter';
|
||||||
|
|
||||||
|
const StyledGenericAttachmentContainer = styled(MessageHighlighter)<{
|
||||||
|
highlight: boolean;
|
||||||
|
selected: boolean;
|
||||||
|
}>`
|
||||||
|
${props => props.selected && 'box-shadow: var(--drop-shadow);'}
|
||||||
|
`;
|
||||||
|
|
||||||
|
export function MessageGenericAttachment({
|
||||||
|
attachment,
|
||||||
|
/** comes from the attachment iself or the component if it needs to be decrypted */
|
||||||
|
pending,
|
||||||
|
selected,
|
||||||
|
highlight,
|
||||||
|
direction,
|
||||||
|
onClick,
|
||||||
|
}: {
|
||||||
|
attachment: PropsForAttachment | AttachmentTypeWithPath;
|
||||||
|
pending: boolean;
|
||||||
|
selected: boolean;
|
||||||
|
highlight: boolean;
|
||||||
|
direction?: MessageModelType;
|
||||||
|
onClick?: (e: any) => void;
|
||||||
|
}) {
|
||||||
|
const { fileName, fileSize, contentType } = attachment;
|
||||||
|
const extension = getExtensionForDisplay({ contentType, fileName });
|
||||||
|
|
||||||
|
return (
|
||||||
|
<StyledGenericAttachmentContainer
|
||||||
|
highlight={highlight}
|
||||||
|
selected={selected}
|
||||||
|
className={'module-message__generic-attachment'}
|
||||||
|
onClick={onClick}
|
||||||
|
>
|
||||||
|
{pending ? (
|
||||||
|
<div className="module-message__generic-attachment__spinner-container">
|
||||||
|
<Spinner size="small" />
|
||||||
|
</div>
|
||||||
|
) : (
|
||||||
|
<div className="module-message__generic-attachment__icon-container">
|
||||||
|
<div role="button" className="module-message__generic-attachment__icon">
|
||||||
|
{extension ? (
|
||||||
|
<div className="module-message__generic-attachment__icon__extension">{extension}</div>
|
||||||
|
) : null}
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
)}
|
||||||
|
<div className="module-message__generic-attachment__text">
|
||||||
|
<div
|
||||||
|
className={classNames(
|
||||||
|
'module-message__generic-attachment__file-name',
|
||||||
|
`module-message__generic-attachment__file-name--${direction}`
|
||||||
|
)}
|
||||||
|
>
|
||||||
|
{fileName}
|
||||||
|
</div>
|
||||||
|
<div
|
||||||
|
className={classNames(
|
||||||
|
'module-message__generic-attachment__file-size',
|
||||||
|
`module-message__generic-attachment__file-size--${direction}`
|
||||||
|
)}
|
||||||
|
>
|
||||||
|
{fileSize}
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</StyledGenericAttachmentContainer>
|
||||||
|
);
|
||||||
|
}
|
@ -0,0 +1,14 @@
|
|||||||
|
import { createContext, useContext } from 'react';
|
||||||
|
|
||||||
|
/**
|
||||||
|
* This React context is used to share deep into a node tree the message ID we are currently rendering.
|
||||||
|
* This is to avoid passing the prop to all the subtree component
|
||||||
|
*/
|
||||||
|
const ContextMessageId = createContext<string | undefined>(undefined);
|
||||||
|
|
||||||
|
export const ContextMessageProvider = ContextMessageId.Provider;
|
||||||
|
|
||||||
|
export function useMessageIdFromContext() {
|
||||||
|
const messageId = useContext(ContextMessageId);
|
||||||
|
return messageId;
|
||||||
|
}
|
Loading…
Reference in New Issue