Merge pull request #1989 from Bilb/disable-settings-video-feature-off

make sure click to trust sender renders without new lines
pull/1990/head
Audric Ackermann 3 years ago committed by GitHub
commit 151d4884f8
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -8,7 +8,7 @@ import { SessionIcon } from '../../session/icon';
import { SessionButtonColor } from '../../session/SessionButton'; import { SessionButtonColor } from '../../session/SessionButton';
const StyledTrustSenderUI = styled.div` const StyledTrustSenderUI = styled.div`
padding: 'var(--margins-md)'; padding-inline: var(--margins-xs);
display: flex; display: flex;
align-items: center; align-items: center;
`; `;
@ -16,6 +16,7 @@ const StyledTrustSenderUI = styled.div`
const ClickToDownload = styled.div` const ClickToDownload = styled.div`
cursor: pointer; cursor: pointer;
padding: var(--margins-xs) var(--margins-md); padding: var(--margins-xs) var(--margins-md);
white-space: nowrap;
`; `;
export const ClickToTrustSender = (props: { messageId: string }) => { export const ClickToTrustSender = (props: { messageId: string }) => {

@ -15,7 +15,7 @@ import { MessageStatus } from './MessageStatus';
export type MessageContentWithStatusSelectorProps = Pick< export type MessageContentWithStatusSelectorProps = Pick<
MessageRenderingProps, MessageRenderingProps,
'direction' | 'isDeleted' 'direction' | 'isDeleted' | 'isTrustedForAttachmentDownload'
> & { hasAttachments: boolean }; > & { hasAttachments: boolean };
type Props = { type Props = {
@ -48,7 +48,7 @@ export const MessageContentWithStatuses = (props: Props) => {
if (!contentProps) { if (!contentProps) {
return null; return null;
} }
const { direction, isDeleted, hasAttachments } = contentProps; const { direction, isDeleted, hasAttachments, isTrustedForAttachmentDownload } = contentProps;
const isIncoming = direction === 'incoming'; const isIncoming = direction === 'incoming';
return ( return (
@ -56,7 +56,7 @@ export const MessageContentWithStatuses = (props: Props) => {
className={classNames('module-message', `module-message--${direction}`)} className={classNames('module-message', `module-message--${direction}`)}
role="button" role="button"
onClick={onClickOnMessageOuterContainer} onClick={onClickOnMessageOuterContainer}
style={{ width: hasAttachments ? 'min-content' : 'auto' }} style={{ width: hasAttachments && isTrustedForAttachmentDownload ? 'min-content' : 'auto' }}
> >
<MessageStatus messageId={messageId} isCorrectSide={isIncoming} /> <MessageStatus messageId={messageId} isCorrectSide={isIncoming} />
<div> <div>

@ -1023,12 +1023,18 @@ export const getMessageContentWithStatusesSelectorProps = createSelector(
return undefined; return undefined;
} }
const { direction, isDeleted, attachments } = props.propsForMessage; const {
direction,
isDeleted,
attachments,
isTrustedForAttachmentDownload,
} = props.propsForMessage;
const msgProps: MessageContentWithStatusSelectorProps = { const msgProps: MessageContentWithStatusSelectorProps = {
direction, direction,
isDeleted, isDeleted,
hasAttachments: Boolean(attachments?.length) || false, hasAttachments: Boolean(attachments?.length) || false,
isTrustedForAttachmentDownload,
}; };
return msgProps; return msgProps;

Loading…
Cancel
Save