mirror of
https://github.com/Swiftgram/Telegram-iOS.git
synced 2025-06-16 05:55:20 +00:00
456 lines
23 KiB
Swift
456 lines
23 KiB
Swift
import Foundation
|
|
import Postbox
|
|
import TelegramCore
|
|
|
|
struct ChatInterfaceSelectionState: Coding, Equatable {
|
|
let selectedIds: Set<MessageId>
|
|
|
|
static func ==(lhs: ChatInterfaceSelectionState, rhs: ChatInterfaceSelectionState) -> Bool {
|
|
return lhs.selectedIds == rhs.selectedIds
|
|
}
|
|
|
|
init(selectedIds: Set<MessageId>) {
|
|
self.selectedIds = selectedIds
|
|
}
|
|
|
|
init(decoder: Decoder) {
|
|
if let data = decoder.decodeBytesForKeyNoCopy("i") {
|
|
self.selectedIds = Set(MessageId.decodeArrayFromBuffer(data))
|
|
} else {
|
|
self.selectedIds = Set()
|
|
}
|
|
}
|
|
|
|
func encode(_ encoder: Encoder) {
|
|
let buffer = WriteBuffer()
|
|
MessageId.encodeArrayToBuffer(Array(selectedIds), buffer: buffer)
|
|
encoder.encodeBytes(buffer, forKey: "i")
|
|
}
|
|
}
|
|
|
|
public struct ChatTextInputState: Coding, Equatable {
|
|
let inputText: String
|
|
let selectionRange: Range<Int>
|
|
|
|
public static func ==(lhs: ChatTextInputState, rhs: ChatTextInputState) -> Bool {
|
|
return lhs.inputText == rhs.inputText && lhs.selectionRange == rhs.selectionRange
|
|
}
|
|
|
|
init() {
|
|
self.inputText = ""
|
|
self.selectionRange = 0 ..< 0
|
|
}
|
|
|
|
init(inputText: String, selectionRange: Range<Int>) {
|
|
self.inputText = inputText
|
|
self.selectionRange = selectionRange
|
|
}
|
|
|
|
init(inputText: String) {
|
|
self.inputText = inputText
|
|
let length = (inputText as NSString).length
|
|
self.selectionRange = length ..< length
|
|
}
|
|
|
|
public init(decoder: Decoder) {
|
|
self.inputText = decoder.decodeStringForKey("t")
|
|
self.selectionRange = Int(decoder.decodeInt32ForKey("s0")) ..< Int(decoder.decodeInt32ForKey("s1"))
|
|
}
|
|
|
|
public func encode(_ encoder: Encoder) {
|
|
encoder.encodeString(self.inputText, forKey: "t")
|
|
encoder.encodeInt32(Int32(self.selectionRange.lowerBound), forKey: "s0")
|
|
encoder.encodeInt32(Int32(self.selectionRange.upperBound), forKey: "s1")
|
|
}
|
|
}
|
|
|
|
struct ChatEditMessageState: Coding, Equatable {
|
|
let messageId: MessageId
|
|
let inputState: ChatTextInputState
|
|
|
|
init(messageId: MessageId, inputState: ChatTextInputState) {
|
|
self.messageId = messageId
|
|
self.inputState = inputState
|
|
}
|
|
|
|
init(decoder: Decoder) {
|
|
self.messageId = MessageId(peerId: PeerId(decoder.decodeInt64ForKey("mp")), namespace: decoder.decodeInt32ForKey("mn"), id: decoder.decodeInt32ForKey("mi"))
|
|
if let inputState = decoder.decodeObjectForKey("is", decoder: { return ChatTextInputState(decoder: $0) }) as? ChatTextInputState {
|
|
self.inputState = inputState
|
|
} else {
|
|
self.inputState = ChatTextInputState()
|
|
}
|
|
}
|
|
|
|
func encode(_ encoder: Encoder) {
|
|
encoder.encodeInt64(self.messageId.peerId.toInt64(), forKey: "mp")
|
|
encoder.encodeInt32(self.messageId.namespace, forKey: "mn")
|
|
encoder.encodeInt32(self.messageId.id, forKey: "mi")
|
|
encoder.encodeObject(self.inputState, forKey: "is")
|
|
}
|
|
|
|
static func ==(lhs: ChatEditMessageState, rhs: ChatEditMessageState) -> Bool {
|
|
return lhs.messageId == rhs.messageId && lhs.inputState == rhs.inputState
|
|
}
|
|
|
|
func withUpdatedInputState(_ inputState: ChatTextInputState) -> ChatEditMessageState {
|
|
return ChatEditMessageState(messageId: self.messageId, inputState: inputState)
|
|
}
|
|
}
|
|
|
|
final class ChatEmbeddedInterfaceState: PeerChatListEmbeddedInterfaceState {
|
|
let timestamp: Int32
|
|
let text: String
|
|
|
|
init(timestamp: Int32, text: String) {
|
|
self.timestamp = timestamp
|
|
self.text = text
|
|
}
|
|
|
|
init(decoder: Decoder) {
|
|
self.timestamp = decoder.decodeInt32ForKey("d")
|
|
self.text = decoder.decodeStringForKey("t")
|
|
}
|
|
|
|
func encode(_ encoder: Encoder) {
|
|
encoder.encodeInt32(self.timestamp, forKey: "d")
|
|
encoder.encodeString(self.text, forKey: "t")
|
|
}
|
|
|
|
public func isEqual(to: PeerChatListEmbeddedInterfaceState) -> Bool {
|
|
if let to = to as? ChatEmbeddedInterfaceState {
|
|
return self.timestamp == to.timestamp && self.text == to.text
|
|
} else {
|
|
return false
|
|
}
|
|
}
|
|
}
|
|
|
|
struct ChatInterfaceMessageActionsState: Coding, Equatable {
|
|
let closedButtonKeyboardMessageId: MessageId?
|
|
let processedSetupReplyMessageId: MessageId?
|
|
let closedPinnedMessageId: MessageId?
|
|
|
|
var isEmpty: Bool {
|
|
return self.closedButtonKeyboardMessageId == nil && self.processedSetupReplyMessageId == nil && self.closedPinnedMessageId == nil
|
|
}
|
|
|
|
init() {
|
|
self.closedButtonKeyboardMessageId = nil
|
|
self.processedSetupReplyMessageId = nil
|
|
self.closedPinnedMessageId = nil
|
|
}
|
|
|
|
init(closedButtonKeyboardMessageId: MessageId?, processedSetupReplyMessageId: MessageId?, closedPinnedMessageId: MessageId?) {
|
|
self.closedButtonKeyboardMessageId = closedButtonKeyboardMessageId
|
|
self.processedSetupReplyMessageId = processedSetupReplyMessageId
|
|
self.closedPinnedMessageId = closedPinnedMessageId
|
|
}
|
|
|
|
init(decoder: Decoder) {
|
|
if let closedMessageIdPeerId = (decoder.decodeInt64ForKey("cb.p") as Int64?), let closedMessageIdNamespace = (decoder.decodeInt32ForKey("cb.n") as Int32?), let closedMessageIdId = (decoder.decodeInt32ForKey("cb.i") as Int32?) {
|
|
self.closedButtonKeyboardMessageId = MessageId(peerId: PeerId(closedMessageIdPeerId), namespace: closedMessageIdNamespace, id: closedMessageIdId)
|
|
} else {
|
|
self.closedButtonKeyboardMessageId = nil
|
|
}
|
|
|
|
if let processedMessageIdPeerId = (decoder.decodeInt64ForKey("pb.p") as Int64?), let processedMessageIdNamespace = (decoder.decodeInt32ForKey("pb.n") as Int32?), let processedMessageIdId = (decoder.decodeInt32ForKey("pb.i") as Int32?) {
|
|
self.processedSetupReplyMessageId = MessageId(peerId: PeerId(processedMessageIdPeerId), namespace: processedMessageIdNamespace, id: processedMessageIdId)
|
|
} else {
|
|
self.processedSetupReplyMessageId = nil
|
|
}
|
|
|
|
if let closedPinnedMessageIdPeerId = (decoder.decodeInt64ForKey("cp.p") as Int64?), let closedPinnedMessageIdNamespace = (decoder.decodeInt32ForKey("cp.n") as Int32?), let closedPinnedMessageIdId = (decoder.decodeInt32ForKey("cp.i") as Int32?) {
|
|
self.closedPinnedMessageId = MessageId(peerId: PeerId(closedPinnedMessageIdPeerId), namespace: closedPinnedMessageIdNamespace, id: closedPinnedMessageIdId)
|
|
} else {
|
|
self.closedPinnedMessageId = nil
|
|
}
|
|
}
|
|
|
|
func encode(_ encoder: Encoder) {
|
|
if let closedButtonKeyboardMessageId = self.closedButtonKeyboardMessageId {
|
|
encoder.encodeInt64(closedButtonKeyboardMessageId.peerId.toInt64(), forKey: "cb.p")
|
|
encoder.encodeInt32(closedButtonKeyboardMessageId.namespace, forKey: "cb.n")
|
|
encoder.encodeInt32(closedButtonKeyboardMessageId.id, forKey: "cb.i")
|
|
} else {
|
|
encoder.encodeNil(forKey: "cb.p")
|
|
encoder.encodeNil(forKey: "cb.n")
|
|
encoder.encodeNil(forKey: "cb.i")
|
|
}
|
|
|
|
if let processedSetupReplyMessageId = self.processedSetupReplyMessageId {
|
|
encoder.encodeInt64(processedSetupReplyMessageId.peerId.toInt64(), forKey: "pb.p")
|
|
encoder.encodeInt32(processedSetupReplyMessageId.namespace, forKey: "pb.n")
|
|
encoder.encodeInt32(processedSetupReplyMessageId.id, forKey: "pb.i")
|
|
} else {
|
|
encoder.encodeNil(forKey: "pb.p")
|
|
encoder.encodeNil(forKey: "pb.n")
|
|
encoder.encodeNil(forKey: "pb.i")
|
|
}
|
|
|
|
if let closedPinnedMessageId = self.closedPinnedMessageId {
|
|
encoder.encodeInt64(closedPinnedMessageId.peerId.toInt64(), forKey: "cp.p")
|
|
encoder.encodeInt32(closedPinnedMessageId.namespace, forKey: "cp.n")
|
|
encoder.encodeInt32(closedPinnedMessageId.id, forKey: "cp.i")
|
|
} else {
|
|
encoder.encodeNil(forKey: "cp.p")
|
|
encoder.encodeNil(forKey: "cp.n")
|
|
encoder.encodeNil(forKey: "cp.i")
|
|
}
|
|
}
|
|
|
|
static func ==(lhs: ChatInterfaceMessageActionsState, rhs: ChatInterfaceMessageActionsState) -> Bool {
|
|
return lhs.closedButtonKeyboardMessageId == rhs.closedButtonKeyboardMessageId && lhs.processedSetupReplyMessageId == rhs.processedSetupReplyMessageId && lhs.closedPinnedMessageId == rhs.closedPinnedMessageId
|
|
}
|
|
|
|
func withUpdatedClosedButtonKeyboardMessageId(_ closedButtonKeyboardMessageId: MessageId?) -> ChatInterfaceMessageActionsState {
|
|
return ChatInterfaceMessageActionsState(closedButtonKeyboardMessageId: closedButtonKeyboardMessageId, processedSetupReplyMessageId: self.processedSetupReplyMessageId, closedPinnedMessageId: self.closedPinnedMessageId)
|
|
}
|
|
|
|
func withUpdatedProcessedSetupReplyMessageId(_ processedSetupReplyMessageId: MessageId?) -> ChatInterfaceMessageActionsState {
|
|
return ChatInterfaceMessageActionsState(closedButtonKeyboardMessageId: self.closedButtonKeyboardMessageId, processedSetupReplyMessageId: processedSetupReplyMessageId, closedPinnedMessageId: self.closedPinnedMessageId)
|
|
}
|
|
|
|
func withUpdatedClosedPinnedMessageId(_ closedPinnedMessageId: MessageId?) -> ChatInterfaceMessageActionsState {
|
|
return ChatInterfaceMessageActionsState(closedButtonKeyboardMessageId: self.closedButtonKeyboardMessageId, processedSetupReplyMessageId: self.processedSetupReplyMessageId, closedPinnedMessageId: closedPinnedMessageId)
|
|
}
|
|
}
|
|
|
|
final class ChatInterfaceState: SynchronizeableChatInterfaceState, Equatable {
|
|
let timestamp: Int32
|
|
let composeInputState: ChatTextInputState
|
|
let composeDisableUrlPreview: String?
|
|
let replyMessageId: MessageId?
|
|
let forwardMessageIds: [MessageId]?
|
|
let editMessage: ChatEditMessageState?
|
|
let selectionState: ChatInterfaceSelectionState?
|
|
let messageActionsState: ChatInterfaceMessageActionsState
|
|
|
|
var chatListEmbeddedState: PeerChatListEmbeddedInterfaceState? {
|
|
if !self.composeInputState.inputText.isEmpty && self.timestamp != 0 {
|
|
return ChatEmbeddedInterfaceState(timestamp: self.timestamp, text: self.composeInputState.inputText)
|
|
} else {
|
|
return nil
|
|
}
|
|
}
|
|
|
|
var synchronizeableInputState: SynchronizeableChatInputState? {
|
|
if self.composeInputState.inputText.isEmpty {
|
|
return nil
|
|
} else {
|
|
return SynchronizeableChatInputState(replyToMessageId: self.replyMessageId, text: self.composeInputState.inputText, timestamp: self.timestamp)
|
|
}
|
|
}
|
|
|
|
func withUpdatedSynchronizeableInputState(_ state: SynchronizeableChatInputState?) -> SynchronizeableChatInterfaceState {
|
|
return self.withUpdatedComposeInputState(ChatTextInputState(inputText: state?.text ?? "")).withUpdatedReplyMessageId(state?.replyToMessageId)
|
|
}
|
|
|
|
var effectiveInputState: ChatTextInputState {
|
|
if let editMessage = self.editMessage {
|
|
return editMessage.inputState
|
|
} else {
|
|
return self.composeInputState
|
|
}
|
|
}
|
|
|
|
init() {
|
|
self.timestamp = 0
|
|
self.composeInputState = ChatTextInputState()
|
|
self.composeDisableUrlPreview = nil
|
|
self.replyMessageId = nil
|
|
self.forwardMessageIds = nil
|
|
self.editMessage = nil
|
|
self.selectionState = nil
|
|
self.messageActionsState = ChatInterfaceMessageActionsState()
|
|
}
|
|
|
|
init(timestamp: Int32, composeInputState: ChatTextInputState, composeDisableUrlPreview: String?, replyMessageId: MessageId?, forwardMessageIds: [MessageId]?, editMessage: ChatEditMessageState?, selectionState: ChatInterfaceSelectionState?, messageActionsState: ChatInterfaceMessageActionsState) {
|
|
self.timestamp = timestamp
|
|
self.composeInputState = composeInputState
|
|
self.composeDisableUrlPreview = composeDisableUrlPreview
|
|
self.replyMessageId = replyMessageId
|
|
self.forwardMessageIds = forwardMessageIds
|
|
self.editMessage = editMessage
|
|
self.selectionState = selectionState
|
|
self.messageActionsState = messageActionsState
|
|
}
|
|
|
|
init(decoder: Decoder) {
|
|
self.timestamp = decoder.decodeInt32ForKey("ts")
|
|
if let inputState = decoder.decodeObjectForKey("is", decoder: { return ChatTextInputState(decoder: $0) }) as? ChatTextInputState {
|
|
self.composeInputState = inputState
|
|
} else {
|
|
self.composeInputState = ChatTextInputState()
|
|
}
|
|
if let composeDisableUrlPreview = decoder.decodeStringForKey("dup") as String? {
|
|
self.composeDisableUrlPreview = composeDisableUrlPreview
|
|
} else {
|
|
self.composeDisableUrlPreview = nil
|
|
}
|
|
let replyMessageIdPeerId: Int64? = decoder.decodeInt64ForKey("r.p")
|
|
let replyMessageIdNamespace: Int32? = decoder.decodeInt32ForKey("r.n")
|
|
let replyMessageIdId: Int32? = decoder.decodeInt32ForKey("r.i")
|
|
if let replyMessageIdPeerId = replyMessageIdPeerId, let replyMessageIdNamespace = replyMessageIdNamespace, let replyMessageIdId = replyMessageIdId {
|
|
self.replyMessageId = MessageId(peerId: PeerId(replyMessageIdPeerId), namespace: replyMessageIdNamespace, id: replyMessageIdId)
|
|
} else {
|
|
self.replyMessageId = nil
|
|
}
|
|
if let forwardMessageIdsData = decoder.decodeBytesForKeyNoCopy("fm") {
|
|
self.forwardMessageIds = MessageId.decodeArrayFromBuffer(forwardMessageIdsData)
|
|
} else {
|
|
self.forwardMessageIds = nil
|
|
}
|
|
if let editMessage = decoder.decodeObjectForKey("em", decoder: { ChatEditMessageState(decoder: $0) }) as? ChatEditMessageState {
|
|
self.editMessage = editMessage
|
|
} else {
|
|
self.editMessage = nil
|
|
}
|
|
if let selectionState = decoder.decodeObjectForKey("ss", decoder: { return ChatInterfaceSelectionState(decoder: $0) }) as? ChatInterfaceSelectionState {
|
|
self.selectionState = selectionState
|
|
} else {
|
|
self.selectionState = nil
|
|
}
|
|
|
|
if let messageActionsState = decoder.decodeObjectForKey("as", decoder: { ChatInterfaceMessageActionsState(decoder: $0) }) as? ChatInterfaceMessageActionsState {
|
|
self.messageActionsState = messageActionsState
|
|
} else {
|
|
self.messageActionsState = ChatInterfaceMessageActionsState()
|
|
}
|
|
}
|
|
|
|
func encode(_ encoder: Encoder) {
|
|
encoder.encodeInt32(self.timestamp, forKey: "ts")
|
|
encoder.encodeObject(self.composeInputState, forKey: "is")
|
|
if let composeDisableUrlPreview = self.composeDisableUrlPreview {
|
|
encoder.encodeString(composeDisableUrlPreview, forKey: "dup")
|
|
} else {
|
|
encoder.encodeNil(forKey: "dup")
|
|
}
|
|
if let replyMessageId = self.replyMessageId {
|
|
encoder.encodeInt64(replyMessageId.peerId.toInt64(), forKey: "r.p")
|
|
encoder.encodeInt32(replyMessageId.namespace, forKey: "r.n")
|
|
encoder.encodeInt32(replyMessageId.id, forKey: "r.i")
|
|
} else {
|
|
encoder.encodeNil(forKey: "r.p")
|
|
encoder.encodeNil(forKey: "r.n")
|
|
encoder.encodeNil(forKey: "r.i")
|
|
}
|
|
if let forwardMessageIds = self.forwardMessageIds {
|
|
let buffer = WriteBuffer()
|
|
MessageId.encodeArrayToBuffer(forwardMessageIds, buffer: buffer)
|
|
encoder.encodeBytes(buffer, forKey: "fm")
|
|
} else {
|
|
encoder.encodeNil(forKey: "fm")
|
|
}
|
|
if let editMessage = self.editMessage {
|
|
encoder.encodeObject(editMessage, forKey: "em")
|
|
} else {
|
|
encoder.encodeNil(forKey: "em")
|
|
}
|
|
if let selectionState = self.selectionState {
|
|
encoder.encodeObject(selectionState, forKey: "ss")
|
|
} else {
|
|
encoder.encodeNil(forKey: "ss")
|
|
}
|
|
if self.messageActionsState.isEmpty {
|
|
encoder.encodeNil(forKey: "as")
|
|
} else {
|
|
encoder.encodeObject(self.messageActionsState, forKey: "as")
|
|
}
|
|
}
|
|
|
|
func isEqual(to: PeerChatInterfaceState) -> Bool {
|
|
if let to = to as? ChatInterfaceState, self == to {
|
|
return true
|
|
} else {
|
|
return false
|
|
}
|
|
}
|
|
|
|
static func ==(lhs: ChatInterfaceState, rhs: ChatInterfaceState) -> Bool {
|
|
if lhs.composeDisableUrlPreview != rhs.composeDisableUrlPreview {
|
|
return false
|
|
}
|
|
if let lhsForwardMessageIds = lhs.forwardMessageIds, let rhsForwardMessageIds = rhs.forwardMessageIds {
|
|
if lhsForwardMessageIds != rhsForwardMessageIds {
|
|
return false
|
|
}
|
|
} else if (lhs.forwardMessageIds != nil) != (rhs.forwardMessageIds != nil) {
|
|
return false
|
|
}
|
|
if lhs.messageActionsState != rhs.messageActionsState {
|
|
return false
|
|
}
|
|
return lhs.composeInputState == rhs.composeInputState && lhs.replyMessageId == rhs.replyMessageId && lhs.selectionState == rhs.selectionState && lhs.editMessage == rhs.editMessage
|
|
}
|
|
|
|
func withUpdatedComposeInputState(_ inputState: ChatTextInputState) -> ChatInterfaceState {
|
|
let updatedComposeInputState = inputState
|
|
|
|
return ChatInterfaceState(timestamp: self.timestamp, composeInputState: updatedComposeInputState, composeDisableUrlPreview: self.composeDisableUrlPreview, replyMessageId: self.replyMessageId, forwardMessageIds: self.forwardMessageIds, editMessage: self.editMessage, selectionState: self.selectionState, messageActionsState: self.messageActionsState)
|
|
}
|
|
|
|
func withUpdatedComposeDisableUrlPreview(_ disableUrlPreview: String?) -> ChatInterfaceState {
|
|
return ChatInterfaceState(timestamp: self.timestamp, composeInputState: self.composeInputState, composeDisableUrlPreview: disableUrlPreview, replyMessageId: self.replyMessageId, forwardMessageIds: self.forwardMessageIds, editMessage: self.editMessage, selectionState: self.selectionState, messageActionsState: self.messageActionsState)
|
|
}
|
|
|
|
func withUpdatedEffectiveInputState(_ inputState: ChatTextInputState) -> ChatInterfaceState {
|
|
var updatedEditMessage = self.editMessage
|
|
var updatedComposeInputState = self.composeInputState
|
|
if let editMessage = self.editMessage {
|
|
updatedEditMessage = editMessage.withUpdatedInputState(inputState)
|
|
} else {
|
|
updatedComposeInputState = inputState
|
|
}
|
|
|
|
return ChatInterfaceState(timestamp: self.timestamp, composeInputState: updatedComposeInputState, composeDisableUrlPreview: self.composeDisableUrlPreview, replyMessageId: self.replyMessageId, forwardMessageIds: self.forwardMessageIds, editMessage: updatedEditMessage, selectionState: self.selectionState, messageActionsState: self.messageActionsState)
|
|
}
|
|
|
|
func withUpdatedReplyMessageId(_ replyMessageId: MessageId?) -> ChatInterfaceState {
|
|
return ChatInterfaceState(timestamp: self.timestamp, composeInputState: self.composeInputState, composeDisableUrlPreview: self.composeDisableUrlPreview, replyMessageId: replyMessageId, forwardMessageIds: self.forwardMessageIds, editMessage: self.editMessage, selectionState: self.selectionState, messageActionsState: self.messageActionsState)
|
|
}
|
|
|
|
func withUpdatedForwardMessageIds(_ forwardMessageIds: [MessageId]?) -> ChatInterfaceState {
|
|
return ChatInterfaceState(timestamp: self.timestamp, composeInputState: self.composeInputState, composeDisableUrlPreview: self.composeDisableUrlPreview, replyMessageId: self.replyMessageId, forwardMessageIds: forwardMessageIds, editMessage: self.editMessage, selectionState: self.selectionState, messageActionsState: self.messageActionsState)
|
|
}
|
|
|
|
func withUpdatedSelectedMessage(_ messageId: MessageId) -> ChatInterfaceState {
|
|
var selectedIds = Set<MessageId>()
|
|
if let selectionState = self.selectionState {
|
|
selectedIds.formUnion(selectionState.selectedIds)
|
|
}
|
|
selectedIds.insert(messageId)
|
|
return ChatInterfaceState(timestamp: self.timestamp, composeInputState: self.composeInputState, composeDisableUrlPreview: self.composeDisableUrlPreview, replyMessageId: self.replyMessageId, forwardMessageIds: self.forwardMessageIds, editMessage: self.editMessage, selectionState: ChatInterfaceSelectionState(selectedIds: selectedIds), messageActionsState: self.messageActionsState)
|
|
}
|
|
|
|
func withToggledSelectedMessage(_ messageId: MessageId) -> ChatInterfaceState {
|
|
var selectedIds = Set<MessageId>()
|
|
if let selectionState = self.selectionState {
|
|
selectedIds.formUnion(selectionState.selectedIds)
|
|
}
|
|
if selectedIds.contains(messageId) {
|
|
let _ = selectedIds.remove(messageId)
|
|
} else {
|
|
selectedIds.insert(messageId)
|
|
}
|
|
return ChatInterfaceState(timestamp: self.timestamp, composeInputState: self.composeInputState, composeDisableUrlPreview: self.composeDisableUrlPreview, replyMessageId: self.replyMessageId, forwardMessageIds: self.forwardMessageIds, editMessage: self.editMessage, selectionState: ChatInterfaceSelectionState(selectedIds: selectedIds), messageActionsState: self.messageActionsState)
|
|
}
|
|
|
|
func withoutSelectionState() -> ChatInterfaceState {
|
|
return ChatInterfaceState(timestamp: self.timestamp, composeInputState: self.composeInputState, composeDisableUrlPreview: self.composeDisableUrlPreview, replyMessageId: self.replyMessageId, forwardMessageIds: self.forwardMessageIds, editMessage: self.editMessage, selectionState: nil, messageActionsState: self.messageActionsState)
|
|
}
|
|
|
|
func withUpdatedTimestamp(_ timestamp: Int32) -> ChatInterfaceState {
|
|
return ChatInterfaceState(timestamp: timestamp, composeInputState: self.composeInputState, composeDisableUrlPreview: self.composeDisableUrlPreview, replyMessageId: self.replyMessageId, forwardMessageIds: self.forwardMessageIds, editMessage: self.editMessage, selectionState: self.selectionState, messageActionsState: self.messageActionsState)
|
|
}
|
|
|
|
func withUpdatedEditMessage(_ editMessage: ChatEditMessageState?) -> ChatInterfaceState {
|
|
return ChatInterfaceState(timestamp: self.timestamp, composeInputState: self.composeInputState, composeDisableUrlPreview: self.composeDisableUrlPreview, replyMessageId: self.replyMessageId, forwardMessageIds: self.forwardMessageIds, editMessage: editMessage, selectionState: self.selectionState, messageActionsState: self.messageActionsState)
|
|
}
|
|
|
|
func withUpdatedMessageActionsState(_ f: (ChatInterfaceMessageActionsState) -> ChatInterfaceMessageActionsState) -> ChatInterfaceState {
|
|
return ChatInterfaceState(timestamp: self.timestamp, composeInputState: self.composeInputState, composeDisableUrlPreview: self.composeDisableUrlPreview, replyMessageId: self.replyMessageId, forwardMessageIds: self.forwardMessageIds, editMessage: self.editMessage, selectionState: self.selectionState, messageActionsState: f(self.messageActionsState))
|
|
}
|
|
}
|