HierarchyResponder
is a framework designed to use the SwiftUI view hierarchy as a responder chain for event and error handling handling. By using the view hierarchy to report errors and trigger events, views can become more indepentent without sacrificing communication with other views.
To report an error or trigger an event, a view reads a closure from the environment, and calls that closure with the event or error as a parameter.
Views above in the view hierarchy can register different responders that will be executed with the event or error as a parameter.
Expand for a detailed explanation.
A common pattern in SwiftUI is to pass action callbacks as closures that make their way down the view hierarchy as parameters in each view in the hierarchy. This, however, leads to views that receive these closures as parameters but make no use of them, besides passing them down.
In the simplified example below, GridView
receives selectionAction
as a parameter but never calls it. In a real-world application, there could be a lot more intermediate views, all of them carrying multiple parameters they only transport and don't use.
struct ParentView: View {
@State var selection: Item?
let items: [Item] = ...
var body: some View {
GridView(items: items, selectionAction: selectItem)
}
func selectItem(_ item: Item) {
selection = item
}
}
struct GridView: View {
let items: [Item]
let selectionAction: (Item) -> Void // <-
var body: some View {
ForEach(items) { item in
ItemView(item: item, selectionAction: selectionAction)
}
}
}
struct ItemView: View {
let item: Item
let selectionAction: (Item) -> Void
var body: some View {
ItemPreview(_ item: Item)
.onTapGesture {
selectionAction(item)
}
}
}
By using the view hierarchy as a responder chain, the triggering of the event (or error) and the responding to it are isolated to the views that are active participants.
struct ItemSelectionEvent: Event {
let item: Item
}
struct ParentView: View {
@State var selection: Item?
let items: [Item] = ...
var body: some View {
GridView(items: items)
.handleEvent(ItemSelectionEvent.self) {
selection = $0.item
}
}
}
struct GridView: View {
let items: [Item]
var body: some View {
ForEach(items) { item in
ItemView(item: item)
}
}
}
struct ItemView: View {
@Environment(\.triggerEvent) var triggerEvent
let item: Item
var body: some View {
ItemPreview(_ item: Item)
.onTapGesture {
triggerEvent(ItemSelectionEvent(item: item))
}
}
}
For a longer explanation of this functionality, you can read this article.
Event
is requirement-less protocol that identifies a type as an event that can be sent up the SwiftUI view hierarchy.
It can be of any type and contain any kind of additional information. It exists to avoid annotating the types used by methods in this framework as Any
.
Events are triggered using the triggerEvent
object that can be read from the Environment
. Since this object implements callAsFunction
, it can be called like closure.
struct MyEvent: Event {}
struct TriggerView: View {
@Environment(\.triggerEvent) var triggerEvent
var body: some View {
Button("Trigger") {
triggerEvent(MyEvent())
}
}
}
In a similar way to events, errors are triggered using the reportError
closure. Since this object implements callAsFunction
, it can be called like closure.
struct MyError: Error {}
struct TriggerView: View {
@Environment(\.reportError) var reportError
var body: some View {
Button("Trigger") {
reportError(MyError())
}
}
}
Responders are closures that "respond" in different ways to events or errors being triggered or reported by a view down in the view hierarchy.
There's several kinds of responders, and each responder has two versions, one that will respond to any kind of event or error, and one that receives the type of an event or error as the first parameter and will only act on values of that type.
struct ContentView: View {
var body: some View {
TriggerView()
.handleEvent(MyEvent.self) {
// Only events of the type MyEvent will be handled
}
.handleEvent {
// All event types will be handled here
}
}
}
Registering a responder is done using the modifier syntax, and just like with any other modifier in SwiftUI, the order in which they are executed matters.
In simple terms, responders will be called in the order they added to the view, which is inverse to their position in the view hierarchy.
For a better understanding of the view hierarchy you can read this article.
struct ContentView: View {
var body: some View {
TriggerView()
.handleEvent(MyEvent.self) {
// Will be called first
}
.handleEvent {
// Will be called second
}
}
}
When registering a receive responder, the handling closure can determine if the event or error was handled or not.
If the event or error was handled, the closure should return .handled
, otherwise it should return .unhandled
.
Unhandled events will continue to be propagated up the view hierarchy.
struct ContentView: View {
var body: some View {
TriggerView()
.receiveEvent { event in
if canHandle(event) {
// Do something
return .handled
}
return .notHandled
}
}
}
Handle responders will consume the event or error they receive, which will stop it from propagating up the view hierarchy. This is equivalent to using a receiveEvent
closure that always returns .handled
.
Transforming functions can be used to replace the received value with another.
Catching responders allow you to receive an error and convert it into an event that will be propagated instead.
struct UnauthenticatedError: Error {}
struct ShowSignInEvent: Event {}
struct ContentView: View {
var body: some View {
TriggerView()
.catchError(UnauthenticatedError.self) {
ShowSignInEvent()
}
}
}
All event responders, as well as the catchError responders, receive a throwing closure. Any errors thrown inside this closure will be propagated up the view hierarchy as if it had been reported using the reportError
closure.
struct ContentView: View {
var body: some View {
TriggerView()
.handleEvent { event in
guard canHandle(event) else {
throw AnError()
}
// Handle Event
}
}
}
EventButton
is essentially a wrapper for Button
that receives, instead of an action closure, an Event
that is triggered whenever the underlying Button's action would be called.
The onTapGesture(trigger:)
modifier works just like onTapGesture(perform:)
, but instead of executing a closure it triggers an event.
AlertableError
is a protocol that conforms to Error and represents a user-friendly error with a message and an optional title.
By using the .handleAlertErrors()
modifier, errors that conform to the AlertableError
protocol will be handled by displaying an alert with the title and message provided by the error.