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.
38 lines
1.1 KiB
TypeScript
38 lines
1.1 KiB
TypeScript
import React from 'react';
|
|
|
|
import { TypingAnimation } from './TypingAnimation';
|
|
import styled from 'styled-components';
|
|
import { ConversationTypeEnum } from '../../models/conversation';
|
|
|
|
interface TypingBubbleProps {
|
|
avatarPath?: string;
|
|
phoneNumber: string;
|
|
displayedName: string | null;
|
|
conversationType: ConversationTypeEnum;
|
|
isTyping: boolean;
|
|
}
|
|
|
|
const TypingBubbleContainer = styled.div<TypingBubbleProps>`
|
|
height: ${props => (props.isTyping ? 'auto' : '0px')};
|
|
display: flow-root;
|
|
padding-bottom: ${props => (props.isTyping ? '4px' : '0px')};
|
|
padding-top: ${props => (props.isTyping ? '4px' : '0px')};
|
|
transition: ${props => props.theme.common.animations.defaultDuration};
|
|
padding-inline-end: 16px;
|
|
padding-inline-start: 4px;
|
|
overflow: hidden;
|
|
flex-shrink: 0;
|
|
`;
|
|
|
|
export const TypingBubble = (props: TypingBubbleProps) => {
|
|
if (props.conversationType === ConversationTypeEnum.GROUP) {
|
|
return <></>;
|
|
}
|
|
|
|
return (
|
|
<TypingBubbleContainer {...props}>
|
|
<TypingAnimation i18n={window.i18n} />
|
|
</TypingBubbleContainer>
|
|
);
|
|
};
|