CpCdViewController.swift 8.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235
  1. //
  2. // CpCdViewController.swift
  3. // Product Calculator
  4. //
  5. // Created by Suraj Kumar Mandal on 29/11/21.
  6. //
  7. import UIKit
  8. import SideMenu
  9. import Toast_Swift
  10. class CpCdViewController: UIViewController {
  11. @IBOutlet var investmentAmountTF: UITextFieldWithDoneButton!
  12. @IBOutlet var annualInterestRateTF: UITextFieldWithDoneButton!
  13. @IBOutlet var tenureTF: UITextFieldWithDoneButton!
  14. @IBOutlet var compoundFrequencyTF: UITextField!
  15. @IBOutlet var investmentDateTF: UITextField!
  16. fileprivate let customPicker = ToolbarPickerView()
  17. var menu = Int()
  18. var viewModel = CpCdViewModel()
  19. override func viewDidLoad() {
  20. super.viewDidLoad()
  21. // Do any additional setup after loading the view.
  22. viewModel.delegate = self
  23. investmentAmountTF.delegate = self
  24. annualInterestRateTF.delegate = self
  25. tenureTF.delegate = self
  26. compoundFrequencyTF.delegate = self
  27. investmentDateTF.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. investmentDateTF.datePicker(target: self,
  54. doneAction: #selector(doneAction),
  55. cancelAction: #selector(cancelAction),
  56. datePickerMode: .date)
  57. investmentDateTF.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.investmentDateTF.resignFirstResponder()
  75. }
  76. @objc
  77. func doneAction() {
  78. if let datePickerView = self.investmentDateTF.inputView as? UIDatePicker {
  79. let dateFormatter = DateFormatter()
  80. dateFormatter.dateFormat = AppConstant.dateFormat1
  81. let dateString = dateFormatter.string(from: datePickerView.date)
  82. self.investmentDateTF.text = dateString
  83. //self.dateOfBirth = dateString
  84. print(datePickerView.date)
  85. print(dateString)
  86. self.investmentDateTF.resignFirstResponder()
  87. }
  88. }
  89. func dataValidation() {
  90. if investmentAmountTF.text?.isEmpty == true {
  91. self.view.makeToast("Fill investment amount!")
  92. } else if annualInterestRateTF.text?.isEmpty == true {
  93. self.view.makeToast("Fill annual interest rate!")
  94. } else if tenureTF.text?.isEmpty == true {
  95. self.view.makeToast("Fill tenture in days!")
  96. } else if compoundFrequencyTF.text?.isEmpty == true {
  97. self.view.makeToast("Select compound frequency!")
  98. } else if investmentDateTF.text?.isEmpty == true {
  99. self.view.makeToast("Select investment date!")
  100. } else {
  101. if Reachability.isConnectedToNetwork() {
  102. let interest = annualInterestRateTF.text!
  103. let interestPercent = Double(interest)!/100.0
  104. viewModel.getCpCdOutput(depositAmount: investmentAmountTF.text!, annualInterest: String(interestPercent), tenure: tenureTF.text!, compoundFrequency: compoundFrequencyTF.text!, depositDate: investmentDateTF.text!)
  105. } else {
  106. Alert.showInternetFailureAlert(on: self)
  107. }
  108. }
  109. }
  110. /*
  111. // MARK: - Navigation
  112. // In a storyboard-based application, you will often want to do a little preparation before navigation
  113. override func prepare(for segue: UIStoryboardSegue, sender: Any?) {
  114. // Get the new view controller using segue.destination.
  115. // Pass the selected object to the new view controller.
  116. }
  117. */
  118. @IBAction func saveAction(_ sender: Any) {
  119. self.dataValidation()
  120. }
  121. @IBAction func undoAction(_ sender: Any) {
  122. investmentAmountTF.text = nil
  123. annualInterestRateTF.text = nil
  124. tenureTF.text = nil
  125. compoundFrequencyTF.text = nil
  126. investmentDateTF.text = nil
  127. }
  128. }
  129. extension CpCdViewController: UIPickerViewDelegate, UIPickerViewDataSource {
  130. // MARK: UIPickerView Delegation
  131. func numberOfComponents(in pickerView: UIPickerView) -> Int {
  132. return 1
  133. }
  134. func pickerView( _ pickerView: UIPickerView, numberOfRowsInComponent component: Int) -> Int {
  135. return AppConstant.INTEREST_PAYOUT_FREQUENCY.count
  136. }
  137. func pickerView( _ pickerView: UIPickerView, titleForRow row: Int, forComponent component: Int) -> String? {
  138. return AppConstant.INTEREST_PAYOUT_FREQUENCY[row]
  139. }
  140. func pickerView( _ pickerView: UIPickerView, didSelectRow row: Int, inComponent component: Int) {
  141. compoundFrequencyTF.text = AppConstant.INTEREST_PAYOUT_FREQUENCY[row]
  142. }
  143. }
  144. extension CpCdViewController: UITextFieldDelegate {
  145. func textField(_ textField: UITextField, shouldChangeCharactersIn range: NSRange, replacementString string: String) -> Bool {
  146. switch textField {
  147. case compoundFrequencyTF:
  148. return false
  149. default:
  150. return true
  151. }
  152. }
  153. // when user select a textfield, this method will be called
  154. func textFieldDidBeginEditing(_ textField: UITextField) {
  155. switch textField {
  156. case compoundFrequencyTF:
  157. customPicker.reloadAllComponents()
  158. default:
  159. break
  160. }
  161. }
  162. }
  163. extension CpCdViewController: ToolbarPickerViewDelegate {
  164. func didTapDone() {
  165. let row = self.customPicker.selectedRow(inComponent: 0)
  166. self.customPicker.selectRow(row, inComponent: 0, animated: false)
  167. self.compoundFrequencyTF.text = AppConstant.INTEREST_PAYOUT_FREQUENCY[row]
  168. self.compoundFrequencyTF.resignFirstResponder()
  169. }
  170. func didTapCancel() {
  171. self.compoundFrequencyTF.text = nil
  172. self.compoundFrequencyTF.resignFirstResponder()
  173. }
  174. }
  175. extension CpCdViewController: CpCdViewProtocol {
  176. func navigate(_ data: CpCdModel) {
  177. DispatchQueue.main.async {
  178. let cpcdSummaryVC = self.storyboard?.instantiateViewController(withIdentifier: "CpCdSummaryViewController") as! CpCdSummaryViewController
  179. cpcdSummaryVC.cpcdModel = data
  180. self.navigationController?.pushViewController(cpcdSummaryVC, animated: true)
  181. }
  182. }
  183. func startLoader() {
  184. ActivityIndicator.start()
  185. }
  186. func stopLoader() {
  187. ActivityIndicator.stop()
  188. }
  189. func showError(error: String) {
  190. self.view.makeToast(error)
  191. }
  192. }