BondDebenturesViewController.swift 11 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314
  1. //
  2. // BondDebenturesViewController.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 BondDebenturesViewController: UIViewController {
  11. @IBOutlet var planningDateTF: UITextField!
  12. @IBOutlet var noOfBondsPurchasedTF: UITextFieldWithDoneButton!
  13. @IBOutlet var faceValueTF: UITextFieldWithDoneButton!
  14. @IBOutlet var annualCouponRateTF: UITextFieldWithDoneButton!
  15. @IBOutlet var termTF: UITextField!
  16. @IBOutlet var noOfYearsDaysTF: UITextFieldWithDoneButton!
  17. @IBOutlet var couponPayoutFrequencyTF: UITextField!
  18. @IBOutlet var investmentDateTF: UITextField!
  19. @IBOutlet var currentYieldTF: UITextFieldWithDoneButton!
  20. fileprivate let customPicker = ToolbarPickerView()
  21. var activeTextField = 0
  22. var menu = Int()
  23. var viewModel = BondDebenturesViewModel()
  24. override func viewDidLoad() {
  25. super.viewDidLoad()
  26. // Do any additional setup after loading the view.
  27. viewModel.delegate = self
  28. planningDateTF.delegate = self
  29. noOfBondsPurchasedTF.delegate = self
  30. faceValueTF.delegate = self
  31. annualCouponRateTF.delegate = self
  32. termTF.delegate = self
  33. noOfYearsDaysTF.delegate = self
  34. couponPayoutFrequencyTF.delegate = self
  35. investmentDateTF.delegate = self
  36. currentYieldTF.delegate = self
  37. }
  38. override func viewWillAppear(_ animated: Bool) {
  39. super.viewWillAppear(animated)
  40. navigationController?.navigationBar.barStyle = .black
  41. setupUI()
  42. }
  43. override var preferredStatusBarStyle: UIStatusBarStyle {
  44. return .lightContent
  45. }
  46. func setupUI() {
  47. self.navigationItem.title = AppConstant.MENU_TITLE[menu]
  48. self.navigationItem.hidesBackButton = true
  49. let menuBarButtonItem = UIBarButtonItem(image: UIImage(systemName: "line.3.horizontal"), style: .plain, target: self, action: #selector(openMenu))
  50. self.navigationItem.leftBarButtonItem = menuBarButtonItem
  51. if #available(iOS 13, *) {
  52. let appearance = UINavigationBarAppearance()
  53. appearance.backgroundColor = .systemBlue
  54. appearance.titleTextAttributes = [.foregroundColor: UIColor.white]
  55. appearance.largeTitleTextAttributes = [.foregroundColor: UIColor.white]
  56. navigationController?.navigationBar.tintColor = .white
  57. navigationController?.navigationBar.standardAppearance = appearance
  58. navigationController?.navigationBar.compactAppearance = appearance
  59. navigationController?.navigationBar.scrollEdgeAppearance = appearance
  60. }
  61. let date = Date()
  62. let dateFormatter = DateFormatter()
  63. dateFormatter.dateFormat = "dd-MM-yyyy"
  64. planningDateTF.text = dateFormatter.string(from: date)
  65. //Date Picker
  66. investmentDateTF.datePicker(target: self,
  67. doneAction: #selector(doneAction),
  68. cancelAction: #selector(cancelAction),
  69. datePickerMode: .date)
  70. investmentDateTF.delegate = self
  71. //Picker View
  72. createPickerView()
  73. }
  74. @objc func openMenu(_ sender: Any) {
  75. let menu = storyboard!.instantiateViewController(withIdentifier: "SideMenuNavigationController") as! SideMenuNavigationController
  76. present(menu, animated: true, completion: nil)
  77. }
  78. func createPickerView() {
  79. self.termTF.inputView = self.customPicker
  80. self.termTF.inputAccessoryView = self.customPicker.toolbar
  81. self.couponPayoutFrequencyTF.inputView = self.customPicker
  82. self.couponPayoutFrequencyTF.inputAccessoryView = self.customPicker.toolbar
  83. self.customPicker.delegate = self
  84. self.customPicker.dataSource = self
  85. self.customPicker.toolbarDelegate = self
  86. }
  87. @objc
  88. func cancelAction() {
  89. self.investmentDateTF.resignFirstResponder()
  90. }
  91. @objc
  92. func doneAction() {
  93. if let datePickerView = self.investmentDateTF.inputView as? UIDatePicker {
  94. let dateFormatter = DateFormatter()
  95. dateFormatter.dateFormat = AppConstant.dateFormat2
  96. let dateString = dateFormatter.string(from: datePickerView.date)
  97. self.investmentDateTF.text = dateString
  98. //self.dateOfBirth = dateString
  99. print(datePickerView.date)
  100. print(dateString)
  101. self.investmentDateTF.resignFirstResponder()
  102. }
  103. }
  104. func dataValidation() {
  105. if noOfBondsPurchasedTF.text?.isEmpty == true {
  106. self.view.makeToast("Fill number of bonds purchased!")
  107. } else if faceValueTF.text?.isEmpty == true {
  108. self.view.makeToast("Fill face value!")
  109. } else if annualCouponRateTF.text?.isEmpty == true {
  110. self.view.makeToast("Annual coupon code!")
  111. } else if termTF.text?.isEmpty == true {
  112. self.view.makeToast("Select term!")
  113. } else if noOfYearsDaysTF.text?.isEmpty == true {
  114. self.view.makeToast("Fill number of years/days!")
  115. } else if couponPayoutFrequencyTF.text?.isEmpty == true {
  116. self.view.makeToast("Select coupon payout frequency!")
  117. } else if investmentDateTF.text?.isEmpty == true {
  118. self.view.makeToast("Select investment date!")
  119. } else if currentYieldTF.text?.isEmpty == true {
  120. self.view.makeToast("Fill current yield!")
  121. } else {
  122. if Reachability.isConnectedToNetwork() {
  123. let yieldInterest = currentYieldTF.text!
  124. let yieldInterestPercent = Double(yieldInterest)!/100.0
  125. let couponRate = annualCouponRateTF.text!
  126. let couponRatePercent = Double(couponRate)!/100.0
  127. viewModel.getBondDebenture(tenureType: termTF.text!, investmentDateString: investmentDateTF.text!, tenure: noOfYearsDaysTF.text!, coupounPayoutFrequency: couponPayoutFrequencyTF.text!, interestCouponRate: String(couponRatePercent), bondFaceValue: faceValueTF.text!, numberOfBondsPurchased: noOfBondsPurchasedTF.text!, currentYield: String(yieldInterestPercent))
  128. } else {
  129. Alert.showInternetFailureAlert(on: self)
  130. }
  131. }
  132. }
  133. /*
  134. // MARK: - Navigation
  135. // In a storyboard-based application, you will often want to do a little preparation before navigation
  136. override func prepare(for segue: UIStoryboardSegue, sender: Any?) {
  137. // Get the new view controller using segue.destination.
  138. // Pass the selected object to the new view controller.
  139. }
  140. */
  141. @IBAction func saveAction(_ sender: Any) {
  142. self.dataValidation()
  143. }
  144. @IBAction func undoAction(_ sender: Any) {
  145. planningDateTF.text = nil
  146. noOfBondsPurchasedTF.text = nil
  147. faceValueTF.text = nil
  148. annualCouponRateTF.text = nil
  149. termTF.text = nil
  150. noOfYearsDaysTF.text = nil
  151. couponPayoutFrequencyTF.text = nil
  152. investmentDateTF.text = nil
  153. currentYieldTF.text = nil
  154. }
  155. }
  156. extension BondDebenturesViewController: UIPickerViewDelegate, UIPickerViewDataSource {
  157. // MARK: UIPickerView Delegation
  158. func numberOfComponents(in pickerView: UIPickerView) -> Int {
  159. return 1
  160. }
  161. func pickerView( _ pickerView: UIPickerView, numberOfRowsInComponent component: Int) -> Int {
  162. switch activeTextField
  163. {
  164. case 1:
  165. return AppConstant.FIXED_DEPOSIT_TERM.count
  166. case 2:
  167. return AppConstant.INTEREST_PAYOUT_FREQUENCY.count
  168. default:
  169. return 0
  170. }
  171. }
  172. func pickerView( _ pickerView: UIPickerView, titleForRow row: Int, forComponent component: Int) -> String? {
  173. switch activeTextField{
  174. case 1:
  175. return AppConstant.FIXED_DEPOSIT_TERM[row]
  176. case 2:
  177. return AppConstant.INTEREST_PAYOUT_FREQUENCY[row]
  178. default:
  179. return ""
  180. }
  181. }
  182. func pickerView( _ pickerView: UIPickerView, didSelectRow row: Int, inComponent component: Int) {
  183. switch activeTextField{
  184. case 1:
  185. termTF.text = AppConstant.FIXED_DEPOSIT_TERM[row]
  186. break
  187. case 2:
  188. couponPayoutFrequencyTF.text = AppConstant.INTEREST_PAYOUT_FREQUENCY[row]
  189. break
  190. default:
  191. break
  192. }
  193. }
  194. }
  195. extension BondDebenturesViewController: UITextFieldDelegate {
  196. func textField(_ textField: UITextField, shouldChangeCharactersIn range: NSRange, replacementString string: String) -> Bool {
  197. switch textField {
  198. case termTF:
  199. return false
  200. case couponPayoutFrequencyTF:
  201. return false
  202. default:
  203. return true
  204. }
  205. }
  206. // when user select a textfield, this method will be called
  207. func textFieldDidBeginEditing(_ textField: UITextField) {
  208. switch textField {
  209. case termTF:
  210. activeTextField = 1
  211. customPicker.reloadAllComponents()
  212. case couponPayoutFrequencyTF:
  213. activeTextField = 2
  214. customPicker.reloadAllComponents()
  215. default:
  216. activeTextField = 0
  217. }
  218. }
  219. }
  220. extension BondDebenturesViewController: ToolbarPickerViewDelegate {
  221. func didTapDone() {
  222. switch activeTextField {
  223. case 1:
  224. let row = self.customPicker.selectedRow(inComponent: 0)
  225. self.customPicker.selectRow(row, inComponent: 0, animated: false)
  226. self.termTF.text = AppConstant.FIXED_DEPOSIT_TERM[row]
  227. self.termTF.resignFirstResponder()
  228. case 2:
  229. let row = self.customPicker.selectedRow(inComponent: 0)
  230. self.customPicker.selectRow(row, inComponent: 0, animated: false)
  231. self.couponPayoutFrequencyTF.text = AppConstant.INTEREST_PAYOUT_FREQUENCY[row]
  232. self.couponPayoutFrequencyTF.resignFirstResponder()
  233. default:
  234. return
  235. }
  236. }
  237. func didTapCancel() {
  238. switch activeTextField {
  239. case 1:
  240. self.termTF.text = nil
  241. self.termTF.resignFirstResponder()
  242. case 2:
  243. self.couponPayoutFrequencyTF.text = nil
  244. self.couponPayoutFrequencyTF.resignFirstResponder()
  245. default:
  246. return
  247. }
  248. }
  249. }
  250. extension BondDebenturesViewController: BondDebenturesViewProtocol {
  251. func navigate(bondModel: BondDebenturesModel, bondOuputListModel: [BondDebenturesOutputListModel]) {
  252. DispatchQueue.main.async {
  253. let bondSummaryVC = self.storyboard?.instantiateViewController(withIdentifier: "BondDebenturesSummaryViewController") as! BondDebenturesSummaryViewController
  254. bondSummaryVC.bondDebentureModel = bondModel
  255. bondSummaryVC.bondDebentureOutputListModel = bondOuputListModel
  256. self.navigationController?.pushViewController(bondSummaryVC, animated: true)
  257. }
  258. }
  259. func startLoader() {
  260. ActivityIndicator.start()
  261. }
  262. func stopLoader() {
  263. ActivityIndicator.stop()
  264. }
  265. func showError(error: String) {
  266. self.view.makeToast(error)
  267. }
  268. }