123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303 |
- import UIKit
- // MARK: - ChatListViewModelProtocol
- protocol ChatListViewModelProtocol: class, UISearchResultsUpdating {
- var onChatListUpdate: VoidFunction? { get set }
- var isArchive: Bool { get }
- var numberOfSections: Int { get }
- func numberOfRowsIn(section: Int) -> Int
- func cellDataFor(section: Int, row: Int) -> AvatarCellViewModel
- func msgIdFor(row: Int) -> Int?
- func chatIdFor(section: Int, row: Int) -> Int? // needed to differentiate betweeen deaddrop / archive / default
- // search related
- var searchActive: Bool { get }
- func beginSearch()
- func endSearch()
- func titleForHeaderIn(section: Int) -> String? // only visible on search results
-
- /// returns ROW of table
- func deleteChat(chatId: Int) -> Int
- func archiveChatToggle(chatId: Int)
- func pinChatToggle(chatId: Int)
- func refreshData()
- }
- // MARK: - ChatListViewModel
- class ChatListViewModel: NSObject, ChatListViewModelProtocol {
- var onChatListUpdate: VoidFunction?
- enum ChatListSectionType {
- case chats
- case contacts
- case messages
- }
- var isArchive: Bool
- private let dcContext: DcContext
- var searchActive: Bool = false
- // if searchfield is empty we show default chat list
- private var showSearchResults: Bool {
- return searchActive && searchText.containsCharacters()
- }
- private var chatList: DcChatlist!
- // for search filtering
- private var searchText: String = ""
- private var searchResultChatList: DcChatlist?
- private var searchResultContactIds: [Int] = []
- private var searchResultMessageIds: [Int] = []
- // to manage sections dynamically
- private var searchResultsChatsSection: ChatListSectionType = .chats
- private var searchResultsContactsSection: ChatListSectionType = .contacts
- private var searchResultsMessagesSection: ChatListSectionType = .messages
- private var searchResultSections: [ChatListSectionType] = []
- init(dcContext: DcContext, isArchive: Bool) {
- self.isArchive = isArchive
- self.dcContext = dcContext
- super.init()
- updateChatList(notifyListener: true)
- }
- private func updateChatList(notifyListener: Bool) {
- var gclFlags: Int32 = 0
- if isArchive {
- gclFlags |= DC_GCL_ARCHIVED_ONLY
- } else if RelayHelper.sharedInstance.isForwarding() {
- gclFlags |= DC_GCL_FOR_FORWARDING
- }
- self.chatList = dcContext.getChatlist(flags: gclFlags, queryString: nil, queryId: 0)
- if notifyListener {
- onChatListUpdate?()
- }
- }
- var numberOfSections: Int {
- if showSearchResults {
- return searchResultSections.count
- }
- return 1
- }
- func numberOfRowsIn(section: Int) -> Int {
- if showSearchResults {
- switch searchResultSections[section] {
- case .chats:
- return searchResultChatList?.length ?? 0
- case .contacts:
- return searchResultContactIds.count
- case .messages:
- return searchResultMessageIds.count
- }
- }
- return chatList.length
- }
- func cellDataFor(section: Int, row: Int) -> AvatarCellViewModel {
- if showSearchResults {
- switch searchResultSections[section] {
- case .chats:
- return makeChatCellViewModel(index: row, searchText: searchText)
- case .contacts:
- return ContactCellViewModel.make(contactId: searchResultContactIds[row], searchText: searchText, dcContext: dcContext)
- case .messages:
- return makeMessageCellViewModel(msgId: searchResultMessageIds[row])
- }
- }
- return makeChatCellViewModel(index: row, searchText: "")
- }
- func titleForHeaderIn(section: Int) -> String? {
- if showSearchResults {
- let title: String
- switch searchResultSections[section] {
- case .chats:
- title = "n_chats"
- case .contacts:
- title = "n_contacts"
- case .messages:
- title = "n_messages"
- }
- return String.localizedStringWithFormat(NSLocalizedString(title, comment: ""), numberOfRowsIn(section: section))
- }
- return nil
- }
- func chatIdFor(section: Int, row: Int) -> Int? {
- let cellData = cellDataFor(section: section, row: row)
- switch cellData.type {
- case .deaddrop(let data):
- return data.chatId
- case .chat(let data):
- return data.chatId
- case .contact:
- return nil
- }
- }
- func msgIdFor(row: Int) -> Int? {
- if showSearchResults {
- return nil
- }
- return chatList.getMsgId(index: row)
- }
- func refreshData() {
- updateChatList(notifyListener: true)
- }
- func beginSearch() {
- searchActive = true
- }
- func endSearch() {
- searchActive = false
- searchText = ""
- resetSearch()
- }
- func deleteChat(chatId: Int) -> Int {
- // find index of chatId
- let indexToDelete = Array(0..<chatList.length).filter { chatList.getChatId(index: $0) == chatId }.first
- dcContext.deleteChat(chatId: chatId)
- updateChatList(notifyListener: false)
- safe_assert(indexToDelete != nil)
- return indexToDelete ?? -1
- }
- func archiveChatToggle(chatId: Int) {
- dcContext.archiveChat(chatId: chatId, archive: !self.isArchive)
- updateChatList(notifyListener: false)
- }
- func pinChatToggle(chatId: Int) {
- let chat: DcChat = dcContext.getChat(chatId: chatId)
- let pinned = chat.visibility==DC_CHAT_VISIBILITY_PINNED
- self.dcContext.setChatVisibility(chatId: chatId, visibility: pinned ? DC_CHAT_VISIBILITY_NORMAL : DC_CHAT_VISIBILITY_PINNED)
- updateChatList(notifyListener: false)
- }
- }
- private extension ChatListViewModel {
- /// MARK: - avatarCellViewModel factory
- func makeChatCellViewModel(index: Int, searchText: String) -> AvatarCellViewModel {
- let list: DcChatlist = searchResultChatList ?? chatList
- let chatId = list.getChatId(index: index)
- let summary = list.getSummary(index: index)
- if let msgId = msgIdFor(row: index), chatId == DC_CHAT_ID_DEADDROP {
- return ChatCellViewModel(dcContext: dcContext, deaddropCellData: DeaddropCellData(chatId: chatId, msgId: msgId, summary: summary))
- }
- let chat = dcContext.getChat(chatId: chatId)
- let unreadMessages = dcContext.getUnreadMessages(chatId: chatId)
- var chatTitleIndexes: [Int] = []
- if searchText.containsCharacters() {
- let chatName = chat.name
- chatTitleIndexes = chatName.containsExact(subSequence: searchText)
- }
- let viewModel = ChatCellViewModel(
- dcContext: dcContext,
- chatData: ChatCellData(
- chatId: chatId,
- summary: summary,
- unreadMessages: unreadMessages
- ),
- titleHighlightIndexes: chatTitleIndexes
- )
- return viewModel
- }
- func makeMessageCellViewModel(msgId: Int) -> AvatarCellViewModel {
- let msg: DcMsg = DcMsg(id: msgId)
- let chatId: Int = msg.chatId
- let chat: DcChat = dcContext.getChat(chatId: chatId)
- let summary: DcLot = msg.summary(chat: chat)
- let unreadMessages = dcContext.getUnreadMessages(chatId: chatId)
- let viewModel = ChatCellViewModel(
- dcContext: dcContext,
- chatData: ChatCellData(
- chatId: chatId,
- summary: summary,
- unreadMessages: unreadMessages
- )
- )
- let subtitle = viewModel.subtitle
- viewModel.subtitleHighlightIndexes = subtitle.containsExact(subSequence: searchText)
- return viewModel
- }
- // MARK: - search
- func updateSearchResultSections() {
- var sections: [ChatListSectionType] = []
- if let chatList = searchResultChatList, chatList.length > 0 {
- sections.append(searchResultsChatsSection)
- }
- if !searchResultContactIds.isEmpty {
- sections.append(searchResultsContactsSection)
- }
- if !searchResultMessageIds.isEmpty {
- sections.append(searchResultsMessagesSection)
- }
- searchResultSections = sections
- }
- func resetSearch() {
- searchResultChatList = nil
- searchResultContactIds = []
- searchResultMessageIds = []
- updateSearchResultSections()
- }
- func filterContentForSearchText(_ searchText: String) {
- if !searchText.isEmpty {
- filterAndUpdateList(searchText: searchText)
- } else {
- // when search input field empty we show default chatList
- resetSearch()
- }
- onChatListUpdate?()
- }
- func filterAndUpdateList(searchText: String) {
- // #1 chats with searchPattern in title bar
- var flags: Int32 = 0
- flags |= DC_GCL_NO_SPECIALS
- searchResultChatList = dcContext.getChatlist(flags: flags, queryString: searchText, queryId: 0)
- // #2 contacts with searchPattern in name or in email
- searchResultContactIds = dcContext.getContacts(flags: DC_GCL_ADD_SELF, queryString: searchText)
- // #3 messages with searchPattern (filtered by dc_core)
- searchResultMessageIds = dcContext.searchMessages(searchText: searchText)
- updateSearchResultSections()
- }
- }
- // MARK: UISearchResultUpdating
- extension ChatListViewModel: UISearchResultsUpdating {
- func updateSearchResults(for searchController: UISearchController) {
- self.searchText = searchController.searchBar.text ?? ""
- if let searchText = searchController.searchBar.text {
- filterContentForSearchText(searchText)
- return
- }
- }
- }
|