CouponsView.swift 8.81 KB
//
//  ProfileView.swift
//  warplyFramework
//
//  Created by Βασιλης Σκουρας on 13/1/22.
//

#if canImport(SwiftUI)
import SwiftUI
import Combine
import Foundation
import UIKit

class DataModel {
    var data: Array<NSDictionary> = []

    init() { //initializer method
        let instanceOfMyApi = MyApi()
        let couponSets = instanceOfMyApi.getCouponSets(withActive: true, andVisible: true, andUuids: nil)
        let coupons = instanceOfMyApi.getCoupons() as AnyObject?
        
        if let myCouponsSetsDictionary = couponSets as? [String : AnyObject] {
            let couponSetsData = (myCouponsSetsDictionary["MAPP_COUPON"] as! Array<NSMutableDictionary>)
            if let myCouponsDictionary = coupons as? [String : AnyObject] {
                let couponsData = (myCouponsDictionary["result"] as! Array<NSMutableDictionary>)
                if let sets = couponSetsData as? NSArray {
                    for set in sets {
                        let s = set as! NSDictionary
                        if let cpns = couponsData as? NSArray {
                            for coupon in cpns {
                                var c = coupon as! NSDictionary
//                                var temp = NSMutableDictionary(dictionary: s);
                                if c["couponset_uuid"] as! String == s["uuid"] as! String {
                                    var temp = NSMutableDictionary(dictionary: s);
                                    temp.addEntries(from: c as! [AnyHashable : Any])
                                    
                                    self.data.append(temp as NSDictionary)
                                }
                                    
                            }
                        }
                                
                    }
                }
            }
        }
    }

    var getData: Array<NSDictionary> {
        get { // getter
            return data
        }
    }
}

class ImageLoader: ObservableObject {
    var didChange = PassthroughSubject<Data, Never>()
    var data = Data() {
        didSet {
            didChange.send(data)
        }
    }

    init(urlString:String) {
        guard let url = URL(string: urlString) else { return }
        let task = URLSession.shared.dataTask(with: url) { data, response, error in
            guard let data = data else { return }
            DispatchQueue.main.async {
                self.data = data
            }
        }
        task.resume()
    }
}

struct ImageView: View {
    @ObservedObject var imageLoader:ImageLoader
    @State var image:UIImage = UIImage()

    init(withURL url:String) {
        imageLoader = ImageLoader(urlString:url)
    }

    var body: some View {
        
            Image(uiImage: image)
                .resizable()
                .aspectRatio(contentMode: .fit)
//                .frame(width:100, height:100)
                .onReceive(imageLoader.didChange) { data in
                self.image = UIImage(data: data) ?? UIImage()
        }
    }
}

extension CouponsView {
    struct headerView: View {
        var goBack: () -> ()
        var uiscreen = UIScreen.main.bounds
        
        
        var body: some View {
            HStack {
               Button(action: goBack) {
                   HStack {
                       Image("ic_back", bundle: Bundle(for: MyEmptyClass.self))
                           .resizable()
                           .frame(width: self.uiscreen.width * 0.025, height: self.uiscreen.height * 0.02)
//                           .offset(x: -self.uiscreen.width / 2 + self.uiscreen.width * 0.05, y: self.uiscreen.height * 0.04)
                   }
               }
//               .frame(width: self.uiscreen.width * 0.025, height: self.uiscreen.height * 0.02)
//               .offset(x: -self.uiscreen.width / 2 + self.uiscreen.width * 0.05, y: self.uiscreen.height * 0.04)
                Text("Όλα τα κουπόνια μου")
                    .frame(width: self.uiscreen.width * 0.8, height: self.uiscreen.height * 0.025, alignment: .center)
                    .offset( y:  self.uiscreen.height * 0.04)
            }
            .frame(width: self.uiscreen.width, height: self.uiscreen.height * 0.12)
        }
    }
    
    struct couponView: View {
        var result: NSDictionary
        var index: Int
        
        var uiscreen = UIScreen.main.bounds

        static func localizedWithParameter(parameter: String) -> LocalizedStringKey {
            return "\(parameter)"
        }
        
