123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179 |
- //
- // 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
- }
- }
- }
|