generated from element-hq/.github
-
Notifications
You must be signed in to change notification settings - Fork 106
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fixes #2486 - Add a blocked users section in the app settings
- Loading branch information
1 parent
368b447
commit b3140f3
Showing
22 changed files
with
382 additions
and
11 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
47 changes: 47 additions & 0 deletions
47
ElementX/Sources/Screens/BlockedUsersScreen/BlockedUsersScreenCoordinator.swift
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,47 @@ | ||
// | ||
// 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 Combine | ||
import SwiftUI | ||
|
||
struct BlockedUsersScreenCoordinatorParameters { | ||
let clientProxy: ClientProxyProtocol | ||
let userIndicatorController: UserIndicatorControllerProtocol | ||
} | ||
|
||
enum BlockedUsersScreenCoordinatorAction { } | ||
|
||
final class BlockedUsersScreenCoordinator: CoordinatorProtocol { | ||
private let viewModel: BlockedUsersScreenViewModelProtocol | ||
|
||
private var cancellables = Set<AnyCancellable>() | ||
|
||
private let actionsSubject: PassthroughSubject<BlockedUsersScreenCoordinatorAction, Never> = .init() | ||
var actionsPublisher: AnyPublisher<BlockedUsersScreenCoordinatorAction, Never> { | ||
actionsSubject.eraseToAnyPublisher() | ||
} | ||
|
||
init(parameters: BlockedUsersScreenCoordinatorParameters) { | ||
viewModel = BlockedUsersScreenViewModel(clientProxy: parameters.clientProxy, | ||
userIndicatorController: parameters.userIndicatorController) | ||
} | ||
|
||
func start() { } | ||
|
||
func toPresentable() -> AnyView { | ||
AnyView(BlockedUsersScreen(context: viewModel.context)) | ||
} | ||
} |
39 changes: 39 additions & 0 deletions
39
ElementX/Sources/Screens/BlockedUsersScreen/BlockedUsersScreenModels.swift
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,39 @@ | ||
// | ||
// 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 | ||
|
||
enum BlockedUsersScreenViewModelAction { } | ||
|
||
struct BlockedUsersScreenViewState: BindableState { | ||
var blockedUsers: [String] | ||
var processingUserID: String? | ||
|
||
var bindings = BlockedUsersScreenViewStateBindings() | ||
} | ||
|
||
struct BlockedUsersScreenViewStateBindings { | ||
var alertInfo: AlertInfo<BlockedUsersScreenViewStateAlertType>? | ||
} | ||
|
||
enum BlockedUsersScreenViewAction { | ||
case unblockUser(userID: String) | ||
} | ||
|
||
enum BlockedUsersScreenViewStateAlertType: Hashable { | ||
case unblock | ||
case error | ||
} |
97 changes: 97 additions & 0 deletions
97
ElementX/Sources/Screens/BlockedUsersScreen/BlockedUsersScreenViewModel.swift
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,97 @@ | ||
// | ||
// 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 Combine | ||
import SwiftUI | ||
|
||
typealias BlockedUsersScreenViewModelType = StateStoreViewModel<BlockedUsersScreenViewState, BlockedUsersScreenViewAction> | ||
|
||
class BlockedUsersScreenViewModel: BlockedUsersScreenViewModelType, BlockedUsersScreenViewModelProtocol { | ||
let clientProxy: ClientProxyProtocol | ||
let userIndicatorController: UserIndicatorControllerProtocol | ||
|
||
private let actionsSubject: PassthroughSubject<BlockedUsersScreenViewModelAction, Never> = .init() | ||
var actionsPublisher: AnyPublisher<BlockedUsersScreenViewModelAction, Never> { | ||
actionsSubject.eraseToAnyPublisher() | ||
} | ||
|
||
init(clientProxy: ClientProxyProtocol, | ||
userIndicatorController: UserIndicatorControllerProtocol) { | ||
self.clientProxy = clientProxy | ||
self.userIndicatorController = userIndicatorController | ||
|
||
super.init(initialViewState: BlockedUsersScreenViewState(blockedUsers: clientProxy.ignoredUsersPublisher.value ?? [])) | ||
|
||
showLoadingIndicator() | ||
|
||
clientProxy.ignoredUsersPublisher | ||
.receive(on: DispatchQueue.main) | ||
.sink { [weak self] blockedUsers in | ||
guard let self else { return } | ||
|
||
if let blockedUsers { | ||
hideLoadingIndicator() | ||
state.blockedUsers = blockedUsers | ||
} | ||
} | ||
.store(in: &cancellables) | ||
} | ||
|
||
// MARK: - Public | ||
|
||
override func process(viewAction: BlockedUsersScreenViewAction) { | ||
switch viewAction { | ||
case .unblockUser(let userID): | ||
state.bindings.alertInfo = .init(id: .unblock, | ||
title: L10n.screenBlockedUsersUnblockAlertTitle, | ||
message: L10n.screenBlockedUsersUnblockAlertDescription, | ||
primaryButton: .init(title: L10n.screenBlockedUsersUnblockAlertAction, role: .destructive) { [weak self] in | ||
self?.unblockUser(userID) | ||
}, | ||
secondaryButton: .init(title: L10n.actionCancel, role: .cancel, action: nil)) | ||
} | ||
} | ||
|
||
// MARK: - Private | ||
|
||
private func unblockUser(_ userID: String) { | ||
state.processingUserID = userID | ||
|
||
Task { | ||
if case .failure = await clientProxy.unignoreUser(userID) { | ||
state.bindings.alertInfo = .init(id: .error) | ||
} | ||
|
||
state.processingUserID = nil | ||
} | ||
} | ||
|
||
// MARK: Loading indicator | ||
|
||
private static let loadingIndicatorIdentifier = "BlockedUsersLoading" | ||
|
||
private func showLoadingIndicator() { | ||
userIndicatorController.submitIndicator(UserIndicator(id: Self.loadingIndicatorIdentifier, | ||
type: .modal(progress: .indeterminate, interactiveDismissDisabled: false, allowsInteraction: true), | ||
title: L10n.commonLoading, | ||
persistent: true), | ||
delay: .milliseconds(100)) | ||
} | ||
|
||
private func hideLoadingIndicator() { | ||
userIndicatorController.retractIndicatorWithId(Self.loadingIndicatorIdentifier) | ||
} | ||
} |
23 changes: 23 additions & 0 deletions
23
ElementX/Sources/Screens/BlockedUsersScreen/BlockedUsersScreenViewModelProtocol.swift
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -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 Combine | ||
|
||
@MainActor | ||
protocol BlockedUsersScreenViewModelProtocol { | ||
var actionsPublisher: AnyPublisher<BlockedUsersScreenViewModelAction, Never> { get } | ||
var context: BlockedUsersScreenViewModelType.Context { get } | ||
} |
60 changes: 60 additions & 0 deletions
60
ElementX/Sources/Screens/BlockedUsersScreen/View/BlockedUsersScreen.swift
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,60 @@ | ||
// | ||
// 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 Compound | ||
import SwiftUI | ||
|
||
struct BlockedUsersScreen: View { | ||
@ObservedObject var context: BlockedUsersScreenViewModel.Context | ||
|
||
var body: some View { | ||
Form { | ||
ForEach(context.viewState.blockedUsers, id: \.self) { userID in | ||
ListRow(label: .avatar(title: userID, icon: avatar(for: userID)), | ||
details: .isWaiting(context.viewState.processingUserID == userID), | ||
kind: .button(action: { context.send(viewAction: .unblockUser(userID: userID)) })) | ||
} | ||
} | ||
.compoundList() | ||
.navigationBarTitleDisplayMode(.inline) | ||
.navigationTitle(L10n.commonBlockedUsers) | ||
.alert(item: $context.alertInfo) | ||
} | ||
|
||
// MARK: - Private | ||
|
||
private func avatar(for userID: String) -> some View { | ||
LoadableAvatarImage(url: nil, | ||
name: String(userID.dropFirst()), | ||
contentID: userID, | ||
avatarSize: .user(on: .blockedUsers), | ||
imageProvider: nil) | ||
.accessibilityHidden(true) | ||
} | ||
} | ||
|
||
// MARK: - Previews | ||
|
||
struct BlockedUsersScreen_Previews: PreviewProvider, TestablePreview { | ||
static let viewModel = BlockedUsersScreenViewModel(clientProxy: MockClientProxy(userID: RoomMemberProxyMock.mockMe.userID), | ||
userIndicatorController: UserIndicatorControllerMock()) | ||
|
||
static var previews: some View { | ||
NavigationStack { | ||
BlockedUsersScreen(context: viewModel.context) | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
3 changes: 3 additions & 0 deletions
3
PreviewTests/__Snapshots__/PreviewTests/test_blockedUsersScreen.1.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
4 changes: 2 additions & 2 deletions
4
PreviewTests/__Snapshots__/PreviewTests/test_settingsScreen.1.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Oops, something went wrong.