KisanVikasPatraViewController.swift 8.5 KB

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