SideMenuTableViewController.swift 5.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134
  1. //
  2. // SideMenuTableViewController.swift
  3. // Product Calculator
  4. //
  5. // Created by Suraj Kumar Mandal on 09/11/21.
  6. //
  7. import UIKit
  8. import GoogleSignIn
  9. class SideMenuTableViewController: UITableViewController {
  10. override func viewDidLoad() {
  11. super.viewDidLoad()
  12. // Uncomment the following line to preserve selection between presentations
  13. // self.clearsSelectionOnViewWillAppear = false
  14. // Uncomment the following line to display an Edit button in the navigation bar for this view controller.
  15. // self.navigationItem.rightBarButtonItem = self.editButtonItem
  16. }
  17. @objc func dismissMenu(sender: UIButton) {
  18. dismiss(animated: true, completion: nil)
  19. }
  20. // MARK: - Table view data source
  21. // override func numberOfSections(in tableView: UITableView) -> Int {
  22. // // #warning Incomplete implementation, return the number of sections
  23. // return 0
  24. // }
  25. override func tableView(_ tableView: UITableView, numberOfRowsInSection section: Int) -> Int {
  26. // #warning Incomplete implementation, return the number of rows
  27. return 3
  28. }
  29. override func tableView(_ tableView: UITableView, cellForRowAt indexPath: IndexPath) -> UITableViewCell {
  30. if indexPath.row == 0 {
  31. guard let cell = tableView.dequeueReusableCell(withIdentifier: "MenuLogoTableViewCell", for: indexPath) as? MenuLogoTableViewCell else {
  32. return UITableViewCell()
  33. }
  34. cell.closeButton.addTarget(self, action: #selector(dismissMenu(sender:)), for: .touchUpInside)
  35. return cell
  36. } else if indexPath.row == 1 {
  37. guard let cell = tableView.dequeueReusableCell(withIdentifier: "MenuHomeTableViewCell", for: indexPath) as? MenuHomeTableViewCell else {
  38. return UITableViewCell()
  39. }
  40. return cell
  41. } else {
  42. guard let cell = tableView.dequeueReusableCell(withIdentifier: "MenuLogoutTableViewCell", for: indexPath) as? MenuLogoutTableViewCell else {
  43. return UITableViewCell()
  44. }
  45. return cell
  46. }
  47. }
  48. override func tableView(_ tableView: UITableView, didSelectRowAt indexPath: IndexPath) {
  49. if indexPath.row == 0 {
  50. tableView.deselectRow(at: indexPath, animated: true)
  51. } else if indexPath.row == 1 {
  52. DispatchQueue.main.async {
  53. let learningModuleVC = self.storyboard?.instantiateViewController(withIdentifier: "DashboardViewController") as! DashboardViewController
  54. self.navigationController?.pushViewController(learningModuleVC, animated: false)
  55. }
  56. } else if indexPath.row == 2 {
  57. DispatchQueue.main.async {
  58. GIDSignIn.sharedInstance.signOut()
  59. // Show the app's signed-out state.
  60. let loginVC = self.storyboard?.instantiateViewController(withIdentifier: "LoginViewController") as! LoginViewController
  61. self.navigationController?.pushViewController(loginVC, animated: false)
  62. }
  63. }
  64. }
  65. override func tableView(_ tableView: UITableView, heightForRowAt indexPath: IndexPath) -> CGFloat {
  66. if indexPath.row == 0 {
  67. return 137
  68. } else if indexPath.row == 1 {
  69. return 60
  70. } else {
  71. return 60
  72. }
  73. }
  74. /*
  75. // Override to support conditional editing of the table view.
  76. override func tableView(_ tableView: UITableView, canEditRowAt indexPath: IndexPath) -> Bool {
  77. // Return false if you do not want the specified item to be editable.
  78. return true
  79. }
  80. */
  81. /*
  82. // Override to support editing the table view.
  83. override func tableView(_ tableView: UITableView, commit editingStyle: UITableViewCell.EditingStyle, forRowAt indexPath: IndexPath) {
  84. if editingStyle == .delete {
  85. // Delete the row from the data source
  86. tableView.deleteRows(at: [indexPath], with: .fade)
  87. } else if editingStyle == .insert {
  88. // Create a new instance of the appropriate class, insert it into the array, and add a new row to the table view
  89. }
  90. }
  91. */
  92. /*
  93. // Override to support rearranging the table view.
  94. override func tableView(_ tableView: UITableView, moveRowAt fromIndexPath: IndexPath, to: IndexPath) {
  95. }
  96. */
  97. /*
  98. // Override to support conditional rearranging of the table view.
  99. override func tableView(_ tableView: UITableView, canMoveRowAt indexPath: IndexPath) -> Bool {
  100. // Return false if you do not want the item to be re-orderable.
  101. return true
  102. }
  103. */
  104. /*
  105. // MARK: - Navigation
  106. // In a storyboard-based application, you will often want to do a little preparation before navigation
  107. override func prepare(for segue: UIStoryboardSegue, sender: Any?) {
  108. // Get the new view controller using segue.destination.
  109. // Pass the selected object to the new view controller.
  110. }
  111. */
  112. }