PONationalSavingViewController.swift 8.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242
  1. //
  2. // PONationalSavingViewController.swift
  3. // Product Calculator
  4. //
  5. // Created by Suraj Kumar Mandal on 01/12/21.
  6. //
  7. import UIKit
  8. import SideMenu
  9. import Toast_Swift
  10. class PONationalSavingViewController: UIViewController {
  11. @IBOutlet var depositDateTF: UITextField!
  12. @IBOutlet var depositAmountTF: UITextField!
  13. @IBOutlet var annualInterestRateTF: UITextField!
  14. @IBOutlet var termTF: UITextField!
  15. @IBOutlet var compoundFrequencyTF: UITextField!
  16. fileprivate let customPicker = ToolbarPickerView()
  17. var menu = Int()
  18. var viewModel = PONationalSavingViewModel()
  19. override func viewDidLoad() {
  20. super.viewDidLoad()
  21. // Do any additional setup after loading the view.
  22. viewModel.delegate = self
  23. depositDateTF.delegate = self
  24. depositAmountTF.delegate = self
  25. annualInterestRateTF.delegate = self
  26. termTF.delegate = self
  27. compoundFrequencyTF.delegate = self
  28. }
  29. override func viewWillAppear(_ animated: Bool) {
  30. super.viewWillAppear(animated)
  31. navigationController?.navigationBar.barStyle = .black
  32. setupUI()
  33. }
  34. override var preferredStatusBarStyle: UIStatusBarStyle {
  35. return .lightContent
  36. }
  37. func setupUI() {
  38. self.navigationItem.title = AppConstant.MENU_TITLE[menu]
  39. self.navigationItem.hidesBackButton = true
  40. let menuBarButtonItem = UIBarButtonItem(image: UIImage(systemName: "line.3.horizontal"), style: .plain, target: self, action: #selector(openMenu))
  41. self.navigationItem.leftBarButtonItem = menuBarButtonItem
  42. if #available(iOS 13, *) {
  43. let appearance = UINavigationBarAppearance()
  44. appearance.backgroundColor = .systemBlue
  45. appearance.titleTextAttributes = [.foregroundColor: UIColor.white]
  46. appearance.largeTitleTextAttributes = [.foregroundColor: UIColor.white]
  47. navigationController?.navigationBar.tintColor = .white
  48. navigationController?.navigationBar.standardAppearance = appearance
  49. navigationController?.navigationBar.compactAppearance = appearance
  50. navigationController?.navigationBar.scrollEdgeAppearance = appearance
  51. }
  52. //Date Picker
  53. depositDateTF.datePicker(target: self,
  54. doneAction: #selector(doneAction),
  55. cancelAction: #selector(cancelAction),
  56. datePickerMode: .date)
  57. depositDateTF.delegate = self
  58. //Picker View
  59. createPickerView()
  60. }
  61. @objc func openMenu(_ sender: Any) {
  62. let menu = storyboard!.instantiateViewController(withIdentifier: "SideMenuNavigationController") as! SideMenuNavigationController
  63. present(menu, animated: true, completion: nil)
  64. }
  65. func createPickerView() {
  66. self.compoundFrequencyTF.inputView = self.customPicker
  67. self.compoundFrequencyTF.inputAccessoryView = self.customPicker.toolbar
  68. self.customPicker.delegate = self
  69. self.customPicker.dataSource = self
  70. self.customPicker.toolbarDelegate = self
  71. }
  72. @objc
  73. func cancelAction() {
  74. self.depositDateTF.resignFirstResponder()
  75. }
  76. @objc
  77. func doneAction() {
  78. if let datePickerView = self.depositDateTF.inputView as? UIDatePicker {
  79. let dateFormatter = DateFormatter()
  80. dateFormatter.dateFormat = AppConstant.dateFormat2
  81. let dateString = dateFormatter.string(from: datePickerView.date)
  82. self.depositDateTF.text = dateString
  83. print(datePickerView.date)
  84. print(dateString)
  85. self.depositDateTF.resignFirstResponder()
  86. if Reachability.isConnectedToNetwork() {
  87. viewModel.getPoNSCInterest(depositDate: dateString)
  88. } else {
  89. Alert.showInternetFailureAlert(on: self)
  90. }
  91. }
  92. }
  93. func dataValidation() {
  94. if depositDateTF.text?.isEmpty == true {
  95. self.view.makeToast("Select deposit date!")
  96. } else if depositAmountTF.text?.isEmpty == true {
  97. self.view.makeToast("Fill deposit amount!")
  98. } else if annualInterestRateTF.text?.isEmpty == true {
  99. self.view.makeToast("Fill annual interest rate!")
  100. } else if termTF.text?.isEmpty == true {
  101. self.view.makeToast("Fill term!")
  102. } else if compoundFrequencyTF.text?.isEmpty == true {
  103. self.view.makeToast("Select compound frequency!")
  104. } else {
  105. if Reachability.isConnectedToNetwork() {
  106. viewModel.getPoNSCOutput(openingAmount: depositAmountTF.text!, annualInterest: annualInterestRateTF.text!, tenure: termTF.text!, payoutFrequency: compoundFrequencyTF.text!, depositDate: depositDateTF.text!)
  107. } else {
  108. Alert.showInternetFailureAlert(on: self)
  109. }
  110. }
  111. }
  112. /*
  113. // MARK: - Navigation
  114. // In a storyboard-based application, you will often want to do a little preparation before navigation
  115. override func prepare(for segue: UIStoryboardSegue, sender: Any?) {
  116. // Get the new view controller using segue.destination.
  117. // Pass the selected object to the new view controller.
  118. }
  119. */
  120. @IBAction func saveAction(_ sender: Any) {
  121. self.dataValidation()
  122. }
  123. @IBAction func undoAction(_ sender: Any) {
  124. depositDateTF.text = nil
  125. depositAmountTF.text = nil
  126. annualInterestRateTF.text = nil
  127. // termTF.text = nil
  128. // compoundFrequencyTF.text = nil
  129. }
  130. }
  131. extension PONationalSavingViewController: UIPickerViewDelegate, UIPickerViewDataSource {
  132. // MARK: UIPickerView Delegation
  133. func numberOfComponents(in pickerView: UIPickerView) -> Int {
  134. return 1
  135. }
  136. func pickerView( _ pickerView: UIPickerView, numberOfRowsInComponent component: Int) -> Int {
  137. return AppConstant.INTEREST_PAYOUT_FREQUENCY.count
  138. }
  139. func pickerView( _ pickerView: UIPickerView, titleForRow row: Int, forComponent component: Int) -> String? {
  140. return AppConstant.INTEREST_PAYOUT_FREQUENCY[row]
  141. }
  142. func pickerView( _ pickerView: UIPickerView, didSelectRow row: Int, inComponent component: Int) {
  143. compoundFrequencyTF.text = AppConstant.INTEREST_PAYOUT_FREQUENCY[row]
  144. }
  145. }
  146. extension PONationalSavingViewController: UITextFieldDelegate {
  147. func textField(_ textField: UITextField, shouldChangeCharactersIn range: NSRange, replacementString string: String) -> Bool {
  148. switch textField {
  149. case compoundFrequencyTF:
  150. return false
  151. default:
  152. return true
  153. }
  154. }
  155. // when user select a textfield, this method will be called
  156. func textFieldDidBeginEditing(_ textField: UITextField) {
  157. switch textField {
  158. case compoundFrequencyTF:
  159. customPicker.reloadAllComponents()
  160. default:
  161. break
  162. }
  163. }
  164. }
  165. extension PONationalSavingViewController: ToolbarPickerViewDelegate {
  166. func didTapDone() {
  167. let row = self.customPicker.selectedRow(inComponent: 0)
  168. self.customPicker.selectRow(row, inComponent: 0, animated: false)
  169. self.compoundFrequencyTF.text = AppConstant.INTEREST_PAYOUT_FREQUENCY[row]
  170. self.compoundFrequencyTF.resignFirstResponder()
  171. }
  172. func didTapCancel() {
  173. self.compoundFrequencyTF.text = nil
  174. self.compoundFrequencyTF.resignFirstResponder()
  175. }
  176. }
  177. extension PONationalSavingViewController: PONationalSavingViewProtocol {
  178. func setInterestRate(rate: String) {
  179. annualInterestRateTF.text = rate
  180. termTF.text = "5"
  181. compoundFrequencyTF.text = "Annually"
  182. }
  183. func navigate(_ data: PONationalSavingModel) {
  184. DispatchQueue.main.async {
  185. let ponscSummaryVC = self.storyboard?.instantiateViewController(withIdentifier: "PONationalSavingSummaryViewController") as! PONationalSavingSummaryViewController
  186. ponscSummaryVC.poNScModel = data
  187. self.navigationController?.pushViewController(ponscSummaryVC, animated: true)
  188. }
  189. }
  190. func startLoader() {
  191. ActivityIndicator.start()
  192. }
  193. func stopLoader() {
  194. ActivityIndicator.stop()
  195. }
  196. func showError(error: String) {
  197. self.view.makeToast(error)
  198. }
  199. }