mirror of
https://github.com/pointfreeco/swift-composable-architecture.git
synced 2025-12-14 20:35:56 +01:00
88 lines
2.9 KiB
Swift
88 lines
2.9 KiB
Swift
import SwiftUI
|
|
|
|
extension View {
|
|
/// Displays a legacy alert when the store's state becomes non-`nil`, and dismisses it when it
|
|
/// becomes `nil`.
|
|
///
|
|
/// - Parameters:
|
|
/// - store: A store that is focused on ``PresentationState`` and ``PresentationAction`` for an
|
|
/// alert.
|
|
@available(iOS, introduced: 13, deprecated: 100000, message: "use `View.alert(store:) instead.")
|
|
@available(
|
|
macOS, introduced: 10.15, deprecated: 100000, message: "use `View.alert(store:) instead."
|
|
)
|
|
@available(tvOS, introduced: 13, deprecated: 100000, message: "use `View.alert(store:) instead.")
|
|
@available(
|
|
watchOS, introduced: 6, deprecated: 100000, message: "use `View.alert(store:) instead."
|
|
)
|
|
#if swift(<5.10)
|
|
@MainActor(unsafe)
|
|
#else
|
|
@preconcurrency@MainActor
|
|
#endif
|
|
public func legacyAlert<ButtonAction>(
|
|
store: Store<PresentationState<AlertState<ButtonAction>>, PresentationAction<ButtonAction>>
|
|
) -> some View {
|
|
self.legacyAlert(store: store, state: { $0 }, action: { $0 })
|
|
}
|
|
|
|
/// Displays a legacy alert when the store's state becomes non-`nil`, and dismisses it when it
|
|
/// becomes `nil`.
|
|
///
|
|
/// - Parameters:
|
|
/// - store: A store that is focused on ``PresentationState`` and ``PresentationAction`` for an
|
|
/// alert.
|
|
/// - toDestinationState: A transformation to extract alert state from the presentation state.
|
|
/// - fromDestinationAction: A transformation to embed alert actions into the presentation
|
|
/// action.
|
|
@available(
|
|
iOS,
|
|
introduced: 13,
|
|
deprecated: 100000,
|
|
message: "use `View.alert(store:state:action:) instead."
|
|
)
|
|
@available(
|
|
macOS,
|
|
introduced: 10.15,
|
|
deprecated: 100000,
|
|
message: "use `View.alert(store:state:action:) instead."
|
|
)
|
|
@available(
|
|
tvOS,
|
|
introduced: 13,
|
|
deprecated: 100000,
|
|
message: "use `View.alert(store:state:action:) instead."
|
|
)
|
|
@available(
|
|
watchOS,
|
|
introduced: 6,
|
|
deprecated: 100000,
|
|
message: "use `View.alert(store:state:action:) instead."
|
|
)
|
|
#if swift(<5.10)
|
|
@MainActor(unsafe)
|
|
#else
|
|
@preconcurrency@MainActor
|
|
#endif
|
|
public func legacyAlert<State, Action, ButtonAction>(
|
|
store: Store<PresentationState<State>, PresentationAction<Action>>,
|
|
state toDestinationState: @escaping (_ state: State) -> AlertState<ButtonAction>?,
|
|
action fromDestinationAction: @escaping (_ alertAction: ButtonAction) -> Action
|
|
) -> some View {
|
|
self.presentation(
|
|
store: store, state: toDestinationState, action: fromDestinationAction
|
|
) { `self`, $item, _ in
|
|
let alertState = store.withState { $0.wrappedValue.flatMap(toDestinationState) }
|
|
self.alert(item: $item) { _ in
|
|
Alert(alertState!) { action in
|
|
if let action {
|
|
store.send(.presented(fromDestinationAction(action)))
|
|
} else {
|
|
store.send(.dismiss)
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|