Display reactions with all message types

This commit is contained in:
Ali
2021-11-16 21:00:15 +04:00
parent 60b9b135e3
commit a02157d1b2
16 changed files with 213 additions and 14 deletions

View File

@@ -1243,4 +1243,11 @@ class ChatMessageInstantVideoItemNode: ChatMessageItemView, UIGestureRecognizerD
actionButtonsNode.frame = actionButtonsFrame
}
}
override func targetReactionNode(value: String) -> (ASDisplayNode, ASDisplayNode)? {
if !self.interactiveVideoNode.dateAndStatusNode.isHidden {
return self.interactiveVideoNode.dateAndStatusNode.reactionNode(value: value)
}
return nil
}
}