element-ios/Riot/Modules/Room/NotificationSettings/SwiftUI/RoomNotificationSettings.swift

99 lines
3.3 KiB
Swift
Raw Normal View History

//
2021-08-05 23:27:13 +00:00
// 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 SwiftUI
@available(iOS 14.0.0, *)
struct RoomNotificationSettings: View {
2021-08-05 23:27:13 +00:00
@ObservedObject var viewModel: RoomNotificationSettingsSwiftUIViewModel
2021-08-05 23:27:13 +00:00
let presentedModally: Bool
2021-08-05 23:27:13 +00:00
@ViewBuilder
private var leftButton: some View {
if presentedModally {
2021-08-12 15:57:19 +00:00
Button(VectorL10n.cancel) {
2021-08-05 23:27:13 +00:00
viewModel.process(viewAction: .cancel)
}
}
}
@ViewBuilder
private var rightButton: some View {
Button(VectorL10n.save) {
2021-08-05 23:27:13 +00:00
viewModel.process(viewAction: .save)
}
}
var body: some View {
VectorForm {
if case let .swiftUI(avatarData) = viewModel.viewState.avatarData {
RoomNotificationSettingsHeader(
avatarData: avatarData,
displayName: viewModel.viewState.displayName
)
}
2021-08-05 23:27:13 +00:00
SwiftUI.Section(
header: FormSectionHeader(text: VectorL10n.roomNotifsSettingsNotifyMeFor),
footer: FormSectionFooter(text: viewModel.viewState.roomEncryptedString)
2021-08-05 23:27:13 +00:00
) {
ForEach(viewModel.viewState.notificationOptions) { option in
FormPickerItem(title: option.title, selected: viewModel.viewState.notificationState == option) {
2021-08-05 23:27:13 +00:00
viewModel.process(viewAction: .selectNotificationState(option))
}
}
}
2021-08-17 10:44:08 +00:00
}
.activityIndicator(show: viewModel.viewState.saving)
.navigationBarTitle(VectorL10n.roomDetailsNotifs)
.navigationBarItems(
leading: leftButton,
trailing: rightButton
)
.onAppear {
viewModel.process(viewAction: .load)
2021-08-05 23:27:13 +00:00
}
}
}
@available(iOS 14.0, *)
struct RoomNotificationSettings_Previews: PreviewProvider {
static let mockViewModel = RoomNotificationSettingsSwiftUIViewModel(
2021-08-05 23:27:13 +00:00
roomNotificationService: MockRoomNotificationSettingsService.example,
avatarData: .swiftUI(MockAvatarInput.example),
displayName: MockAvatarInput.example.displayName,
roomEncrypted: true
2021-08-05 23:27:13 +00:00
)
2021-08-05 23:27:13 +00:00
static var previews: some View {
Group {
NavigationView {
RoomNotificationSettings(viewModel: mockViewModel, presentedModally: true)
2021-08-05 23:27:13 +00:00
.navigationBarTitleDisplayMode(.inline)
.addDependency(MockAvatarService.example)
2021-08-05 23:27:13 +00:00
}
NavigationView {
RoomNotificationSettings(viewModel: mockViewModel, presentedModally: true)
.navigationBarTitleDisplayMode(.inline)
.theme(ThemeIdentifier.dark)
2021-08-17 10:44:08 +00:00
.addDependency(MockAvatarService.example)
}
2021-08-05 23:27:13 +00:00
}
}
}