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.
203 lines
5.9 KiB
TypeScript
203 lines
5.9 KiB
TypeScript
import classNames from 'classnames';
|
|
import { isEmpty } from 'lodash';
|
|
import moment from 'moment';
|
|
import React, { createContext, useCallback, useContext, useLayoutEffect, useState } from 'react';
|
|
import { InView } from 'react-intersection-observer';
|
|
import { useSelector } from 'react-redux';
|
|
import styled, { css } from 'styled-components';
|
|
import { MessageModelType, MessageRenderingProps } from '../../../../models/messageType';
|
|
import {
|
|
getMessageContentSelectorProps,
|
|
getQuotedMessageToAnimate,
|
|
getShouldHighlightMessage,
|
|
useMessageIsDeleted,
|
|
} from '../../../../state/selectors/conversations';
|
|
import { ScrollToLoadedMessageContext } from '../../SessionMessagesListContainer';
|
|
import { MessageAttachment } from './MessageAttachment';
|
|
import { MessageLinkPreview } from './MessageLinkPreview';
|
|
import { MessageQuote } from './MessageQuote';
|
|
import { MessageText } from './MessageText';
|
|
|
|
export type MessageContentSelectorProps = Pick<
|
|
MessageRenderingProps,
|
|
'text' | 'direction' | 'timestamp' | 'serverTimestamp' | 'previews' | 'quote' | 'attachments'
|
|
>;
|
|
|
|
type Props = {
|
|
messageId: string;
|
|
isDetailView?: boolean;
|
|
};
|
|
|
|
function onClickOnMessageInnerContainer(event: React.MouseEvent<HTMLDivElement>) {
|
|
const selection = window.getSelection();
|
|
// Text is being selected
|
|
if (selection && selection.type === 'Range') {
|
|
return;
|
|
}
|
|
|
|
// User clicked on message body
|
|
const target = event.target as HTMLDivElement;
|
|
if (target.className === 'text-selectable' || window.contextMenuShown) {
|
|
return;
|
|
}
|
|
}
|
|
|
|
const StyledMessageContent = styled.div``;
|
|
|
|
const StyledMessageOpaqueContent = styled.div<{
|
|
messageDirection: MessageModelType;
|
|
highlight: boolean;
|
|
}>`
|
|
background: ${props =>
|
|
props.messageDirection === 'incoming'
|
|
? 'var(--message-bubbles-received-background-color)'
|
|
: 'var(--message-bubbles-sent-background-color)'};
|
|
align-self: ${props => (props.messageDirection === 'incoming' ? 'flex-start' : 'flex-end')};
|
|
padding: var(--padding-message-content);
|
|
border-radius: var(--border-radius-message-box);
|
|
|
|
@keyframes highlight {
|
|
0% {
|
|
opacity: 1;
|
|
}
|
|
25% {
|
|
opacity: 0.2;
|
|
}
|
|
50% {
|
|
opacity: 1;
|
|
}
|
|
75% {
|
|
opacity: 0.2;
|
|
}
|
|
100% {
|
|
opacity: 1;
|
|
}
|
|
}
|
|
|
|
${props => {
|
|
return (
|
|
props.highlight &&
|
|
css`
|
|
animation-name: highlight;
|
|
animation-timing-function: linear;
|
|
animation-duration: 1s;
|
|
border-radius: 'var(--border-radius-message-box)';
|
|
`
|
|
);
|
|
}}
|
|
`;
|
|
|
|
export const IsMessageVisibleContext = createContext(false);
|
|
// tslint:disable: use-simple-attributes
|
|
|
|
export const MessageContent = (props: Props) => {
|
|
const [highlight, setHighlight] = useState(false);
|
|
const [didScroll, setDidScroll] = useState(false);
|
|
const contentProps = useSelector(state =>
|
|
getMessageContentSelectorProps(state as any, props.messageId)
|
|
);
|
|
const isDeleted = useMessageIsDeleted(props.messageId);
|
|
const [isMessageVisible, setMessageIsVisible] = useState(false);
|
|
|
|
const scrollToLoadedMessage = useContext(ScrollToLoadedMessageContext);
|
|
|
|
const [imageBroken, setImageBroken] = useState(false);
|
|
|
|
const onVisible = (inView: boolean | Object) => {
|
|
if (
|
|
inView === true ||
|
|
((inView as any).type === 'focus' && (inView as any).returnValue === true)
|
|
) {
|
|
if (isMessageVisible !== true) {
|
|
setMessageIsVisible(true);
|
|
}
|
|
}
|
|
};
|
|
|
|
const handleImageError = useCallback(() => {
|
|
setImageBroken(true);
|
|
}, [setImageBroken]);
|
|
|
|
const quotedMessageToAnimate = useSelector(getQuotedMessageToAnimate);
|
|
const shouldHighlightMessage = useSelector(getShouldHighlightMessage);
|
|
const isQuotedMessageToAnimate = quotedMessageToAnimate === props.messageId;
|
|
|
|
useLayoutEffect(() => {
|
|
if (isQuotedMessageToAnimate) {
|
|
if (!highlight && !didScroll) {
|
|
//scroll to me and flash me
|
|
scrollToLoadedMessage(props.messageId, 'quote-or-search-result');
|
|
setDidScroll(true);
|
|
if (shouldHighlightMessage) {
|
|
setHighlight(true);
|
|
}
|
|
}
|
|
return;
|
|
}
|
|
if (highlight) {
|
|
setHighlight(false);
|
|
}
|
|
|
|
if (didScroll) {
|
|
setDidScroll(false);
|
|
}
|
|
return;
|
|
});
|
|
|
|
if (!contentProps) {
|
|
return null;
|
|
}
|
|
|
|
const { direction, text, timestamp, serverTimestamp, previews } = contentProps;
|
|
|
|
const hasContentAfterAttachmentAndQuote = !isEmpty(previews) || !isEmpty(text);
|
|
|
|
const toolTipTitle = moment(serverTimestamp || timestamp).format('llll');
|
|
|
|
return (
|
|
<StyledMessageContent
|
|
className={classNames('module-message__container', `module-message__container--${direction}`)}
|
|
role="button"
|
|
onClick={onClickOnMessageInnerContainer}
|
|
title={toolTipTitle}
|
|
>
|
|
<InView
|
|
id={`inview-content-${props.messageId}`}
|
|
onChange={onVisible}
|
|
threshold={0}
|
|
rootMargin="500px 0px 500px 0px"
|
|
triggerOnce={false}
|
|
style={{
|
|
display: 'flex',
|
|
flexDirection: 'column',
|
|
gap: 'var(--margins-xs)',
|
|
}}
|
|
>
|
|
<IsMessageVisibleContext.Provider value={isMessageVisible}>
|
|
{hasContentAfterAttachmentAndQuote && (
|
|
<StyledMessageOpaqueContent messageDirection={direction} highlight={highlight}>
|
|
{!isDeleted && (
|
|
<>
|
|
<MessageQuote messageId={props.messageId} />
|
|
<MessageLinkPreview
|
|
messageId={props.messageId}
|
|
handleImageError={handleImageError}
|
|
/>
|
|
</>
|
|
)}
|
|
<MessageText messageId={props.messageId} />
|
|
</StyledMessageOpaqueContent>
|
|
)}
|
|
{!isDeleted && (
|
|
<MessageAttachment
|
|
messageId={props.messageId}
|
|
imageBroken={imageBroken}
|
|
handleImageError={handleImageError}
|
|
/>
|
|
)}
|
|
</IsMessageVisibleContext.Provider>
|
|
</InView>
|
|
</StyledMessageContent>
|
|
);
|
|
};
|