passepartout-apple/Passepartout-iOS/Scenes/About/AboutViewController.swift

215 lines
6.1 KiB
Swift
Raw Normal View History

2018-10-11 07:13:19 +00:00
//
// AboutViewController.swift
// Passepartout-iOS
//
// Created by Davide De Rosa on 9/28/18.
2019-03-09 10:44:44 +00:00
// Copyright (c) 2019 Davide De Rosa. All rights reserved.
2018-10-11 07:13:19 +00:00
//
2018-11-03 21:33:30 +00:00
// https://github.com/passepartoutvpn
2018-10-11 07:13:19 +00:00
//
// This file is part of Passepartout.
//
// Passepartout 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.
//
// Passepartout 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 Passepartout. If not, see <http://www.gnu.org/licenses/>.
//
import UIKit
2019-03-18 10:52:19 +00:00
import Passepartout_Core
2018-10-11 07:13:19 +00:00
class AboutViewController: UITableViewController, TableModelHost {
// MARK: TableModelHost
let model: TableModel<SectionType, RowType> = {
let model: TableModel<SectionType, RowType> = TableModel()
model.add(.info)
model.add(.moreInfo)
model.add(.web)
model.add(.share)
model.setHeader("", for: .info)
model.setHeader(L10n.About.Sections.Web.header, for: .web)
model.setHeader(L10n.About.Sections.Share.header, for: .share)
model.set([.version], in: .info)
model.set([.seeChangelog, .seeCredits], in: .moreInfo)
2019-02-03 21:07:10 +00:00
model.set([.website, .faq, .disclaimer, .privacyPolicy], in: .web)
model.set([.shareTwitter, .shareGeneric], in: .share)
2018-10-11 07:13:19 +00:00
return model
}()
func reloadModel() {
}
// MARK: UIViewController
override func awakeFromNib() {
super.awakeFromNib()
applyDetailTitle(Theme.current)
}
override func viewDidLoad() {
super.viewDidLoad()
title = L10n.About.title
}
// MARK: Actions
private func showVersion() {
2019-04-06 21:26:41 +00:00
perform(segue: StoryboardSegue.About.versionSegueIdentifier)
2018-10-11 07:13:19 +00:00
}
private func openCredits() {
perform(segue: StoryboardSegue.About.creditsSegueIdentifier)
2018-10-11 07:13:19 +00:00
}
private func visit(_ url: URL) {
2018-10-11 07:13:19 +00:00
UIApplication.shared.open(url, options: [:], completionHandler: nil)
}
private func inviteFriend(sender: UITableViewCell?) {
let message = "\(L10n.Share.message) \(AppConstants.URLs.website)"
let vc = UIActivityViewController(activityItems: [message], applicationActivities: nil)
vc.popoverPresentationController?.sourceView = sender
present(vc, animated: true, completion: nil)
}
2018-10-11 07:13:19 +00:00
@IBAction private func dismiss() {
dismiss(animated: true, completion: nil)
}
}
// MARK: -
extension AboutViewController {
enum SectionType: Int {
case info
case moreInfo
case web
2018-10-11 07:13:19 +00:00
case share
2018-10-11 07:13:19 +00:00
}
enum RowType: Int {
case version
case seeChangelog
case seeCredits
2018-10-11 07:13:19 +00:00
case website
2019-02-03 21:07:10 +00:00
case faq
2018-10-29 20:22:08 +00:00
case disclaimer
2018-10-29 19:59:05 +00:00
case privacyPolicy
2018-10-23 09:28:24 +00:00
case shareTwitter
case shareGeneric
2018-10-11 07:13:19 +00:00
}
override func numberOfSections(in tableView: UITableView) -> Int {
return model.count
}
override func tableView(_ tableView: UITableView, titleForHeaderInSection section: Int) -> String? {
return model.header(for: section)
}
override func tableView(_ tableView: UITableView, titleForFooterInSection section: Int) -> String? {
return model.footer(for: section)
}
override func tableView(_ tableView: UITableView, heightForHeaderInSection section: Int) -> CGFloat {
return model.headerHeight(for: section)
}
override func tableView(_ tableView: UITableView, heightForFooterInSection section: Int) -> CGFloat {
return model.footerHeight(for: section)
}
2018-10-11 07:13:19 +00:00
override func tableView(_ tableView: UITableView, numberOfRowsInSection section: Int) -> Int {
return model.count(for: section)
}
override func tableView(_ tableView: UITableView, cellForRowAt indexPath: IndexPath) -> UITableViewCell {
let cell = Cells.setting.dequeue(from: tableView, for: indexPath)
2018-10-11 07:13:19 +00:00
switch model.row(at: indexPath) {
case .version:
2018-10-29 19:44:01 +00:00
cell.leftText = L10n.Version.title
2018-10-11 07:13:19 +00:00
cell.rightText = Utils.versionString()
case .seeChangelog:
2019-04-26 16:28:01 +00:00
cell.leftText = L10n.About.Cells.Changelog.caption
case .seeCredits:
2019-04-26 16:28:01 +00:00
cell.leftText = L10n.About.Cells.Credits.caption
2018-10-11 07:13:19 +00:00
case .website:
cell.leftText = L10n.About.Cells.Website.caption
2019-02-03 21:07:10 +00:00
case .faq:
cell.leftText = L10n.About.Cells.Faq.caption
2018-10-29 20:22:08 +00:00
case .disclaimer:
cell.leftText = L10n.About.Cells.Disclaimer.caption
2018-10-29 19:59:05 +00:00
case .privacyPolicy:
cell.leftText = L10n.About.Cells.PrivacyPolicy.caption
2018-10-23 09:28:24 +00:00
case .shareTwitter:
cell.leftText = L10n.About.Cells.ShareTwitter.caption
case .shareGeneric:
cell.leftText = L10n.About.Cells.ShareGeneric.caption
2018-10-11 07:13:19 +00:00
}
return cell
2018-10-11 07:13:19 +00:00
}
override func tableView(_ tableView: UITableView, didSelectRowAt indexPath: IndexPath) {
switch model.row(at: indexPath) {
case .version:
showVersion()
case .seeChangelog:
visit(AppConstants.URLs.changelog)
case .seeCredits:
openCredits()
2018-10-11 07:13:19 +00:00
case .website:
visit(AppConstants.URLs.website)
2018-10-11 07:13:19 +00:00
2019-02-03 21:07:10 +00:00
case .faq:
visit(AppConstants.URLs.faq)
2019-02-03 21:07:10 +00:00
2018-10-29 20:22:08 +00:00
case .disclaimer:
visit(AppConstants.URLs.disclaimer)
2018-10-29 19:59:05 +00:00
case .privacyPolicy:
visit(AppConstants.URLs.privacyPolicy)
2018-10-23 09:28:24 +00:00
case .shareTwitter:
visit(AppConstants.URLs.twitterIntent)
case .shareGeneric:
inviteFriend(sender: tableView.cellForRow(at: indexPath))
2018-10-11 07:13:19 +00:00
}
tableView.deselectRow(at: indexPath, animated: true)
}
}