NCMoreAppSuggestionsCell.swift 2.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273
  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. // Author Marino Faggiana <marino.faggiana@nextcloud.com>
  9. //
  10. // This program is free software: you can redistribute it and/or modify
  11. // it under the terms of the GNU General Public License as published by
  12. // the Free Software Foundation, either version 3 of the License, or
  13. // (at your option) any later version.
  14. //
  15. // This program is distributed in the hope that it will be useful,
  16. // but WITHOUT ANY WARRANTY; without even the implied warranty of
  17. // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  18. // GNU General Public License for more details.
  19. //
  20. // You should have received a copy of the GNU General Public License
  21. // along with this program. If not, see <http://www.gnu.org/licenses/>.
  22. //
  23. import Foundation
  24. import SafariServices
  25. class NCMoreAppSuggestionsCell: BaseNCMoreCell {
  26. @IBOutlet weak var talkView: UIStackView!
  27. @IBOutlet weak var notesView: UIStackView!
  28. @IBOutlet weak var moreAppsView: UIStackView!
  29. static let reuseIdentifier = "NCMoreAppSuggestionsCell"
  30. static func fromNib() -> UINib {
  31. return UINib(nibName: "NCMoreAppSuggestionsCell", bundle: nil)
  32. }
  33. override func awakeFromNib() {
  34. super.awakeFromNib()
  35. backgroundColor = .clear
  36. talkView.addGestureRecognizer(UITapGestureRecognizer(target: self, action: #selector(talkTapped)))
  37. notesView.addGestureRecognizer(UITapGestureRecognizer(target: self, action: #selector(notesTapped)))
  38. moreAppsView.addGestureRecognizer(UITapGestureRecognizer(target: self, action: #selector(moreAppsTapped)))
  39. }
  40. @objc func talkTapped() {
  41. guard let url = URL(string: NCGlobal.shared.talkSchemeUrl) else { return }
  42. if UIApplication.shared.canOpenURL(url) {
  43. UIApplication.shared.open(url)
  44. } else {
  45. guard let url = URL(string: NCGlobal.shared.talkAppStoreUrl) else { return }
  46. UIApplication.shared.open(url)
  47. }
  48. }
  49. @objc func notesTapped() {
  50. guard let url = URL(string: NCGlobal.shared.notesSchemeUrl) else { return }
  51. if UIApplication.shared.canOpenURL(url) {
  52. UIApplication.shared.open(url)
  53. } else {
  54. guard let url = URL(string: NCGlobal.shared.notesAppStoreUrl) else { return }
  55. UIApplication.shared.open(url)
  56. }
  57. }
  58. @objc func moreAppsTapped() {
  59. guard let url = URL(string: NCGlobal.shared.moreAppsUrl) else { return }
  60. UIApplication.shared.open(url)
  61. }
  62. }