MarketPassViewController.swift 19.8 KB
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412
//
//  MarketPassViewController.swift
//  SwiftWarplyFramework
//
//  Created by Manos Chorianopoulos on 14/1/25.
//

import UIKit
import RSBarcodes_Swift
import AVFoundation
import SwiftEventBus

@objc public class MarketPassViewController: UIViewController {
    @IBOutlet weak var passContainerView: UIView!
    @IBOutlet weak var passTitleLabel: UILabel!
    @IBOutlet weak var passSubtitleLabel: UILabel!
    @IBOutlet weak var barcodeView: UIView!
    @IBOutlet weak var barcodeImage: UIImageView!
    @IBOutlet weak var barcodeImageHeight: NSLayoutConstraint!
    @IBOutlet weak var barcodeLabel: CopyableLabel!
    @IBOutlet weak var couponsValueLabel: UILabel!
    @IBOutlet weak var smLogosView: UIView!
    @IBOutlet weak var mapButton: UIButton!
    
    var marketPassDetails:swiftApi.MarketPassDetailsModel? = swiftApi().getMarketPassDetails()
    
    // let spinner = SpinnerViewController()
    
    let uiscreen: CGRect = UIScreen.main.bounds
    
    public override func viewDidLoad() {
        super.viewDidLoad()
        
        self.hidesBottomBarWhenPushed = true
        
        passContainerView.isHidden = true
        // getMarketPassDetailsRequest()

        SwiftEventBus.onBackgroundThread(self, name: "market_pass_details_fetched") { result in

            DispatchQueue.main.async {
                if let tempMarketPassDetails = swiftApi().getMarketPassDetails() {
                    self.marketPassDetails = tempMarketPassDetails
                    self.updateUI()
                } else {
                    // self.showDialog("Αποτυχία","Κάτι πήγε στραβά")
                }
            }
        }
        
        setBackButton()
        setNavigationTitle("SUPERMARKET DEALS")
        // Setup the info button with an action
        setNavBarRightInfoButton() {
            // This closure is the action that will be executed when the info button is tapped
            
            let storyboard = UIStoryboard(name: "Main", bundle: Bundle(for: MyEmptyClass.self))
            let vc = storyboard.instantiateViewController(withIdentifier: "MarketPassInfoViewController") as! SwiftWarplyFramework.MarketPassInfoViewController
            self.navigationController?.pushViewController(vc, animated: true)
        }
        
        setupUI()
    }
    
    public override func viewWillAppear(_ animated: Bool) {
        super.viewWillAppear(animated)
        
        swiftApi().logTrackersEvent("screen", "MarketPassScreen")
        
        self.navigationController?.hideHairline()
    }

