stanwood/Stanwood_Debugger_iOS

View on GitHub
Example/Harlow/Modules/ExampleDebuggers/ExampleViewController.swift

Summary

Maintainability
A
1 hr
Test Coverage
//
//  ExampleViewController.swift
//  Harlow_Example
//
//  Created by Tal Zion on 24/12/2018.
//  Copyright © 2018 CocoaPods. All rights reserved.
//

import Foundation
import UIKit
import SourceModel


class ExampleViewController: UIViewController {
    
    @IBOutlet weak var tableView: UITableView!
    
    var dataSource: ExampleDataSource!
    var delegate: ExampleDelegate!
    var sections: Sections!
    
    enum ExampleType: Int {
        case http, analytics, crashes, error, logs, uiTesting
    }
    
    var exampleType: ExampleType!
    
    override func viewDidLoad() {
        super.viewDidLoad()
        
        exampleType = ExampleType(rawValue: tabBarController!.selectedIndex)!
        
        DispatchQueue.main.asyncAfter(deadline: .now() + .seconds(3)) {
        
            let err = NSError(domain: "com.debugger.test", code: -1, userInfo: [:])
            print("Lorem ipsum is a pseudo-Latin text used in web design, typography, layout, and printing in place of English to emphasise design elements over content. It's also called placeholder (or filler) text. It's a convenient tool for mock-ups. It helps to outline the visual elements of a document or presentation, eg typography, font, or layout. Lorem ipsum is mostly a part of a Latin text by the classical author and philosopher Cicero. Its words and letters have been changed by a")
            print(err)
            Swift.print("Hi")
        }
        
        print("Testting Debugger Logs ")
        
        print("Lorem ipsum is a pseudo-Latin text used in web design, typography, layout, and printing in place of English to emphasise design elements over content. It's also called placeholder (or filler) text. It's a convenient tool for mock-ups. It helps to outline the visual elements of a document or presentation, eg typography, font, or layout. Lorem ipsum is mostly a part of a Latin text by the classical author and philosopher Cicero. Its words and letters have been changed by a")
        
        debugPrint(" Testting Debugger Logs ")
        
        switch exampleType! {
        case .http:
            
            let responseFormatsExamples = NetworkingExample(items: ModelItems.responseFormatItems)
            responseFormatsExamples.title = "Response Formats"
            let getImgesNetworkingExample = NetworkingExample(items: ModelItems.getImgesNetworkingItems)
            getImgesNetworkingExample.title = "Image Formats"
            let getNetworkingExamples = NetworkingExample(items: ModelItems.getNetworkingItems)
            getNetworkingExamples.title = "[GET] Calls"
            let postNetworkingExamples = NetworkingExample(items: ModelItems.postNetworkingItems)
            postNetworkingExamples.title = "[POST] Calls"
            
            sections = Sections(items: [responseFormatsExamples, getImgesNetworkingExample, getNetworkingExamples, postNetworkingExamples])
        case .analytics:
            
            let analyticsContentExamples = AnalyticsExample(items: ModelItems.analyticsContentItems)
            analyticsContentExamples.title = "Content Tracking"
            let analyticsScreenExamples = AnalyticsExample(items: ModelItems.analyticsScreenItems)
            analyticsScreenExamples.title = "Screen Tracking"
            
            sections = Sections(items: [analyticsScreenExamples, analyticsContentExamples])
        case .crashes:

            let crahesContentExamples = CrashesExample(items: ModelItems.crashesContentItems)
            crahesContentExamples.title = "Crashes"

            sections = Sections(items: [crahesContentExamples])
        default: break
        }
        
        tableView.register(cellTypes: AnalyticsExampleCell.self, NetworkingExampleCell.self, CrashSampleCell.self)
        
        let nib = UINib(nibName: "HeaderView", bundle: nil)
        tableView.register(nib, forHeaderFooterViewReuseIdentifier: "HeaderView")
        
        tableView.estimatedRowHeight = 50
        tableView.rowHeight = UITableView.automaticDimension
        
        dataSource = ExampleDataSource(modelCollection: sections)
        delegate = ExampleDelegate(modelCollection: sections)
        
        tableView.delegate = delegate
        tableView.dataSource = dataSource
    }
}