Create live location sharing lab flag promotion screen.

This commit is contained in:
SBiOSoftWhare 2022-07-04 17:09:11 +02:00
parent e3b04f6368
commit 471c0b8754
7 changed files with 276 additions and 0 deletions

View file

@ -0,0 +1,32 @@
//
// Copyright 2022 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
// MARK: View
struct LiveLocationLabPromotionViewState: BindableState {
var bindings: LiveLocationLabPromotionBindings
}
struct LiveLocationLabPromotionBindings {
var enableLabFlag: Bool
}
enum LiveLocationLabPromotionViewAction {
case complete
}

View file

@ -0,0 +1,48 @@
//
// Copyright 2022 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
typealias LiveLocationLabPromotionViewModelType = StateStoreViewModel<LiveLocationLabPromotionViewState,
Never,
LiveLocationLabPromotionViewAction>
class LiveLocationLabPromotionViewModel: LiveLocationLabPromotionViewModelType, LiveLocationLabPromotionViewModelProtocol {
// MARK: - Properties
// MARK: Private
// MARK: Public
var completion: ((Bool) -> Void)?
// MARK: - Setup
init() {
let bindings = LiveLocationLabPromotionBindings(enableLabFlag: false)
super.init(initialViewState: LiveLocationLabPromotionViewState(bindings: bindings))
}
// MARK: - Public
override func process(viewAction: LiveLocationLabPromotionViewAction) {
switch viewAction {
case .complete:
completion?(self.state.bindings.enableLabFlag)
}
}
}

View file

@ -0,0 +1,23 @@
//
// Copyright 2022 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
protocol LiveLocationLabPromotionViewModelProtocol {
var completion: ((Bool) -> Void)? { get set }
var context: LiveLocationLabPromotionViewModelType.Context { get }
}

View file

@ -0,0 +1,44 @@
//
// Copyright 2022 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
import SwiftUI
/// Using an enum for the screen allows you define the different state cases with
/// the relevant associated data for each case.
enum MockLiveLocationLabPromotionScreenState: MockScreenState, CaseIterable {
// A case for each state you want to represent
// with specific, minimal associated data that will allow you
// mock that screen.
case labFlagOff
/// The associated screen
var screenType: Any.Type {
LiveLocationLabPromotionView.self
}
/// Generate the view struct for the screen state.
var screenView: ([Any], AnyView) {
let viewModel = LiveLocationLabPromotionViewModel()
// can simulate service and viewModel actions here if needs be.
return (
[self, viewModel],
AnyView(LiveLocationLabPromotionView(viewModel: viewModel.context)
))
}
}

View file

@ -0,0 +1,22 @@
//
// Copyright 2022 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 XCTest
import RiotSwiftUI
class LiveLocationLabPromotionUITests: MockScreenTest {
// Nothing to test as the view is completely static
}

View file

@ -0,0 +1,23 @@
//
// Copyright 2022 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 XCTest
@testable import RiotSwiftUI
class LiveLocationLabPromotionViewModelTests: XCTestCase {
// Nothing to test as there is no mutable state
}

View file

@ -0,0 +1,84 @@
//
// Copyright 2022 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
struct LiveLocationLabPromotionView: View {
// MARK: - Properties
// MARK: Private
@Environment(\.theme) private var theme
@ObservedObject var viewModel: LiveLocationLabPromotionViewModel.Context
// MARK: - View
var body: some View {
VStack {
VStack {
Image(uiImage: Asset.Images.locationLiveIcon.image)
.resizable()
.frame(width: 60, height: 60)
.padding(.top, 15)
Text(VectorL10n.locationSharingLiveLabPromotionTitle)
.font(theme.fonts.title2B)
.multilineTextAlignment(.center)
.foregroundColor(theme.colors.primaryContent)
.padding(.top, 15)
Text(VectorL10n.locationSharingLiveLabPromotionText)
.font(theme.fonts.body)
.multilineTextAlignment(.center)
.foregroundColor(theme.colors.primaryContent)
.padding(.top, 1)
Toggle(isOn: $viewModel.enableLabFlag) {
Text(VectorL10n.locationSharingLiveLabPromotionActivation)
.font(theme.fonts.body)
.foregroundColor(theme.colors.primaryContent)
}
.padding(.top)
Button {
self.viewModel.send(viewAction: .complete)
} label: {
Text(VectorL10n.ok)
.font(theme.fonts.bodySB)
}
.buttonStyle(PrimaryActionButtonStyle())
.padding(.top)
}
.padding()
}
.frame(maxHeight: .infinity)
.background(theme.colors.background.ignoresSafeArea())
.accentColor(theme.colors.accent)
}
}
// MARK: - Previews
@available(iOS 15.0, *)
struct LiveLocationLabPromotion_Previews: PreviewProvider {
static let stateRenderer = MockLiveLocationLabPromotionScreenState.stateRenderer
static var previews: some View {
stateRenderer.screenGroup()
}
}