mirror of
https://github.com/Swiftgram/Telegram-iOS.git
synced 2025-12-23 06:35:51 +00:00
Initial invite requests implementation
This commit is contained in:
@@ -60,7 +60,9 @@ final class ChatListInputActivitiesNode: ASDisplayNode {
|
||||
text = strings.DialogList_Typing
|
||||
case .choosingSticker:
|
||||
text = strings.Activity_ChoosingSticker
|
||||
case .speakingInGroupCall, .seeingEmojiInteraction, .interactingWithEmoji:
|
||||
case let .interactingWithEmoji(emoticon, _, _):
|
||||
text = strings.Activity_TappingInteractiveEmoji(emoticon).string
|
||||
case .speakingInGroupCall, .seeingEmojiInteraction:
|
||||
text = ""
|
||||
}
|
||||
let string = NSAttributedString(string: text, font: textFont, textColor: color)
|
||||
@@ -80,7 +82,9 @@ final class ChatListInputActivitiesNode: ASDisplayNode {
|
||||
state = .typingText(string, lightColor)
|
||||
case .choosingSticker:
|
||||
state = .choosingSticker(string, lightColor)
|
||||
case .seeingEmojiInteraction, .interactingWithEmoji:
|
||||
case .interactingWithEmoji:
|
||||
state = .interactingWithEmoji(string, lightColor)
|
||||
case .seeingEmojiInteraction:
|
||||
state = .none
|
||||
}
|
||||
} else {
|
||||
|
||||
Reference in New Issue
Block a user