12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273 |
- //
- // NCMoreAppSuggestionsCell.swift
- // Nextcloud
- //
- // Created by Milen on 14.06.23.
- // Copyright © 2023 Marino Faggiana. All rights reserved.
- //
- // Author Marino Faggiana <marino.faggiana@nextcloud.com>
- //
- // This program is free software: you can redistribute it and/or modify
- // it under the terms of the GNU General Public License as published by
- // the Free Software Foundation, either version 3 of the License, or
- // (at your option) any later version.
- //
- // This program is distributed in the hope that it will be useful,
- // but WITHOUT ANY WARRANTY; without even the implied warranty of
- // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- // GNU General Public License for more details.
- //
- // You should have received a copy of the GNU General Public License
- // along with this program. If not, see <http://www.gnu.org/licenses/>.
- //
- import Foundation
- import SafariServices
- class NCMoreAppSuggestionsCell: BaseNCMoreCell {
- @IBOutlet weak var talkView: UIStackView!
- @IBOutlet weak var notesView: UIStackView!
- @IBOutlet weak var moreAppsView: UIStackView!
- static let reuseIdentifier = "NCMoreAppSuggestionsCell"
- static func fromNib() -> UINib {
- return UINib(nibName: "NCMoreAppSuggestionsCell", bundle: nil)
- }
- override func awakeFromNib() {
- super.awakeFromNib()
- backgroundColor = .clear
- talkView.addGestureRecognizer(UITapGestureRecognizer(target: self, action: #selector(talkTapped)))
- notesView.addGestureRecognizer(UITapGestureRecognizer(target: self, action: #selector(notesTapped)))
- moreAppsView.addGestureRecognizer(UITapGestureRecognizer(target: self, action: #selector(moreAppsTapped)))
- }
- @objc func talkTapped() {
- guard let url = URL(string: NCGlobal.shared.talkSchemeUrl) else { return }
- if UIApplication.shared.canOpenURL(url) {
- UIApplication.shared.open(url)
- } else {
- guard let url = URL(string: NCGlobal.shared.talkAppStoreUrl) else { return }
- UIApplication.shared.open(url)
- }
- }
- @objc func notesTapped() {
- guard let url = URL(string: NCGlobal.shared.notesSchemeUrl) else { return }
- if UIApplication.shared.canOpenURL(url) {
- UIApplication.shared.open(url)
- } else {
- guard let url = URL(string: NCGlobal.shared.notesAppStoreUrl) else { return }
- UIApplication.shared.open(url)
- }
- }
- @objc func moreAppsTapped() {
- guard let url = URL(string: NCGlobal.shared.moreAppsUrl) else { return }
- UIApplication.shared.open(url)
- }
- }
|