    // MARK: - Functions
    func setupUI() {
        passContainerView.backgroundColor = UIColor(rgb: 0x36B32B)
        passContainerView.layer.cornerRadius = 16.0
        // Add shadow
        passContainerView.layer.shadowColor = UIColor(red: 0.00, green: 0.00, blue: 0.00, alpha: 0.31).cgColor
        passContainerView.layer.shadowOffset = CGSize(width: 0.0, height: 1.0)
        passContainerView.layer.shadowOpacity = 1.0
        passContainerView.layer.shadowRadius = 3.0
        
        passTitleLabel.text = "SUPERMARKET DEALS CARD"
//        passTitleLabel.font = UIFont(name: "BTCosmo-Bold", size: 23)
        passTitleLabel.font = UIFont(name: "BTCosmo-Bold", size: 22)
        passTitleLabel.textColor = .white
        
        passSubtitleLabel.text = "Χρησιμοποίησε το μοναδικό κωδικό σου για να κερδίσεις έκπτωση σε επιλεγμένα προϊόντα. Ανακάλυψε τα κουπόνια στο For You."
        passSubtitleLabel.font = UIFont(name: "PeridotPE-Regular", size: 17.0)
        passSubtitleLabel.textColor = .white
        
        barcodeView.backgroundColor = .white
        barcodeView.layer.cornerRadius = 16.0
        barcodeView.layer.borderWidth = 2
        barcodeView.layer.borderColor = UIColor(rgb: 0xDADDE4).cgColor
        
        let barcodeString = ""
        barcodeLabel.text = barcodeString
        barcodeLabel.font = UIFont(name: "PeridotPE-SBold", size: 19.0)
        barcodeLabel.textColor = UIColor(rgb: 0x212121)
        
//         if let barcodeUIImage = RSUnifiedCodeGenerator.shared.generateCode(barcodeString, machineReadableCodeObjectType: AVMetadataObject.ObjectType.ean13.rawValue, targetSize: CGSize(width: self.uiscreen.width * 0.8, height: self.uiscreen.height * 0.12)) {
// //        if let barcodeUIImage = RSUnifiedCodeGenerator.shared.generateCode(barcodeString, machineReadableCodeObjectType: AVMetadataObject.ObjectType.ean13.rawValue, targetSize: CGSize(width: 110, height: 83)) {
//             barcodeImage.image = barcodeUIImage

//             barcodeImageHeight.constant = self.uiscreen.height * 0.12
// //            barcodeImageHeight.constant = 83

//         } else {
//             barcodeImageHeight.constant = 0
//         }
        
//        let couponsValueString = "0.00"
//        let attrRegular = [NSAttributedString.Key.font : UIFont(name: "PeridotPE-Regular", size: 17) ?? UIFont.systemFont(ofSize: 16), NSAttributedString.Key.foregroundColor: UIColor.white]
//        let attrBold = [NSAttributedString.Key.font : UIFont(name: "PeridotPE-Bold", size: 17) ?? UIFont.boldSystemFont(ofSize: 16), NSAttributedString.Key.foregroundColor: UIColor.white]
//        
//        let couponsValueNormalText1 = "Με τα διαθέσιμα κουπόνια μπορείς να εξοικονομήσεις έως και "
//        let couponsValueBoldText  = couponsValueString + "€."
//
//        let couponsValueAttributedString = NSMutableAttributedString(string:couponsValueNormalText1, attributes:attrRegular)
//        let couponsValueBoldString = NSMutableAttributedString(string: couponsValueBoldText, attributes:attrBold)
//
//        couponsValueAttributedString.append(couponsValueBoldString)
//        couponsValueLabel.attributedText = couponsValueAttributedString
        
        // ======

        // couponsValueLabel.text = "Χρησιμοποίησε τη SUPERMARKET DEALS CARD σου για να κερδίσεις έκπτωση σε επιλεγμένα προϊόντα. Ανακάλυψε τα διαθέσιμα εκπτωτικά κουπόνια στο For You."
        // couponsValueLabel.textAlignment = .left
        // couponsValueLabel.font = UIFont(name: "PeridotPE-Regular", size: 13.0)
        // couponsValueLabel.textColor = .white

        // ======

        let attrRegular = [NSAttributedString.Key.font : UIFont(name: "PeridotPE-Regular", size: 13) ?? UIFont.systemFont(ofSize: 12), NSAttributedString.Key.foregroundColor: UIColor.white]
        let attrBold = [NSAttributedString.Key.font : UIFont(name: "PeridotPE-SBold", size: 13) ?? UIFont.boldSystemFont(ofSize: 12), NSAttributedString.Key.foregroundColor: UIColor.white, NSAttributedString.Key.underlineStyle: NSUnderlineStyle.single.rawValue] as [NSAttributedString.Key : Any]
        
        let couponsValueNormalText1 = "Χρησιμοποίησε τη SUPERMARKET DEALS CARD σου και κέρδισε έκπτωση σε επιλεγμένα προϊόντα. Ανακάλυψε τα προϊόντα με εκπτωτικό κουπόνι στο "
        let couponsValueBoldText  = "For You"
        let couponsValueNormalText2 = "."

        let couponsValueAttributedString = NSMutableAttributedString(string:couponsValueNormalText1, attributes:attrRegular)
        let couponsValueBoldString = NSMutableAttributedString(string: couponsValueBoldText, attributes:attrBold)
        let couponsValueNormalString2 = NSMutableAttributedString(string: couponsValueNormalText2, attributes:attrRegular)

        couponsValueAttributedString.append(couponsValueBoldString)
        couponsValueAttributedString.append(couponsValueNormalString2)
        couponsValueLabel.attributedText = couponsValueAttributedString
        couponsValueLabel.textAlignment = .left

        // ======
        
        mapButton.titleLabel?.font = UIFont(name: "PeridotPE-SBold", size: 16)
        mapButton.setTitle("Δες στο χάρτη", for: .normal)
        mapButton.setTitleColor(UIColor(rgb: 0x0E8103), for: .normal)
        mapButton.layer.cornerRadius = 10.0
        mapButton.frame = CGRect(x: 0.0, y: 0.0, width: 148, height: 48)
//        mapButton.frame = CGRect(x: 0.0, y: 0.0, width: mapButton.intrinsicContentSize.width, height: 55)
//        mapButton.contentEdgeInsets = UIEdgeInsets(top: 0, left: 25, bottom: 0, right: 25)
        mapButton.backgroundColor = .clear
        mapButton.layer.borderWidth = 2
        mapButton.layer.borderColor = UIColor(rgb: 0x0E8103).cgColor
        
        smLogosView.layer.cornerRadius = 16.0
        smLogosView.layer.maskedCorners = [ .layerMinXMaxYCorner, .layerMaxXMaxYCorner] // Bottom left, right corner radius
        
        // TODO: FIX - Replace with dynamic images
//         let imageNames = ["active_code_logo_2", "active_code_logo_2", "active_code_logo_2"]
// //        let images = imageNames.compactMap { UIImage(named: $0) }
//         let images = imageNames.compactMap { UIImage(named: $0, in: MyEmptyClass.resourceBundle(), compatibleWith: nil) }
        
//         // Create a horizontal stack view
//         let stackView = UIStackView()
//         stackView.axis = .horizontal
//         stackView.spacing = 15 // Spacing between images
//         stackView.alignment = .center
//         stackView.distribution = .equalSpacing
        
//         // Add UIImageViews to the stack view
//         for image in images {
//             let imageView = UIImageView(image: image)
//             imageView.contentMode = .scaleAspectFit
//             imageView.widthAnchor.constraint(equalToConstant: 40).isActive = true // Set a width
//             imageView.heightAnchor.constraint(equalToConstant: 40).isActive = true // Set a height
//             stackView.addArrangedSubview(imageView)
//         }
        
//         // Add the stack view to your main view
//         smLogosView.addSubview(stackView)
        
//         // Set up constraints for the stack view
//         stackView.translatesAutoresizingMaskIntoConstraints = false
//         NSLayoutConstraint.activate([
//             stackView.leadingAnchor.constraint(equalTo: smLogosView.leadingAnchor, constant: 25),
//             stackView.centerYAnchor.constraint(equalTo: smLogosView.centerYAnchor),
//         ])

        if let tempMarketPassDetails = swiftApi().getMarketPassDetails() {
            self.marketPassDetails = tempMarketPassDetails
            self.updateUI()
        } else {
            self.showDialog("Αποτυχία","Κάτι πήγε στραβά")
        }
    }

