64 lines
2.4 KiB
Swift
64 lines
2.4 KiB
Swift
//
|
|
// Copyright 2021 New Vector Ltd
|
|
//
|
|
// Licensed under the Apache License, Version 2.0 (the "License");
|
|
// you may not use this file except in compliance with the License.
|
|
// You may obtain a copy of the License at
|
|
//
|
|
// http://www.apache.org/licenses/LICENSE-2.0
|
|
//
|
|
// Unless required by applicable law or agreed to in writing, software
|
|
// distributed under the License is distributed on an "AS IS" BASIS,
|
|
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
// See the License for the specific language governing permissions and
|
|
// limitations under the License.
|
|
//
|
|
|
|
import Foundation
|
|
|
|
enum AnalyticsPromptViewAction {
|
|
/// Enable analytics.
|
|
case enable
|
|
/// Disable analytics.
|
|
case disable
|
|
}
|
|
|
|
enum AnalyticsPromptViewModelAction {
|
|
/// Enable analytics.
|
|
case enable
|
|
/// Disable analytics.
|
|
case disable
|
|
}
|
|
|
|
struct AnalyticsPromptViewState: BindableState {
|
|
/// Attributed strings created from localized HTML.
|
|
let strings = AnalyticsPromptStrings()
|
|
}
|
|
|
|
/// A collection of strings for the UI that need to be parsed from HTML
|
|
struct AnalyticsPromptStrings {
|
|
let optInContent: AttributedString
|
|
let point1 = AttributedStringBuilder().fromHTML(ElementL10n.analyticsOptInListItem1) ?? AttributedString(ElementL10n.analyticsOptInListItem1)
|
|
let point2 = AttributedStringBuilder().fromHTML(ElementL10n.analyticsOptInListItem2) ?? AttributedString(ElementL10n.analyticsOptInListItem2)
|
|
|
|
init() {
|
|
// Create the opt in content with a placeholder.
|
|
let linkPlaceholder = "{link}"
|
|
var optInContent = AttributedString(ElementL10n.analyticsOptInContent(InfoPlistReader.target.bundleDisplayName, linkPlaceholder))
|
|
|
|
guard let range = optInContent.range(of: linkPlaceholder) else {
|
|
self.optInContent = AttributedString(ElementL10n.analyticsOptInContent(InfoPlistReader.target.bundleDisplayName,
|
|
ElementL10n.analyticsOptInContentLink))
|
|
MXLog.failure("Failed to add a link attribute to the opt in content.")
|
|
return
|
|
}
|
|
|
|
// Replace the placeholder with a link.
|
|
var link = AttributedString(ElementL10n.analyticsOptInContentLink)
|
|
link.link = BuildSettings.analyticsConfiguration.termsURL
|
|
optInContent.replaceSubrange(range, with: link)
|
|
|
|
self.optInContent = optInContent
|
|
}
|
|
}
|