// // SideMenuViewController.swift // Learn Genie // // Created by Suraj Kumar Mandal on 13/08/21. // import UIKit import GoogleSignIn class SideMenuViewController: UIViewController { @IBOutlet weak var menuTableView: UITableView! override func viewDidLoad() { super.viewDidLoad() // Do any additional setup after loading the view. menuTableView.delegate = self menuTableView.dataSource = self menuTableView.tableFooterView = UIView() } @objc func dismissMenu(sender: UIButton) { dismiss(animated: true, completion: nil) } /* // MARK: - Navigation // In a storyboard-based application, you will often want to do a little preparation before navigation override func prepare(for segue: UIStoryboardSegue, sender: Any?) { // Get the new view controller using segue.destination. // Pass the selected object to the new view controller. } */ } extension SideMenuViewController: UITableViewDelegate, UITableViewDataSource { func tableView(_ tableView: UITableView, numberOfRowsInSection section: Int) -> Int { return 9 } func tableView(_ tableView: UITableView, cellForRowAt indexPath: IndexPath) -> UITableViewCell { if indexPath.row == 0 { guard let cell = tableView.dequeueReusableCell(withIdentifier: "MenuHeaderTableViewCell", for: indexPath) as? MenuHeaderTableViewCell else { return UITableViewCell() } cell.dismissMenuButton.addTarget(self, action: #selector(dismissMenu(sender:)), for: .touchUpInside) return cell } else if indexPath.row == 1 { guard let cell = tableView.dequeueReusableCell(withIdentifier: "MenuHomeTableViewCell", for: indexPath) as? MenuHomeTableViewCell else { return UITableViewCell() } cell.homeMenuLabel.text = Helper.translateText(inputText: "Home") return cell } else if indexPath.row == 2 { guard let cell = tableView.dequeueReusableCell(withIdentifier: "MenuLearnAboutFinanceTableViewCell", for: indexPath) as? MenuLearnAboutFinanceTableViewCell else { return UITableViewCell() } cell.learnAboutFinanceMenuLabel.text = Helper.translateText(inputText: "Learn About Finance") return cell } else if indexPath.row == 3 { guard let cell = tableView.dequeueReusableCell(withIdentifier: "MenuCertificationTableViewCell", for: indexPath) as? MenuCertificationTableViewCell else { return UITableViewCell() } cell.certificationMenuLabel.text = Helper.translateText(inputText: "Monthly Quiz") return cell } else if indexPath.row == 4 { guard let cell = tableView.dequeueReusableCell(withIdentifier: "MenuScoreboardTableViewCell", for: indexPath) as? MenuScoreboardTableViewCell else { return UITableViewCell() } cell.scoreboardMenuLabel.text = Helper.translateText(inputText: "Scoreboard") return cell } else if indexPath.row == 5 { guard let cell = tableView.dequeueReusableCell(withIdentifier: "MenuWebinarTableViewCell", for: indexPath) as? MenuWebinarTableViewCell else { return UITableViewCell() } cell.webinarMenuLabel.text = Helper.translateText(inputText: "Webinar") return cell } else if indexPath.row == 6 { guard let cell = tableView.dequeueReusableCell(withIdentifier: "MenuChangeLanguageTableViewCell", for: indexPath) as? MenuChangeLanguageTableViewCell else { return UITableViewCell() } cell.changeLanguageMenuLabel.text = Helper.translateText(inputText: "Change Language") return cell } else if indexPath.row == 7 { guard let cell = tableView.dequeueReusableCell(withIdentifier: "MenuEditProfileTableViewCell", for: indexPath) as? MenuEditProfileTableViewCell else { return UITableViewCell() } cell.editProfileMenuLabel.text = Helper.translateText(inputText: "Edit Profile") return cell } else { guard let cell = tableView.dequeueReusableCell(withIdentifier: "MenuLogoutTableViewCell", for: indexPath) as? MenuLogoutTableViewCell else { return UITableViewCell() } cell.logoutMenuLabel.text = Helper.translateText(inputText: "Logout") return cell } } func tableView(_ tableView: UITableView, didSelectRowAt indexPath: IndexPath) { if indexPath.row == 0 { tableView.deselectRow(at: indexPath, animated: true) } else if indexPath.row == 1 { DispatchQueue.main.async { let learningModuleVC = self.storyboard?.instantiateViewController(withIdentifier: "DashboardViewController") as! DashboardViewController self.navigationController?.pushViewController(learningModuleVC, animated: false) } } else if indexPath.row == 2 { DispatchQueue.main.async { let learningModuleVC = self.storyboard?.instantiateViewController(withIdentifier: "LearningModulesViewController") as! LearningModulesViewController self.navigationController?.pushViewController(learningModuleVC, animated: false) } } else if indexPath.row == 3 { // DispatchQueue.main.async { // let learningModuleVC = self.storyboard?.instantiateViewController(withIdentifier: "CertificationTestViewController") as! CertificationTestViewController // // self.navigationController?.pushViewController(learningModuleVC, animated: false) // } } else if indexPath.row == 4 { DispatchQueue.main.async { let learningModuleVC = self.storyboard?.instantiateViewController(withIdentifier: "ScoreboardViewController") as! ScoreboardViewController self.navigationController?.pushViewController(learningModuleVC, animated: false) } } else if indexPath.row == 5 { tableView.deselectRow(at: indexPath, animated: true) } else if indexPath.row == 6 { DispatchQueue.main.async { let selectLanguageVC = self.storyboard?.instantiateViewController(withIdentifier:"SelectLanguageViewController" ) as! SelectLanguageViewController self.navigationController?.pushViewController(selectLanguageVC, animated: true) } } else if indexPath.row == 7 { DispatchQueue.main.async { let userDetailsVC = self.storyboard?.instantiateViewController(withIdentifier:"UserDetailsViewController" ) as! UserDetailsViewController userDetailsVC.pageMode = "Profile" self.navigationController?.pushViewController(userDetailsVC, animated: true) //self.present(userDetailsVC, animated: true, completion: nil) } } else { if Reachability.isConnectedToNetwork() { GIDSignIn.sharedInstance.signOut() // Show the app's signed-out state. DispatchQueue.main.async { let loginVC = self.storyboard?.instantiateViewController(withIdentifier:"LoginViewController" ) as! LoginViewController self.navigationController?.pushViewController(loginVC, animated: true) } } else { Alert.showInternetFailureAlert(on: self) } } } func tableView(_ tableView: UITableView, heightForRowAt indexPath: IndexPath) -> CGFloat { if indexPath.row == 0 { return 121 } else if indexPath.row == 1 { return 64 } else if indexPath.row == 2 { return 64 } else if indexPath.row == 3 { return 64 } else if indexPath.row == 4 { return 64 } else if indexPath.row == 5 { return 64 } else if indexPath.row == 6 { return 64 } else if indexPath.row == 7 { return 64 } else { return 64 } } }