VideoIntroductionViewController.swift 3.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990
  1. //
  2. // VideoIntroductionViewController.swift
  3. // Learn Genie
  4. //
  5. // Created by Suraj Kumar Mandal on 30/08/21.
  6. //
  7. import UIKit
  8. import youtube_ios_player_helper
  9. import SideMenu
  10. class VideoIntroductionViewController: UIViewController {
  11. @IBOutlet weak var playerView: YTPlayerView!
  12. @IBOutlet var navigationBar: UINavigationBar!
  13. let translation = DBManager.sharedInstance.database.objects(TopicModel.self)
  14. var topicName = ""
  15. var videoId = String()
  16. override func viewDidLoad() {
  17. super.viewDidLoad()
  18. // Do any additional setup after loading the view.
  19. }
  20. override func viewWillAppear(_ animated: Bool) {
  21. navigationBar.topItem?.title = Helper.translateText(inputText: topicName)
  22. getVideoId()
  23. }
  24. func getVideoId() {
  25. for item in translation {
  26. if topicName == item.name {
  27. videoId = item.video
  28. self.playVideo()
  29. } else {
  30. //self.view.makeToast("No topic found!")
  31. }
  32. }
  33. }
  34. func playVideo() {
  35. playerView.load(withVideoId: videoId, playerVars: ["playsinline": "1"])
  36. }
  37. /*
  38. // MARK: - Navigation
  39. // In a storyboard-based application, you will often want to do a little preparation before navigation
  40. override func prepare(for segue: UIStoryboardSegue, sender: Any?) {
  41. // Get the new view controller using segue.destination.
  42. // Pass the selected object to the new view controller.
  43. }
  44. */
  45. @IBAction func menuNavAction(_ sender: Any) {
  46. let menu = storyboard!.instantiateViewController(withIdentifier: "SideMenuNavigationController") as! SideMenuNavigationController
  47. present(menu, animated: true, completion: nil)
  48. }
  49. @IBAction func headerNavigation(_ sender: UIButton) {
  50. switch sender.tag {
  51. case 0:
  52. DispatchQueue.main.async {
  53. let introVC = self.storyboard?.instantiateViewController(withIdentifier: "IntroductionViewController") as! IntroductionViewController
  54. introVC.topicName = self.topicName
  55. self.navigationController?.pushViewController(introVC, animated: false)
  56. }
  57. break
  58. case 1:
  59. DispatchQueue.main.async {
  60. let videoVC = self.storyboard?.instantiateViewController(withIdentifier: "VideoIntroductionViewController") as! VideoIntroductionViewController
  61. videoVC.topicName = self.topicName
  62. self.navigationController?.pushViewController(videoVC, animated: false)
  63. }
  64. case 2:
  65. DispatchQueue.main.async {
  66. let audioVC = self.storyboard?.instantiateViewController(withIdentifier: "AudioIntroductionViewController") as! AudioIntroductionViewController
  67. audioVC.topicName = self.topicName
  68. self.navigationController?.pushViewController(audioVC, animated: false)
  69. }
  70. default:
  71. break
  72. }
  73. }
  74. }