CodableFirebase icon indicating copy to clipboard operation
CodableFirebase copied to clipboard

UI freezes during decoding

Open jscottanderson opened this issue 4 years ago • 0 comments

I'm fetching data from Firestore, mapping the documents and decoding each of them using FirestoreDecoder. However, decoding the documents momentarily freezes the UI. Running the code on the background thread makes no difference. How can I prevent the UI from freezing during the decoding?

let collection = Firestore.firestore().collection("roll_groups")

collection.addSnapshotListener { (snapshot, error) in
    if let error = error {
        print("Error fetching roll groups: \(error.localizedDescription)")
    } else if let snapshot = snapshot {
        DispatchQueue.global(qos: .background).async {
            let rollGroups = snapshot.documents.map { doc -> RollGroup? in
                do {
                    let rollGroup = try FirestoreDecoder().decode(RollGroup.self, from: doc.data())
                    return rollGroup
                } catch {
                    print("Error decoding roll groups: \(error)")
                    return nil
                }
            }
            
            DispatchQueue.main.async {
                completion(rollGroups)
            }
        }
    }
}

jscottanderson avatar Jun 17 '21 14:06 jscottanderson