NCMoreAppSuggestionsCell.swift 1.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354
  1. //
  2. // NCMoreAppSuggestionsCell.swift
  3. // Nextcloud
  4. //
  5. // Created by Milen on 14.06.23.
  6. // Copyright © 2023 Marino Faggiana. All rights reserved.
  7. //
  8. import Foundation
  9. class NCMoreAppSuggestionsCell: BaseNCMoreCell {
  10. @IBOutlet weak var talkView: UIStackView!
  11. @IBOutlet weak var notesView: UIStackView!
  12. @IBOutlet weak var moreAppsView: UIStackView!
  13. static let reuseIdentifier = "NCMoreAppSuggestionsCell"
  14. static func fromNib() -> UINib {
  15. return UINib(nibName: "NCMoreAppSuggestionsCell", bundle: nil)
  16. }
  17. override func awakeFromNib() {
  18. super.awakeFromNib()
  19. backgroundColor = .clear
  20. talkView.addGestureRecognizer(UITapGestureRecognizer(target: self, action: #selector(talkTapped)))
  21. notesView.addGestureRecognizer(UITapGestureRecognizer(target: self, action: #selector(notesTapped)))
  22. moreAppsView.addGestureRecognizer(UITapGestureRecognizer(target: self, action: #selector(moreAppsTapped)))
  23. }
  24. @objc func talkTapped() {
  25. let url = URL(string: "nextcloudtalk://")!
  26. if UIApplication.shared.canOpenURL(url) {
  27. UIApplication.shared.open(url)
  28. } else {
  29. UIApplication.shared.open(URL(string: NCGlobal.shared.talkAppStoreUrl)!)
  30. }
  31. }
  32. @objc func notesTapped() {
  33. let url = URL(string: "nextcloudnotes://")!
  34. if UIApplication.shared.canOpenURL(url) {
  35. UIApplication.shared.open(url)
  36. } else {
  37. UIApplication.shared.open(URL(string: NCGlobal.shared.notesAppStoreUrl)!)
  38. }
  39. }
  40. @objc func moreAppsTapped() {
  41. UIApplication.shared.open(URL(string: NCGlobal.shared.moreAppsUrl)!)
  42. }
  43. }