passepartout-apple/Passepartout/App/Views/AboutView.swift

129 lines
3.7 KiB
Swift
Raw Normal View History

2022-04-12 13:09:14 +00:00
//
// AboutView.swift
// Passepartout
//
// Created by Davide De Rosa on 2/7/22.
// Copyright (c) 2022 Davide De Rosa. All rights reserved.
//
// https://github.com/passepartoutvpn
//
// 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 SwiftUI
struct AboutView: View {
// private let appName = Unlocalized.appName
2022-04-12 13:09:14 +00:00
private let versionString = Constants.Global.appVersionString
private let redditURL = Constants.URLs.subreddit
2022-04-12 13:09:14 +00:00
private let shareMessage = L10n.Global.Messages.share
2022-04-12 13:09:14 +00:00
private let readmeURL = Constants.URLs.readme
private let changelogURL = Constants.URLs.changelog
2022-04-12 13:09:14 +00:00
private let homeURL = Constants.URLs.website
private let faqURL = Constants.URLs.faq
private let disclaimerURL = Constants.URLs.disclaimer
private let privacyURL = Constants.URLs.privacyPolicy
var body: some View {
List {
infoSection
supportSection
webSection
githubSection
2022-04-12 13:09:14 +00:00
}.themeSecondaryView()
.navigationTitle(L10n.About.title)
}
private var infoSection: some View {
2022-04-12 13:09:14 +00:00
Section {
NavigationLink {
VersionView()
} label: {
Text(L10n.Version.title)
.withTrailingText(versionString)
}
NavigationLink(L10n.Credits.title) {
CreditsView()
}
}
}
private var supportSection: some View {
Section {
Button(L10n.About.Items.JoinCommunity.caption) {
URL.openURL(redditURL)
2022-04-12 13:09:14 +00:00
}
Button(L10n.About.Items.ShareTwitter.caption, action: shareOnTwitter)
Button(L10n.About.Items.WriteReview.caption, action: submitReview)
} header: {
Text(L10n.Menu.All.Support.title)
2022-04-12 13:09:14 +00:00
}
}
private var webSection: some View {
Section {
2022-04-12 13:09:14 +00:00
Button(L10n.About.Items.Website.caption) {
URL.openURL(homeURL)
2022-04-12 13:09:14 +00:00
}
Button(Unlocalized.About.faq) {
URL.openURL(faqURL)
}
Button(L10n.About.Items.Disclaimer.caption) {
URL.openURL(disclaimerURL)
}
Button(L10n.About.Items.PrivacyPolicy.caption) {
URL.openURL(privacyURL)
}
} header: {
Text(L10n.About.Sections.Web.header)
2022-04-12 13:09:14 +00:00
}
}
private var githubSection: some View {
Section {
Button(Unlocalized.About.readme) {
URL.openURL(readmeURL)
}
Button(Unlocalized.About.changelog) {
URL.openURL(changelogURL)
}
} header: {
Text(Unlocalized.About.github)
}
}
}
extension AboutView {
private func shareOnTwitter() {
let url = Unlocalized.Social.twitterIntent(withMessage: shareMessage)
URL.openURL(url)
}
private func submitReview() {
let reviewURL = Reviewer.urlForReview(withAppId: Constants.App.appStoreId)
URL.openURL(reviewURL)
}
2022-04-12 13:09:14 +00:00
}