* Update copyright holding and dates * compound IDE Macros updated * update copyright * update copyrights done * update templates and README
48 lines
1.5 KiB
Swift
48 lines
1.5 KiB
Swift
//
|
|
// Copyright 2025 Element Creations Ltd.
|
|
// Copyright 2022-2025 New Vector Ltd.
|
|
//
|
|
// SPDX-License-Identifier: AGPL-3.0-only OR LicenseRef-Element-Commercial.
|
|
// Please see LICENSE files in the repository root for full details.
|
|
//
|
|
|
|
import Compound
|
|
import SwiftUI
|
|
|
|
struct AnalyticsSettingsScreen: View {
|
|
@Bindable var context: AnalyticsSettingsScreenViewModel.Context
|
|
|
|
var body: some View {
|
|
Form {
|
|
analyticsSection
|
|
}
|
|
.compoundList()
|
|
.navigationTitle(L10n.commonAnalytics)
|
|
.navigationBarTitleDisplayMode(.inline)
|
|
}
|
|
|
|
var analyticsSection: some View {
|
|
Section {
|
|
ListRow(label: .plain(title: L10n.screenAnalyticsSettingsShareData),
|
|
kind: .toggle($context.enableAnalytics))
|
|
.onChange(of: context.enableAnalytics) {
|
|
context.send(viewAction: .toggleAnalytics)
|
|
}
|
|
} footer: {
|
|
Text(context.viewState.strings.sectionFooter)
|
|
.compoundListSectionFooter()
|
|
}
|
|
}
|
|
}
|
|
|
|
// MARK: - Previews
|
|
|
|
struct AnalyticsSettingsScreen_Previews: PreviewProvider, TestablePreview {
|
|
static var previews: some View {
|
|
let appSettings = AppSettings()
|
|
let viewModel = AnalyticsSettingsScreenViewModel(appSettings: appSettings,
|
|
analytics: ServiceLocator.shared.analytics)
|
|
AnalyticsSettingsScreen(context: viewModel.context)
|
|
}
|
|
}
|