        var body: some View {

            HStack(alignment: .center) {
                HStack(alignment: .center) {
                    ImageView(withURL: result["img_preview"] as! String)
                        .frame(maxWidth: self.uiscreen.width * 0.2)
//                        .offset(x: -self.uiscreen.width / 2 + self.uiscreen.width * 0.2, y: -self.uiscreen.height * 0.05 * 0.96)
//                        .padding(.leading, self.uiscreen.width * 0.05)
                    Rectangle()
                        .frame(width: 1, height: self.uiscreen.height * 0.1 * 0.93)
//                        .offset(x: -self.uiscreen.width / 2 + self.uiscreen.width * 0.205, y: -self.uiscreen.height * 0.05 * 0.93)
                    VStack {
                        Text(CouponsView.couponView.localizedWithParameter(parameter: result["admin_name"] as? String ?? ""))
                            .frame(maxWidth: self.uiscreen.width * 0.27, maxHeight: .infinity, alignment: .leading)
                        Text(CouponsView.couponView.localizedWithParameter(parameter: result["discount"] as? String ?? ""))
                            .frame(maxWidth: self.uiscreen.width * 0.27, maxHeight: .infinity, alignment: .leading)
                        Text(CouponsView.couponView.localizedWithParameter(parameter: "Ισχύει εώς " + (result["expiration"] as? String ?? "").components(separatedBy: [" "]).filter({!$0.isEmpty})[0]))
                            .frame(maxWidth: self.uiscreen.width * 0.27, maxHeight: .infinity, alignment: .leading)
                    }
                    .frame(maxHeight: .infinity)
                    .padding(.top, self.uiscreen.height * 0.03)
                    .padding(.bottom, self.uiscreen.height * 0.03)
                    VStack {
                        Text(CouponsView.couponView.localizedWithParameter(parameter: result["short_description"] as! String))
                            .frame(maxWidth: self.uiscreen.width * 0.15, maxHeight: .infinity)
                    }
                    .frame(maxWidth: self.uiscreen.width * 0.25, maxHeight: .infinity)
                    
                }
                .frame(maxWidth: .infinity, maxHeight: .infinity)
                
            }
            .background(
                Image("coupons_container", bundle: Bundle(for: MyEmptyClass.self))
            )
//            .padding(.top, self.uiscreen.height * 0.05)
            .frame(width: self.uiscreen.width * 0.9, height: self.uiscreen.height * 0.13)
            .background(Color.purple)
        }
    }
    
}

@available(iOS 13.0.0, *)
struct CouponsView: View {

    var data:Array<NSDictionary> = DataModel().getData
    var tag: String = "coupons"
    var parentView: UIView
    
    var uiscreen = UIScreen.main.bounds
    
    func goBack(){
        for subview in parentView.subviews {
            if(subview.tag == 1) {
                subview.removeFromSuperview()
            }
        }
    }
    
    var body: some View {
        VStack {
            headerView(goBack: goBack)
            ScrollView {
                VStack {
                    if (data.count) > 0 {
                        ForEach(Array(zip(data.indices, data)), id: \.0) { index, result  in
                            couponView(result: result, index: index)
                        }
                    }
                }
            
            }.frame(width:self.uiscreen.width, height:self.uiscreen.height * 0.88 )
        }
        .frame(width:self.uiscreen.width, height:self.uiscreen.height )
        .background(Color.red)
    }
}
#endif
//struct ProfileView_Previews: PreviewProvider {
//    static var previews: some View {
//        ProfileView()
//    }
//}

@available(iOS 13.0.0, *)
struct Previews_CouponsView_Previews: PreviewProvider {
    static var uiscreen = UIScreen.main.bounds
    static var previews: some View {
        ZStack {
            Image("ic_back", bundle: Bundle(for: MyEmptyClass.self))
                .resizable()
                .frame(width: self.uiscreen.height * 0.025, height: self.uiscreen.height * 0.02)
                .offset(x: -self.uiscreen.width / 2 + self.uiscreen.width * 0.05, y: self.uiscreen.height * 0.07)
            Text("Όλα τα κουπόνια μου")
                .frame(width: self.uiscreen.width * 0.8, height: self.uiscreen.height * 0.025, alignment: .center)
                .offset( y:  self.uiscreen.height * 0.07)
        }

    }
}