// // SideMenuTableViewController.swift // Product Calculator // // Created by Suraj Kumar Mandal on 09/11/21. // import UIKit import GoogleSignIn class SideMenuTableViewController: UITableViewController { override func viewDidLoad() { super.viewDidLoad() // Uncomment the following line to preserve selection between presentations // self.clearsSelectionOnViewWillAppear = false // Uncomment the following line to display an Edit button in the navigation bar for this view controller. // self.navigationItem.rightBarButtonItem = self.editButtonItem } @objc func dismissMenu(sender: UIButton) { dismiss(animated: true, completion: nil) } // MARK: - Table view data source // override func numberOfSections(in tableView: UITableView) -> Int { // // #warning Incomplete implementation, return the number of sections // return 0 // } override func tableView(_ tableView: UITableView, numberOfRowsInSection section: Int) -> Int { // #warning Incomplete implementation, return the number of rows return 3 } override func tableView(_ tableView: UITableView, cellForRowAt indexPath: IndexPath) -> UITableViewCell { if indexPath.row == 0 { guard let cell = tableView.dequeueReusableCell(withIdentifier: "MenuLogoTableViewCell", for: indexPath) as? MenuLogoTableViewCell else { return UITableViewCell() } cell.closeButton.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() } return cell } else { guard let cell = tableView.dequeueReusableCell(withIdentifier: "MenuLogoutTableViewCell", for: indexPath) as? MenuLogoutTableViewCell else { return UITableViewCell() } return cell } } override 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 { GIDSignIn.sharedInstance.signOut() // Show the app's signed-out state. let loginVC = self.storyboard?.instantiateViewController(withIdentifier: "LoginViewController") as! LoginViewController self.navigationController?.pushViewController(loginVC, animated: false) } } } override func tableView(_ tableView: UITableView, heightForRowAt indexPath: IndexPath) -> CGFloat { if indexPath.row == 0 { return 137 } else if indexPath.row == 1 { return 60 } else { return 60 } } /* // Override to support conditional editing of the table view. override func tableView(_ tableView: UITableView, canEditRowAt indexPath: IndexPath) -> Bool { // Return false if you do not want the specified item to be editable. return true } */ /* // Override to support editing the table view. override func tableView(_ tableView: UITableView, commit editingStyle: UITableViewCell.EditingStyle, forRowAt indexPath: IndexPath) { if editingStyle == .delete { // Delete the row from the data source tableView.deleteRows(at: [indexPath], with: .fade) } else if editingStyle == .insert { // Create a new instance of the appropriate class, insert it into the array, and add a new row to the table view } } */ /* // Override to support rearranging the table view. override func tableView(_ tableView: UITableView, moveRowAt fromIndexPath: IndexPath, to: IndexPath) { } */ /* // Override to support conditional rearranging of the table view. override func tableView(_ tableView: UITableView, canMoveRowAt indexPath: IndexPath) -> Bool { // Return false if you do not want the item to be re-orderable. return true } */ /* // 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. } */ }