How to load data in the collectionview from JSON to Swift by using Alamofire and Kingfisher

142 Views Asked by At

I need to get the data from already made JSON file to the Swift. By using MVVM desing I wrote this code in the Repo class

 func loadFoods() {
        AF.request("http://example.com/foods/getAllFoods.php",method: .get).response { response in
            if let data = response.data {
                do{
                    let result = try JSONDecoder().decode(ProductsResponse.self, from: data)
                    if let list = result.foods {
                        self.foodList.onNext(list)
                    }
                }catch{
                    print(error.localizedDescription)
                }
            }
        }
    }

Here's the code from View Model class:

class HomeViewModel {
var foodList = BehaviorSubject <[Foods]>(value: [Foods]())
var frepo = FoodsDaoRepository()

init() {
    loadFoods()
    foodList = frepo.foodList
}

func loadFoods() {
   frepo.loadFoods()
}


func loadPersons(){
    prepo.loadPersons()
}

and I wrote this code in the ViewContoller class:

 override func viewDidLoad() {
        super.viewDidLoad()
        
        searchTextField.delegate = self
        collectionView.delegate = self
        collectionView.dataSource = self
        
        let _ = viewModel.foodList.subscribe(onNext: { list in
            self.foodsList = list
            DispatchQueue.main.async {
                self.collectionView.reloadData()
            }
        })
    
override func viewWillAppear(_ animated: Bool) {
        viewModel.loadFoods()
    }

Foodlist variable takes the data from Food class:

class Foods: Codable {
    
    
    var id : Int?
    var name : String?
    var image : String?
    var price : Int?
    var category : String?
    
    
    init(id: Int?, name: String?, image: String?, price: Int?, category: String?) {
       self.id = id
       self.name = name
       self.image = image
       self.price = price
       self.category = category
   }
    
}

But it didn't help to get the data from JSON to the CollectionView. It just shows empty collection view cells.

Also how can I get an image by using Kingfisher and Alamofire?

I tried to explain the problem and wrote a code to expand my question

0

There are 0 best solutions below