Group Typing Bubble Animations
This commit is contained in:
parent
88df942029
commit
283ef57779
14 changed files with 565 additions and 209 deletions
|
@ -241,14 +241,16 @@ const mapStateToProps = (state: StateType, props: ExternalProps) => {
|
|||
'unreadCount',
|
||||
'unreadMentionsCount',
|
||||
'isGroupV1AndDisabled',
|
||||
'typingContactIds',
|
||||
'typingContactIdTimestamps',
|
||||
]),
|
||||
isConversationSelected: state.conversations.selectedConversationId === id,
|
||||
isIncomingMessageRequest: Boolean(
|
||||
conversation.messageRequestsEnabled &&
|
||||
!conversation.acceptedMessageRequest
|
||||
),
|
||||
isSomeoneTyping: Boolean(conversation.typingContactIds?.[0]),
|
||||
isSomeoneTyping: Boolean(
|
||||
Object.keys(conversation.typingContactIdTimestamps ?? {}).length > 0
|
||||
),
|
||||
...conversationMessages,
|
||||
|
||||
invitedContactsForNewlyCreatedGroup:
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue