signal-desktop/ts/components/conversation/ImageGrid.tsx

367 lines
11 KiB
TypeScript
Raw Normal View History

2020-10-30 20:34:04 +00:00
// Copyright 2018-2020 Signal Messenger, LLC
// SPDX-License-Identifier: AGPL-3.0-only
import React from 'react';
import classNames from 'classnames';
import {
2019-01-14 21:49:58 +00:00
areAllAttachmentsVisual,
AttachmentType,
getAlt,
getImageDimensions,
getThumbnailUrl,
getUrl,
isVideoAttachment,
} from '../../types/Attachment';
import { Image } from './Image';
2019-01-14 21:49:58 +00:00
import { LocalizerType, ThemeType } from '../../types/Util';
export type Props = {
attachments: Array<AttachmentType>;
2019-01-16 03:03:56 +00:00
withContentAbove?: boolean;
withContentBelow?: boolean;
bottomOverlay?: boolean;
isSticker?: boolean;
stickerSize?: number;
2019-11-07 21:36:16 +00:00
tabIndex?: number;
2019-01-14 21:49:58 +00:00
i18n: LocalizerType;
theme?: ThemeType;
onError: () => void;
onClick?: (attachment: AttachmentType) => void;
};
2020-09-14 19:51:27 +00:00
export const ImageGrid = ({
attachments,
bottomOverlay,
i18n,
isSticker,
stickerSize,
onError,
onClick,
tabIndex,
theme,
2020-09-14 19:51:27 +00:00
withContentAbove,
withContentBelow,
}: Props): JSX.Element | null => {
const curveTopLeft = !withContentAbove;
const curveTopRight = curveTopLeft;
2020-09-14 19:51:27 +00:00
const curveBottom = !withContentBelow;
const curveBottomLeft = curveBottom;
const curveBottomRight = curveBottom;
2020-09-14 19:51:27 +00:00
const withBottomOverlay = Boolean(bottomOverlay && curveBottom);
2020-09-14 19:51:27 +00:00
if (!attachments || !attachments.length) {
return null;
}
2019-01-14 21:49:58 +00:00
2020-09-14 19:51:27 +00:00
if (attachments.length === 1 || !areAllAttachmentsVisual(attachments)) {
const { height, width } = getImageDimensions(
attachments[0],
isSticker ? stickerSize : undefined
);
2020-09-14 19:51:27 +00:00
return (
<div
className={classNames(
'module-image-grid',
'module-image-grid--one-image',
isSticker ? 'module-image-grid--with-sticker' : null
)}
>
<Image
alt={getAlt(attachments[0], i18n)}
i18n={i18n}
theme={theme}
2020-09-14 19:51:27 +00:00
blurHash={attachments[0].blurHash}
bottomOverlay={withBottomOverlay}
noBorder={isSticker}
noBackground={isSticker}
curveTopLeft={curveTopLeft}
curveTopRight={curveTopRight}
curveBottomLeft={curveBottomLeft}
curveBottomRight={curveBottomRight}
attachment={attachments[0]}
playIconOverlay={isVideoAttachment(attachments[0])}
height={height}
width={width}
url={getUrl(attachments[0])}
tabIndex={tabIndex}
onClick={onClick}
onError={onError}
/>
</div>
);
}
2020-09-14 19:51:27 +00:00
if (attachments.length === 2) {
return (
<div className="module-image-grid">
<Image
alt={getAlt(attachments[0], i18n)}
i18n={i18n}
theme={theme}
2020-09-14 19:51:27 +00:00
attachment={attachments[0]}
blurHash={attachments[0].blurHash}
bottomOverlay={withBottomOverlay}
noBorder={false}
curveTopLeft={curveTopLeft}
curveBottomLeft={curveBottomLeft}
playIconOverlay={isVideoAttachment(attachments[0])}
height={149}
width={149}
url={getThumbnailUrl(attachments[0])}
onClick={onClick}
onError={onError}
/>
<Image
alt={getAlt(attachments[1], i18n)}
i18n={i18n}
theme={theme}
2020-09-14 19:51:27 +00:00
blurHash={attachments[1].blurHash}
bottomOverlay={withBottomOverlay}
noBorder={false}
curveTopRight={curveTopRight}
curveBottomRight={curveBottomRight}
playIconOverlay={isVideoAttachment(attachments[1])}
height={149}
width={149}
attachment={attachments[1]}
url={getThumbnailUrl(attachments[1])}
onClick={onClick}
onError={onError}
/>
</div>
);
}
2020-09-14 19:51:27 +00:00
if (attachments.length === 3) {
return (
<div className="module-image-grid">
<Image
alt={getAlt(attachments[0], i18n)}
i18n={i18n}
theme={theme}
2020-09-14 19:51:27 +00:00
blurHash={attachments[0].blurHash}
bottomOverlay={withBottomOverlay}
noBorder={false}
curveTopLeft={curveTopLeft}
curveBottomLeft={curveBottomLeft}
attachment={attachments[0]}
playIconOverlay={isVideoAttachment(attachments[0])}
height={200}
width={199}
url={getUrl(attachments[0])}
onClick={onClick}
onError={onError}
/>
<div className="module-image-grid__column">
<Image
alt={getAlt(attachments[1], i18n)}
i18n={i18n}
theme={theme}
2020-05-27 21:37:06 +00:00
blurHash={attachments[1].blurHash}
curveTopRight={curveTopRight}
2020-09-14 19:51:27 +00:00
height={99}
width={99}
attachment={attachments[1]}
2020-09-14 19:51:27 +00:00
playIconOverlay={isVideoAttachment(attachments[1])}
url={getThumbnailUrl(attachments[1])}
onClick={onClick}
onError={onError}
/>
<Image
2020-09-14 19:51:27 +00:00
alt={getAlt(attachments[2], i18n)}
i18n={i18n}
theme={theme}
2020-09-14 19:51:27 +00:00
blurHash={attachments[2].blurHash}
2019-01-14 21:49:58 +00:00
bottomOverlay={withBottomOverlay}
2019-11-07 21:36:16 +00:00
noBorder={false}
2020-09-14 19:51:27 +00:00
curveBottomRight={curveBottomRight}
height={99}
width={99}
attachment={attachments[2]}
playIconOverlay={isVideoAttachment(attachments[2])}
url={getThumbnailUrl(attachments[2])}
onClick={onClick}
onError={onError}
/>
</div>
2020-09-14 19:51:27 +00:00
</div>
);
}
2019-01-14 21:49:58 +00:00
2020-09-14 19:51:27 +00:00
if (attachments.length === 4) {
return (
<div className="module-image-grid">
<div className="module-image-grid__column">
<div className="module-image-grid__row">
<Image
alt={getAlt(attachments[0], i18n)}
i18n={i18n}
theme={theme}
2020-05-27 21:37:06 +00:00
blurHash={attachments[0].blurHash}
curveTopLeft={curveTopLeft}
2020-09-14 19:51:27 +00:00
noBorder={false}
attachment={attachments[0]}
playIconOverlay={isVideoAttachment(attachments[0])}
height={149}
width={149}
url={getThumbnailUrl(attachments[0])}
onClick={onClick}
onError={onError}
/>
<Image
alt={getAlt(attachments[1], i18n)}
i18n={i18n}
theme={theme}
2020-05-27 21:37:06 +00:00
blurHash={attachments[1].blurHash}
curveTopRight={curveTopRight}
playIconOverlay={isVideoAttachment(attachments[1])}
2020-09-14 19:51:27 +00:00
noBorder={false}
height={149}
width={149}
attachment={attachments[1]}
url={getThumbnailUrl(attachments[1])}
onClick={onClick}
onError={onError}
/>
</div>
<div className="module-image-grid__row">
<Image
alt={getAlt(attachments[2], i18n)}
i18n={i18n}
theme={theme}
2020-05-27 21:37:06 +00:00
blurHash={attachments[2].blurHash}
2019-01-14 21:49:58 +00:00
bottomOverlay={withBottomOverlay}
2020-09-14 19:51:27 +00:00
noBorder={false}
curveBottomLeft={curveBottomLeft}
playIconOverlay={isVideoAttachment(attachments[2])}
2020-09-14 19:51:27 +00:00
height={149}
width={149}
attachment={attachments[2]}
url={getThumbnailUrl(attachments[2])}
onClick={onClick}
onError={onError}
/>
<Image
alt={getAlt(attachments[3], i18n)}
i18n={i18n}
theme={theme}
2020-05-27 21:37:06 +00:00
blurHash={attachments[3].blurHash}
2019-01-14 21:49:58 +00:00
bottomOverlay={withBottomOverlay}
2020-09-14 19:51:27 +00:00
noBorder={false}
curveBottomRight={curveBottomRight}
playIconOverlay={isVideoAttachment(attachments[3])}
2020-09-14 19:51:27 +00:00
height={149}
width={149}
attachment={attachments[3]}
url={getThumbnailUrl(attachments[3])}
onClick={onClick}
onError={onError}
/>
</div>
</div>
</div>
);
}
2020-09-14 19:51:27 +00:00
const moreMessagesOverlay = attachments.length > 5;
const moreMessagesOverlayText = moreMessagesOverlay
? `+${attachments.length - 5}`
: undefined;
return (
<div className="module-image-grid">
<div className="module-image-grid__column">
<div className="module-image-grid__row">
<Image
alt={getAlt(attachments[0], i18n)}
i18n={i18n}
theme={theme}
2020-09-14 19:51:27 +00:00
blurHash={attachments[0].blurHash}
curveTopLeft={curveTopLeft}
attachment={attachments[0]}
playIconOverlay={isVideoAttachment(attachments[0])}
height={149}
width={149}
url={getThumbnailUrl(attachments[0])}
onClick={onClick}
onError={onError}
/>
<Image
alt={getAlt(attachments[1], i18n)}
i18n={i18n}
theme={theme}
2020-09-14 19:51:27 +00:00
blurHash={attachments[1].blurHash}
curveTopRight={curveTopRight}
playIconOverlay={isVideoAttachment(attachments[1])}
height={149}
width={149}
attachment={attachments[1]}
url={getThumbnailUrl(attachments[1])}
onClick={onClick}
onError={onError}
/>
</div>
<div className="module-image-grid__row">
<Image
alt={getAlt(attachments[2], i18n)}
i18n={i18n}
theme={theme}
2020-09-14 19:51:27 +00:00
blurHash={attachments[2].blurHash}
bottomOverlay={withBottomOverlay}
noBorder={isSticker}
curveBottomLeft={curveBottomLeft}
playIconOverlay={isVideoAttachment(attachments[2])}
height={99}
width={99}
attachment={attachments[2]}
url={getThumbnailUrl(attachments[2])}
onClick={onClick}
onError={onError}
/>
<Image
alt={getAlt(attachments[3], i18n)}
i18n={i18n}
theme={theme}
2020-09-14 19:51:27 +00:00
blurHash={attachments[3].blurHash}
bottomOverlay={withBottomOverlay}
noBorder={isSticker}
playIconOverlay={isVideoAttachment(attachments[3])}
height={99}
width={98}
attachment={attachments[3]}
url={getThumbnailUrl(attachments[3])}
onClick={onClick}
onError={onError}
/>
<Image
alt={getAlt(attachments[4], i18n)}
i18n={i18n}
theme={theme}
2020-09-14 19:51:27 +00:00
blurHash={attachments[4].blurHash}
bottomOverlay={withBottomOverlay}
noBorder={isSticker}
curveBottomRight={curveBottomRight}
playIconOverlay={isVideoAttachment(attachments[4])}
height={99}
width={99}
darkOverlay={moreMessagesOverlay}
overlayText={moreMessagesOverlayText}
attachment={attachments[4]}
url={getThumbnailUrl(attachments[4])}
onClick={onClick}
onError={onError}
/>
</div>
</div>
</div>
);
};