    func updateUI() {
//        let barcodeString = constructBarcode(coupon: marketPassDetails?._barcode) ?? ""
       let barcodeString = marketPassDetails?._barcode ?? ""
        barcodeLabel.text = barcodeString
        barcodeLabel.frame.size.width = barcodeLabel.intrinsicContentSize.width
        barcodeLabel.frame.size.height = barcodeLabel.intrinsicContentSize.height
        
        if let barcodeUIImage = RSUnifiedCodeGenerator.shared.generateCode(barcodeString, machineReadableCodeObjectType: AVMetadataObject.ObjectType.ean13.rawValue, targetSize: CGSize(width: self.uiscreen.width * 0.8, height: self.uiscreen.height * 0.12)) {
//        if let barcodeUIImage = RSUnifiedCodeGenerator.shared.generateCode(barcodeString, machineReadableCodeObjectType: AVMetadataObject.ObjectType.ean13.rawValue, targetSize: CGSize(width: 110, height: 83)) {
            barcodeImage.image = barcodeUIImage

            barcodeImageHeight.constant = self.uiscreen.height * 0.12
//            barcodeImageHeight.constant = 83

        } else {
            barcodeImageHeight.constant = 0
        }

//        let couponsValueFloat = marketPassDetails?._total_available_discount ?? 0.0
//        let couponsValueString = String(format: "%.2f", couponsValueFloat)
//        // let couponsValueString = String(marketPassDetails?._total_available_discount ?? 0.0)
//        let attrRegular = [NSAttributedString.Key.font : UIFont(name: "PeridotPE-Regular", size: 17) ?? UIFont.systemFont(ofSize: 16), NSAttributedString.Key.foregroundColor: UIColor.white]
//        let attrBold = [NSAttributedString.Key.font : UIFont(name: "PeridotPE-Bold", size: 17) ?? UIFont.boldSystemFont(ofSize: 16), NSAttributedString.Key.foregroundColor: UIColor.white]
//        
//        let couponsValueNormalText1 = "Με τα διαθέσιμα κουπόνια μπορείς να εξοικονομήσεις έως και "
//        let couponsValueBoldText  = couponsValueString + "€."
//
//        let couponsValueAttributedString = NSMutableAttributedString(string:couponsValueNormalText1, attributes:attrRegular)
//        let couponsValueBoldString = NSMutableAttributedString(string: couponsValueBoldText, attributes:attrBold)
//
//        couponsValueAttributedString.append(couponsValueBoldString)
//        couponsValueLabel.attributedText = couponsValueAttributedString
        
        // ======

        // couponsValueLabel.text = "Χρησιμοποίησε τη SUPERMARKET DEALS CARD σου για να κερδίσεις έκπτωση σε επιλεγμένα προϊόντα. Ανακάλυψε τα διαθέσιμα εκπτωτικά κουπόνια στο For You."
        // couponsValueLabel.textAlignment = .left
        // couponsValueLabel.font = UIFont(name: "PeridotPE-Regular", size: 13.0)
        // couponsValueLabel.textColor = .white

        // ======

        let attrRegular = [NSAttributedString.Key.font : UIFont(name: "PeridotPE-Regular", size: 13) ?? UIFont.systemFont(ofSize: 12), NSAttributedString.Key.foregroundColor: UIColor.white]
        let attrBold = [NSAttributedString.Key.font : UIFont(name: "PeridotPE-SBold", size: 13) ?? UIFont.boldSystemFont(ofSize: 12), NSAttributedString.Key.foregroundColor: UIColor.white, NSAttributedString.Key.underlineStyle: NSUnderlineStyle.single.rawValue] as [NSAttributedString.Key : Any]
        
        let couponsValueNormalText1 = "Χρησιμοποίησε τη SUPERMARKET DEALS CARD σου και κέρδισε έκπτωση σε επιλεγμένα προϊόντα. Ανακάλυψε τα προϊόντα με εκπτωτικό κουπόνι στο "
        let couponsValueBoldText  = "For You"
        let couponsValueNormalText2 = "."

        let couponsValueAttributedString = NSMutableAttributedString(string:couponsValueNormalText1, attributes:attrRegular)
        let couponsValueBoldString = NSMutableAttributedString(string: couponsValueBoldText, attributes:attrBold)
        let couponsValueNormalString2 = NSMutableAttributedString(string: couponsValueNormalText2, attributes:attrRegular)

        couponsValueAttributedString.append(couponsValueBoldString)
        couponsValueAttributedString.append(couponsValueNormalString2)
        couponsValueLabel.attributedText = couponsValueAttributedString
        couponsValueLabel.textAlignment = .left

        // ======
        
        let supermarkets: Array<swiftApi.SupermarketModel> = marketPassDetails?._supermarkets ?? []
        
        // Create a horizontal stack view
        let stackView = UIStackView()
        stackView.axis = .horizontal
        stackView.spacing = 5 // Spacing between images
        stackView.alignment = .center
        stackView.distribution = .equalSpacing
        
        // Load images dynamically
        for sm in supermarkets {
            let imageView = UIImageView()
            imageView.contentMode = .scaleAspectFit
            imageView.widthAnchor.constraint(equalToConstant: 50).isActive = true
            imageView.heightAnchor.constraint(equalToConstant: 50).isActive = true
            
            imageView.load(link: sm._logo, placeholder: UIImage(), cache: URLCache())
            
            // Add image view to the stack view
            stackView.addArrangedSubview(imageView)
        }
        
        // Add the stack view to your main view
        smLogosView.addSubview(stackView)
        
        // Set up constraints for the stack view
        stackView.translatesAutoresizingMaskIntoConstraints = false
        NSLayoutConstraint.activate([
            stackView.leadingAnchor.constraint(equalTo: smLogosView.leadingAnchor, constant: 25),
            stackView.centerYAnchor.constraint(equalTo: smLogosView.centerYAnchor),
        ])

        passContainerView.isHidden = false
        self.view.layoutIfNeeded()
    }

