Как я могу сгруппировать мои данные, полученные из firebase в представление сбора заголовков ?
С база данных Я получил массив с этими данными:
{
"N7AooUYQU576hb5qLux" : {
"requested_date" : 20190110,
"requested_times" : {
0: 1,
1: 2,
}
"0ckbfkwm2yR0wbcEQ2XT" : {
"requested_date" : 20190110,
"requested_times" : {
0: 3,
1: 4,
}
"38kBVw01kvJtYTtYt0ba" : {
"requested_date" : 20190211,
"requested_times" : {
0: 5,
1: 6,
}
"3bQ3WTwasALxqNNR9P4c" : {
"requested_date" : 20190315,
"requested_times" : {
0: 1,
1: 2,
}
"51OhvSiBGDa0HH8WV5bt" : {
"requested_date" : 20190211,
"requested_times" : {
0: 10,
1: 11,
}
}
Для извлечения данных из магазина Я использую этот код:
var bookingHall: [BookingHall] = []
var document: [DocumentSnapshot] = []
fileprivate func observeQuery() {
guard let query = query else { return }
listener = query.addSnapshotListener { [unowned self] (snapshot, error) in
if let err = error {
self.unknownError(error: err)
} else {
if let snapshot = snapshot {
let bookingModel = snapshot.documents.map { (document) -> BookingHall in
if let newBooking = BookingHall(dictionary: document.data()) {
return newBooking
} else {
fatalError("Fatal error")
}
}
self.bookingHall = bookingModel
self.document = snapshot.documents
self.collectionView.reloadData()
}
}
}
}
func numberOfSections(in collectionView: UICollectionView) -> Int {
return ...
}
func collectionView(_ collectionView: UICollectionView, numberOfItemsInSection section: Int) -> Int {
return self.bookingHall.count
}
func collectionView(_ collectionView: UICollectionView, cellForItemAt indexPath: IndexPath) -> UICollectionViewCell {
let cell = collectionView.dequeueReusableCell(withReuseIdentifier: "studioBookCollCell", for: indexPath) as! StudioBookCollectionCell
let timeStart = self.bookingHall[indexPath.item].requestedTimes.first!
let timeEnd = self.bookingHall[indexPath.item].requestedTimes.last! + 1
cell.timeLabel.text = String(format: "%02d:00 - %02d:00", timeStart, timeEnd)
return cell
}
func collectionView(_ collectionView: UICollectionView, viewForSupplementaryElementOfKind kind: String, at indexPath: IndexPath) -> UICollectionReusableView {
let header = collectionView.dequeueReusableSupplementaryView(ofKind: kind, withReuseIdentifier: "headerBook", for: indexPath) as! StudioBookCollectionReusableView
header.dateLabel.text = ""
return header
}
Конечный результат, который я хотел бы видеть, похож на картинку ниже:
Я не знаю, как сгруппировать свои данные и применить к заголовку, и в каждом из заголовков есть правильные данные в ячейках.
Скажите, пожалуйста, как это можно сделать? Если понадобится больше кода, я обновлю свой пост.
My struct :
protocol BookingDocumentSerializable {
init?(dictionary:[String:Any])
}
struct BookingHall {
var contactInfo: [String: Any] = [:]
var creationDate: Timestamp
var requestedTimes: [Int] = []
var uid: String = ""
var hall: String = ""
var requestedDate: Int = 0
var dictionary: [String: Any] {
return [
"contact_info": contactInfo,
"creation_date": creationDate,
"requested_times": requestedTimes,
"uid": uid,
"hall": hall,
"requested_date": requestedDate
]
}
}
extension BookingHall: BookingDocumentSerializable {
init?(dictionary: [String: Any]) {
let contactInfo = dictionary["contact_info"] as? [String: Any] ?? [:]
let creationDate = dictionary["creation_date"] as? Timestamp
let requestedTimes = dictionary["requested_times"] as? [Int] ?? []
let uid = dictionary["uid"] as? String ?? ""
let hall = dictionary["hall"] as? String ?? ""
let requestedDate = dictionary["requested_date"] as? Int ?? 0
self.init(contactInfo: contactInfo,
creationDate: creationDate!,
requestedTimes: requestedTimes,
uid: uid,
hall: hall,
requestedDate: requestedDate)
}
}