|
|
|
@ -28,6 +28,7 @@ import { MessagePreview } from './MessagePreview';
|
|
|
|
|
import { MessageQuote } from './MessageQuote';
|
|
|
|
|
import { MessageText } from './MessageText';
|
|
|
|
|
import { ScrollToLoadedMessageContext } from '../../SessionMessagesListContainer';
|
|
|
|
|
import styled, { CSSProperties } from 'styled-components';
|
|
|
|
|
|
|
|
|
|
export type MessageContentSelectorProps = Pick<
|
|
|
|
|
MessageRenderingProps,
|
|
|
|
@ -95,6 +96,37 @@ function onClickOnMessageInnerContainer(event: React.MouseEvent<HTMLDivElement>)
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
const StyledMessageContent = styled.div<{
|
|
|
|
|
isOutgoing: boolean;
|
|
|
|
|
firstOfSeries: boolean;
|
|
|
|
|
lastOfSeries: boolean;
|
|
|
|
|
}>`
|
|
|
|
|
border-top-right-radius: ${props =>
|
|
|
|
|
props.isOutgoing
|
|
|
|
|
? props.firstOfSeries
|
|
|
|
|
? 'var(--radius-lg)'
|
|
|
|
|
: 'var(--radius-sm)'
|
|
|
|
|
: 'var(--radius-lg)'};
|
|
|
|
|
border-bottom-right-radius: ${props =>
|
|
|
|
|
props.isOutgoing
|
|
|
|
|
? props.lastOfSeries
|
|
|
|
|
? 'var(--radius-lg)'
|
|
|
|
|
: 'var(--radius-sm)'
|
|
|
|
|
: 'var(--radius-lg)'};
|
|
|
|
|
border-top-left-radius: ${props =>
|
|
|
|
|
!props.isOutgoing
|
|
|
|
|
? props.firstOfSeries
|
|
|
|
|
? 'var(--radius-lg)'
|
|
|
|
|
: 'var(--radius-sm)'
|
|
|
|
|
: 'var(--radius-lg)'};
|
|
|
|
|
border-bottom-left-radius: ${props =>
|
|
|
|
|
!props.isOutgoing
|
|
|
|
|
? props.lastOfSeries
|
|
|
|
|
? 'var(--radius-lg)'
|
|
|
|
|
: 'var(--radius-sm)'
|
|
|
|
|
: 'var(--radius-lg)'};
|
|
|
|
|
`;
|
|
|
|
|
|
|
|
|
|
export const IsMessageVisibleContext = createContext(false);
|
|
|
|
|
|
|
|
|
|
export const MessageContent = (props: Props) => {
|
|
|
|
@ -181,26 +213,29 @@ export const MessageContent = (props: Props) => {
|
|
|
|
|
|
|
|
|
|
const bgShouldBeTransparent = isShowingImage && !hasText && !hasQuote;
|
|
|
|
|
const toolTipTitle = moment(serverTimestamp || timestamp).format('llll');
|
|
|
|
|
// tslint:disable: use-simple-attributes
|
|
|
|
|
|
|
|
|
|
return (
|
|
|
|
|
<div
|
|
|
|
|
<StyledMessageContent
|
|
|
|
|
className={classNames(
|
|
|
|
|
'module-message__container',
|
|
|
|
|
`module-message__container--${direction}`,
|
|
|
|
|
bgShouldBeTransparent
|
|
|
|
|
? `module-message__container--${direction}--transparent`
|
|
|
|
|
: `module-message__container--${direction}--opaque`,
|
|
|
|
|
firstMessageOfSeries || props.isDetailView
|
|
|
|
|
? `module-message__container--${direction}--first-of-series`
|
|
|
|
|
: '',
|
|
|
|
|
lastMessageOfSeries || props.isDetailView
|
|
|
|
|
? `module-message__container--${direction}--last-of-series`
|
|
|
|
|
: '',
|
|
|
|
|
|
|
|
|
|
flashGreen && 'flash-green-once'
|
|
|
|
|
)}
|
|
|
|
|
style={{
|
|
|
|
|
width: isShowingImage ? width : undefined,
|
|
|
|
|
}}
|
|
|
|
|
style={
|
|
|
|
|
{
|
|
|
|
|
width: isShowingImage ? width : undefined,
|
|
|
|
|
'--radius-lg': '18px',
|
|
|
|
|
'--radius-sm': '4px',
|
|
|
|
|
} as CSSProperties
|
|
|
|
|
}
|
|
|
|
|
firstOfSeries={Boolean(firstMessageOfSeries || props.isDetailView)}
|
|
|
|
|
lastOfSeries={Boolean(lastMessageOfSeries || props.isDetailView)}
|
|
|
|
|
isOutgoing={direction === 'outgoing'}
|
|
|
|
|
role="button"
|
|
|
|
|
onClick={onClickOnMessageInnerContainer}
|
|
|
|
|
title={toolTipTitle}
|
|
|
|
@ -235,7 +270,7 @@ export const MessageContent = (props: Props) => {
|
|
|
|
|
) : null}
|
|
|
|
|
</IsMessageVisibleContext.Provider>
|
|
|
|
|
</InView>
|
|
|
|
|
</div>
|
|
|
|
|
</StyledMessageContent>
|
|
|
|
|
);
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|