mirror of
https://github.com/pointfreeco/swift-composable-architecture.git
synced 2025-12-20 09:11:33 +01:00
* wip * finish * revert back code snippet identation to 5 * Update Sources/ComposableArchitecture/Effect.swift Co-authored-by: Brandon Williams <135203+mbrandonw@users.noreply.github.com> Co-authored-by: Brandon Williams <135203+mbrandonw@users.noreply.github.com>
226 lines
7.0 KiB
Swift
226 lines
7.0 KiB
Swift
import SwiftUI
|
|
|
|
/// A data type that describes the state of an action sheet that can be shown to the user. The
|
|
/// `Action` generic is the type of actions that can be sent from tapping on a button in the sheet.
|
|
///
|
|
/// This type can be used in your application's state in order to control the presentation or
|
|
/// dismissal of action sheets. It is preferable to use this API instead of the default SwiftUI API
|
|
/// for action sheets because SwiftUI uses 2-way bindings in order to control the showing and
|
|
/// dismissal of sheets, and that does not play nicely with the Composable Architecture. The library
|
|
/// requires that all state mutations happen by sending an action so that a reducer can handle that
|
|
/// logic, which greatly simplifies how data flows through your application, and gives you instant
|
|
/// testability on all parts of your application.
|
|
///
|
|
/// To use this API, you model all the action sheet actions in your domain's action enum:
|
|
///
|
|
/// ```swift
|
|
/// enum AppAction: Equatable {
|
|
/// case cancelTapped
|
|
/// case deleteTapped
|
|
/// case favoriteTapped
|
|
/// case infoTapped
|
|
///
|
|
/// // Your other actions
|
|
/// }
|
|
/// ```
|
|
///
|
|
/// And you model the state for showing the action sheet in your domain's state, and it can start
|
|
/// off in a `nil` state:
|
|
///
|
|
/// ```swift
|
|
/// struct AppState: Equatable {
|
|
/// var actionSheet: ActionSheetState<AppAction>?
|
|
///
|
|
/// // Your other state
|
|
/// }
|
|
/// ```
|
|
///
|
|
/// Then, in the reducer you can construct an `ActionSheetState` value to represent the action
|
|
/// sheet you want to show to the user:
|
|
///
|
|
/// ```swift
|
|
/// let appReducer = Reducer<AppState, AppAction, AppEnvironment> { state, action, env in
|
|
/// switch action
|
|
/// case .cancelTapped:
|
|
/// state.actionSheet = nil
|
|
/// return .none
|
|
///
|
|
/// case .deleteTapped:
|
|
/// state.actionSheet = nil
|
|
/// // Do deletion logic...
|
|
///
|
|
/// case .favoriteTapped:
|
|
/// state.actionSheet = nil
|
|
/// // Do favoriting logic
|
|
///
|
|
/// case .infoTapped:
|
|
/// state.actionSheet = .init(
|
|
/// title: "What would you like to do?",
|
|
/// buttons: [
|
|
/// .default(TextState("Favorite"), send: .favoriteTapped),
|
|
/// .destructive(TextState("Delete"), send: .deleteTapped),
|
|
/// .cancel(),
|
|
/// ]
|
|
/// )
|
|
/// return .none
|
|
/// }
|
|
/// }
|
|
/// ```
|
|
///
|
|
/// And then, in your view you can use the `.actionSheet(_:send:dismiss:)` method on `View` in order
|
|
/// to present the action sheet in a way that works best with the Composable Architecture:
|
|
///
|
|
/// ```swift
|
|
/// Button("Info") { viewStore.send(.infoTapped) }
|
|
/// .actionSheet(
|
|
/// self.store.scope(state: \.actionSheet),
|
|
/// dismiss: .cancelTapped
|
|
/// )
|
|
/// ```
|
|
///
|
|
/// This makes your reducer in complete control of when the action sheet is shown or dismissed, and
|
|
/// makes it so that any choice made in the action sheet is automatically fed back into the reducer
|
|
/// so that you can handle its logic.
|
|
///
|
|
/// Even better, you can instantly write tests that your action sheet behavior works as expected:
|
|
///
|
|
/// ```swift
|
|
/// let store = TestStore(
|
|
/// initialState: AppState(),
|
|
/// reducer: appReducer,
|
|
/// environment: .mock
|
|
/// )
|
|
///
|
|
/// store.send(.infoTapped) {
|
|
/// $0.actionSheet = .init(
|
|
/// title: "What would you like to do?",
|
|
/// buttons: [
|
|
/// .default(TextState("Favorite"), send: .favoriteTapped),
|
|
/// .destructive(TextState("Delete"), send: .deleteTapped),
|
|
/// .cancel(),
|
|
/// ]
|
|
/// )
|
|
/// }
|
|
/// store.send(.favoriteTapped) {
|
|
/// $0.actionSheet = nil
|
|
/// // Also verify that favoriting logic executed correctly
|
|
/// }
|
|
/// ```
|
|
///
|
|
@available(iOS 13, *)
|
|
@available(macCatalyst 13, *)
|
|
@available(macOS, unavailable)
|
|
@available(tvOS 13, *)
|
|
@available(watchOS 6, *)
|
|
public struct ActionSheetState<Action> {
|
|
public let id = UUID()
|
|
public var buttons: [Button]
|
|
public var message: TextState?
|
|
public var title: TextState
|
|
|
|
public init(
|
|
title: TextState,
|
|
message: TextState? = nil,
|
|
buttons: [Button]
|
|
) {
|
|
self.buttons = buttons
|
|
self.message = message
|
|
self.title = title
|
|
}
|
|
|
|
public typealias Button = AlertState<Action>.Button
|
|
}
|
|
|
|
@available(iOS 13, *)
|
|
@available(macCatalyst 13, *)
|
|
@available(macOS, unavailable)
|
|
@available(tvOS 13, *)
|
|
@available(watchOS 6, *)
|
|
extension ActionSheetState: CustomDebugOutputConvertible {
|
|
public var debugOutput: String {
|
|
let fields = (
|
|
title: self.title,
|
|
message: self.message,
|
|
buttons: self.buttons
|
|
)
|
|
return "\(Self.self)\(ComposableArchitecture.debugOutput(fields))"
|
|
}
|
|
}
|
|
|
|
@available(iOS 13, *)
|
|
@available(macCatalyst 13, *)
|
|
@available(macOS, unavailable)
|
|
@available(tvOS 13, *)
|
|
@available(watchOS 6, *)
|
|
extension ActionSheetState: Equatable where Action: Equatable {
|
|
public static func == (lhs: Self, rhs: Self) -> Bool {
|
|
lhs.title == rhs.title
|
|
&& lhs.message == rhs.message
|
|
&& lhs.buttons == rhs.buttons
|
|
}
|
|
}
|
|
|
|
@available(iOS 13, *)
|
|
@available(macCatalyst 13, *)
|
|
@available(macOS, unavailable)
|
|
@available(tvOS 13, *)
|
|
@available(watchOS 6, *)
|
|
extension ActionSheetState: Hashable where Action: Hashable {
|
|
public func hash(into hasher: inout Hasher) {
|
|
hasher.combine(self.title)
|
|
hasher.combine(self.message)
|
|
hasher.combine(self.buttons)
|
|
}
|
|
}
|
|
|
|
@available(iOS 13, *)
|
|
@available(macCatalyst 13, *)
|
|
@available(macOS, unavailable)
|
|
@available(tvOS 13, *)
|
|
@available(watchOS 6, *)
|
|
extension ActionSheetState: Identifiable {}
|
|
|
|
extension View {
|
|
/// Displays an action sheet when the store's state becomes non-`nil`, and dismisses it when it
|
|
/// becomes `nil`.
|
|
///
|
|
/// - Parameters:
|
|
/// - store: A store that describes if the action sheet is shown or dismissed.
|
|
/// - dismissal: An action to send when the action sheet is dismissed through non-user actions,
|
|
/// such as when an action sheet is automatically dismissed by the system. Use this action to
|
|
/// `nil` out the associated action sheet state.
|
|
@available(iOS 13, *)
|
|
@available(macCatalyst 13, *)
|
|
@available(macOS, unavailable)
|
|
@available(tvOS 13, *)
|
|
@available(watchOS 6, *)
|
|
public func actionSheet<Action>(
|
|
_ store: Store<ActionSheetState<Action>?, Action>,
|
|
dismiss: Action
|
|
) -> some View {
|
|
|
|
WithViewStore(store, removeDuplicates: { $0?.id == $1?.id }) { viewStore in
|
|
self.actionSheet(item: viewStore.binding(send: dismiss)) { state in
|
|
state.toSwiftUI(send: viewStore.send)
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
@available(iOS 13, *)
|
|
@available(macCatalyst 13, *)
|
|
@available(macOS, unavailable)
|
|
@available(tvOS 13, *)
|
|
@available(watchOS 6, *)
|
|
extension ActionSheetState {
|
|
fileprivate func toSwiftUI(send: @escaping (Action) -> Void) -> SwiftUI.ActionSheet {
|
|
SwiftUI.ActionSheet(
|
|
title: Text(self.title),
|
|
message: self.message.map { Text($0) },
|
|
buttons: self.buttons.map {
|
|
$0.toSwiftUI(send: send)
|
|
}
|
|
)
|
|
}
|
|
}
|