mirror of https://github.com/oxen-io/session-ios
				
				
				
			
			You cannot select more than 25 topics
			Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
		
		
		
		
		
			
		
			
				
	
	
		
			65 lines
		
	
	
		
			2.7 KiB
		
	
	
	
		
			Swift
		
	
			
		
		
	
	
			65 lines
		
	
	
		
			2.7 KiB
		
	
	
	
		
			Swift
		
	
| // Copyright © 2022 Rangeproof Pty Ltd. All rights reserved.
 | |
| 
 | |
| import Foundation
 | |
| import GRDB
 | |
| import DifferenceKit
 | |
| import SignalUtilitiesKit
 | |
| 
 | |
| public class HomeViewModel {
 | |
|     public enum Section: Differentiable {
 | |
|         case messageRequests
 | |
|         case threads
 | |
|     }
 | |
|     
 | |
|     /// This value is the current state of the view
 | |
|     public private(set) var viewData: [ArraySection<Section, ConversationCell.ViewModel>] = []
 | |
|     
 | |
|     /// This is all the data the screen needs to populate itself, please see the following link for tips to help optimise
 | |
|     /// performance https://github.com/groue/GRDB.swift#valueobservation-performance
 | |
|     ///
 | |
|     /// **Note:** The 'trackingConstantRegion' is optimised in such a way that the request needs to be static
 | |
|     /// otherwise there may be situations where it doesn't get updates, this means we can't have conditional queries
 | |
|     public lazy var observableViewData = ValueObservation
 | |
|         .trackingConstantRegion { db -> [ArraySection<Section, ConversationCell.ViewModel>] in
 | |
|             let userPublicKey: String = getUserHexEncodedPublicKey(db)
 | |
|             let unreadMessageRequestCount: Int = try SessionThread
 | |
|                 .filter(SessionThread.isMessageRequest(userPublicKey: userPublicKey))
 | |
|                 .joining(optional: SessionThread.contact)
 | |
|                 .joining(
 | |
|                     required: SessionThread.interactions
 | |
|                         .filter(Interaction.Columns.wasRead == false)
 | |
|                 )
 | |
|                 .group(SessionThread.Columns.id)
 | |
|                 .fetchCount(db)
 | |
|             let finalUnreadMessageRequestCount: Int = (db[.hasHiddenMessageRequests] ? 0 : unreadMessageRequestCount)
 | |
|             
 | |
|             return [
 | |
|                 ArraySection(
 | |
|                     model: .messageRequests,
 | |
|                     elements: [
 | |
|                         // If there are no unread message requests then hide the message request banner
 | |
|                         (finalUnreadMessageRequestCount == 0 ?
 | |
|                             nil :
 | |
|                             ConversationCell.ViewModel(
 | |
|                                 unreadCount: UInt(finalUnreadMessageRequestCount)
 | |
|                             )
 | |
|                         )
 | |
|                     ].compactMap { $0 }
 | |
|                 ),
 | |
|                 ArraySection(
 | |
|                     model: .threads,
 | |
|                     elements: try ConversationCell.ViewModel
 | |
|                         .homeQuery(userPublicKey: userPublicKey)
 | |
|                         .fetchAll(db)
 | |
|                 )
 | |
|             ]
 | |
|         }
 | |
|         .removeDuplicates()
 | |
|     
 | |
|     // MARK: - Functions
 | |
|     
 | |
|     public func updateData(_ updatedData: [ArraySection<Section, ConversationCell.ViewModel>]) {
 | |
|         self.viewData = updatedData
 | |
|     }
 | |
| }
 |