You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
76 lines
2.4 KiB
TypeScript
76 lines
2.4 KiB
TypeScript
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>
|
|
);
|
|
}
|