    // func showSpinner() {
    //     // add the spinner view controller
    //     // addChild(spinner)
    //     // spinner.view.frame = view.frame
    //     // view.addSubview(spinner.view)
    //     // spinner.didMove(toParent: self)

    //     addChild(spinner)
    //     spinner.view.frame = CGRect(x: 0, y: 0, width: self.view.frame.width, height: self.view.frame.height)
    //     self.view.addSubview(spinner.view)
    //     spinner.didMove(toParent: self)
    // }
    
    // func hideSpinner() {
    //     // remove the spinner view controller
    //     spinner.willMove(toParent: nil)
    //     spinner.view.removeFromSuperview()
    //     spinner.removeFromParent()
    // }

    func showDialog(_ alertTitle: String, _ alertSubTitle: String) -> Void {

        let alert = UIAlertController(title: alertTitle, message: alertSubTitle, preferredStyle: .alert)
        alert.addAction(UIAlertAction(title: "OK", style: .default, handler: { action in
            switch action.style{
                case .default:
                print("default")

                case .cancel:
                print("cancel")

                case .destructive:
                print("destructive")

            }
        }))
        self.present(alert, animated: true, completion: nil)
    }
    
    func constructBarcode() -> String? {
        // EAN 13 barcode construction
        //TODO: FIX
//        let couponString = coupon?._barcode ?? ""
        let couponString = "123456789101112"
        
        if (!couponString.isEmpty) {
            var checkDigit = 0;
            var result = 0;
            
            var fixedCouponCode = couponString;
            if (fixedCouponCode.count < 12) {
                let loops = 12 - fixedCouponCode.count;
                var zerosStr = "";
                for i in 0 ..< loops {
                    zerosStr += "0"
                }
                // fixedCouponCode = zerosStr + fixedCouponCode;
                fixedCouponCode = fixedCouponCode + zerosStr;
            }

            var multiplier = 3;
            for idx in (0 ... (fixedCouponCode.count - 1)).reversed() {
                let curChar = fixedCouponCode[idx];
                result += (Int(curChar) ?? 0) * multiplier;
                multiplier = multiplier == 3 ? 1 : 3;
            }
            checkDigit = 10 - (result % 10);

            let barcodeStr = fixedCouponCode + String(checkDigit);
            return barcodeStr;
        }

        return ""
    }
    
