2018-11-14 19:10:32 +00:00
|
|
|
### In message bubble
|
|
|
|
|
|
|
|
```jsx
|
2019-01-15 01:29:36 +00:00
|
|
|
<util.ConversationContext theme={util.theme} ios={util.ios}>
|
2019-05-31 22:42:01 +00:00
|
|
|
<div className="module-message-container">
|
2018-11-14 19:10:32 +00:00
|
|
|
<TypingBubble conversationType="direct" i18n={util.i18n} />
|
2019-05-31 22:42:01 +00:00
|
|
|
</div>
|
|
|
|
<div className="module-message-container">
|
2018-11-14 19:10:32 +00:00
|
|
|
<TypingBubble color="teal" conversationType="direct" i18n={util.i18n} />
|
2019-05-31 22:42:01 +00:00
|
|
|
</div>
|
2018-11-14 19:10:32 +00:00
|
|
|
</util.ConversationContext>
|
|
|
|
```
|
|
|
|
|
|
|
|
### In message bubble, group conversation
|
|
|
|
|
|
|
|
```jsx
|
2019-01-15 01:29:36 +00:00
|
|
|
<util.ConversationContext theme={util.theme} ios={util.ios}>
|
2019-05-31 22:42:01 +00:00
|
|
|
<div className="module-message-container">
|
2018-11-14 19:10:32 +00:00
|
|
|
<TypingBubble color="red" conversationType="group" i18n={util.i18n} />
|
2019-05-31 22:42:01 +00:00
|
|
|
</div>
|
|
|
|
<div className="module-message-container">
|
2018-11-14 19:10:32 +00:00
|
|
|
<TypingBubble
|
|
|
|
color="purple"
|
|
|
|
authorName="First Last"
|
|
|
|
conversationType="group"
|
|
|
|
i18n={util.i18n}
|
|
|
|
/>
|
2019-05-31 22:42:01 +00:00
|
|
|
</div>
|
|
|
|
<div className="module-message-container">
|
2018-11-14 19:10:32 +00:00
|
|
|
<TypingBubble
|
|
|
|
avatarPath={util.gifObjectUrl}
|
|
|
|
color="blue"
|
|
|
|
conversationType="group"
|
|
|
|
i18n={util.i18n}
|
|
|
|
/>
|
2019-05-31 22:42:01 +00:00
|
|
|
</div>
|
2018-11-14 19:10:32 +00:00
|
|
|
</util.ConversationContext>
|
|
|
|
```
|