add reply to message UI logic
parent
1a379d2466
commit
b7f5a32570
@ -0,0 +1,67 @@
|
||||
import React, { useContext } from 'react';
|
||||
import { Flex } from '../Flex';
|
||||
import { SessionIconButton, SessionIconSize, SessionIconType } from '../icon';
|
||||
import { ReplyingToMessageProps } from './SessionCompositionBox';
|
||||
import styled, { DefaultTheme, ThemeContext } from 'styled-components';
|
||||
|
||||
// tslint:disable: react-unused-props-and-state
|
||||
interface Props {
|
||||
quotedMessageProps: ReplyingToMessageProps;
|
||||
removeQuotedMessage: any;
|
||||
}
|
||||
|
||||
const QuotedMessageComposition = styled.div`
|
||||
width: 50%;
|
||||
`;
|
||||
|
||||
const QuotedMessageCompositionReply = styled.div`
|
||||
background: ${props => props.theme.colors.quoteBottomBarBackground};
|
||||
border-radius: ${props => props.theme.common.margins.sm};
|
||||
padding: ${props => props.theme.common.margins.xs};
|
||||
box-shadow: ${props => props.theme.colors.sessionShadow};
|
||||
margin: ${props => props.theme.common.margins.xs};
|
||||
`;
|
||||
|
||||
const Subtle = styled.div`
|
||||
overflow: hidden;
|
||||
text-overflow: ellipsis;
|
||||
word-break: break-all;
|
||||
-webkit-line-clamp: 3;
|
||||
-webkit-box-orient: vertical;
|
||||
display: -webkit-box;
|
||||
color: ${props => props.theme.colors.textColor};
|
||||
`;
|
||||
|
||||
const ReplyingTo = styled.div`
|
||||
color: ${props => props.theme.colors.textColor};
|
||||
`;
|
||||
|
||||
export const SessionQuotedMessageComposition = (props: Props) => {
|
||||
const { quotedMessageProps, removeQuotedMessage } = props;
|
||||
const theme = useContext(ThemeContext);
|
||||
|
||||
const { text: body, attachments } = quotedMessageProps;
|
||||
const hasAttachments = attachments && attachments.length > 0;
|
||||
return (
|
||||
<QuotedMessageComposition>
|
||||
<Flex
|
||||
container={true}
|
||||
justifyContent="space-between"
|
||||
flexGrow={1}
|
||||
margin={theme.common.margins.xs}
|
||||
>
|
||||
<ReplyingTo>{window.i18n('replyingToMessage')}</ReplyingTo>
|
||||
<SessionIconButton
|
||||
iconType={SessionIconType.Exit}
|
||||
iconSize={SessionIconSize.Small}
|
||||
onClick={removeQuotedMessage}
|
||||
/>
|
||||
</Flex>
|
||||
<QuotedMessageCompositionReply>
|
||||
<Subtle>
|
||||
{(hasAttachments && window.i18n('mediaMessage')) || body}
|
||||
</Subtle>
|
||||
</QuotedMessageCompositionReply>
|
||||
</QuotedMessageComposition>
|
||||
);
|
||||
};
|
Loading…
Reference in New Issue