forked from brandonmowat/react-chat-ui
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.tsx
More file actions
57 lines (50 loc) · 1.35 KB
/
index.tsx
File metadata and controls
57 lines (50 loc) · 1.35 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
import * as React from 'react';
import ChatBubbleProps from './interface';
import styles from './styles';
const defaultBubbleStyles = {
userBubble: {},
chatbubble: {},
text: {},
};
export default class ChatBubble extends React.Component {
props;
constructor(props: ChatBubbleProps) {
super(props);
}
public render() {
const { bubblesCentered } = this.props;
let { bubbleStyles } = this.props;
bubbleStyles = bubbleStyles || defaultBubbleStyles;
const { userBubble, chatbubble, text } = bubbleStyles;
// message.id 0 is reserved for blue
const chatBubbleStyles =
this.props.message.id === 0
? {
...styles.chatbubble,
...bubblesCentered ? {} : styles.chatbubbleOrientationNormal,
...chatbubble,
...userBubble,
}
: {
...styles.chatbubble,
...styles.recipientChatbubble,
...bubblesCentered
? {}
: styles.recipientChatbubbleOrientationNormal,
...chatbubble,
...userBubble,
};
return (
<div
style={{
...styles.chatbubbleWrapper,
}}
>
<div style={chatBubbleStyles}>
<p style={{ ...styles.p, ...text }}>{this.props.message.message}</p>
</div>
</div>
);
}
}
export { ChatBubbleProps };