    // MARK: - API Functions
    // func getMarketPassDetailsRequest() {
    //     showSpinner()

    //     swiftApi().getMarketPassDetailsAsync(getMarketPassDetailsCallback, failureCallback: {errorCode in
    //         print("========= getMarketPassDetailsRequest ERROR CODE =========", errorCode)
    //         self.hideSpinner()
    //         self.showDialog("Αποτυχία","Κάτι πήγε στραβά")
    //     })
    // }

    // func getMarketPassDetailsCallback (_ marketPassDetailsData: swiftApi.MarketPassDetailsModel?) -> Void {
    //     self.hideSpinner()

    //     if (marketPassDetailsData != nil) {
    //         DispatchQueue.main.async {
    //             if let tempMarketPassDetailsData = marketPassDetailsData {
    //                 self.marketPassDetails = tempMarketPassDetailsData
    //                 self.updateUI()
    //             }
    //         }
    //     } else {
    //         self.showDialog("Αποτυχία","Κάτι πήγε στραβά")
    //     }
    // }
    
    // MARK: - Actions
    @IBAction func supermakrtPassButtonAction(_ sender: Any) {
        swiftApi().openSupermarketPass(self)
    }
    
    @IBAction func mapButtonAction(_ sender: Any) {
        swiftApi().openSupermarketMap(self)
    }
    
}