From b16ba0e8333e460a91d849eff024309ee15ce9af Mon Sep 17 00:00:00 2001
From: Dariusz Rybicki <dariusz@elixxir.io>
Date: Wed, 8 Jun 2022 12:59:07 +0200
Subject: [PATCH] Combine errorReducer with sessionReducer

---
 Example/example-app/Sources/AppFeature/App.swift      |  1 +
 .../Sources/SessionFeature/SessionFeature.swift       | 11 +++++++++++
 2 files changed, 12 insertions(+)

diff --git a/Example/example-app/Sources/AppFeature/App.swift b/Example/example-app/Sources/AppFeature/App.swift
index 06477b12..16d9b87a 100644
--- a/Example/example-app/Sources/AppFeature/App.swift
+++ b/Example/example-app/Sources/AppFeature/App.swift
@@ -47,6 +47,7 @@ extension AppEnvironment {
         bgScheduler: bgScheduler,
         mainScheduler: mainScheduler,
         makeId: UUID.init,
+        error: ErrorEnvironment(),
         myIdentity: MyIdentityEnvironment()
       )
     )
diff --git a/Example/example-app/Sources/SessionFeature/SessionFeature.swift b/Example/example-app/Sources/SessionFeature/SessionFeature.swift
index f3ba9326..ae1afd73 100644
--- a/Example/example-app/Sources/SessionFeature/SessionFeature.swift
+++ b/Example/example-app/Sources/SessionFeature/SessionFeature.swift
@@ -47,12 +47,14 @@ public struct SessionEnvironment {
     bgScheduler: AnySchedulerOf<DispatchQueue>,
     mainScheduler: AnySchedulerOf<DispatchQueue>,
     makeId: @escaping () -> UUID,
+    error: ErrorEnvironment,
     myIdentity: MyIdentityEnvironment
   ) {
     self.getClient = getClient
     self.bgScheduler = bgScheduler
     self.mainScheduler = mainScheduler
     self.makeId = makeId
+    self.error = error
     self.myIdentity = myIdentity
   }
 
@@ -60,6 +62,7 @@ public struct SessionEnvironment {
   public var bgScheduler: AnySchedulerOf<DispatchQueue>
   public var mainScheduler: AnySchedulerOf<DispatchQueue>
   public var makeId: () -> UUID
+  public var error: ErrorEnvironment
   public var myIdentity: MyIdentityEnvironment
 }
 
@@ -156,6 +159,13 @@ public let sessionReducer = Reducer<SessionState, SessionAction, SessionEnvironm
     return .none
   }
 }
+.presenting(
+  errorReducer,
+  state: .keyPath(\.error),
+  id: .keyPath(\.?.error),
+  action: /SessionAction.error,
+  environment: \.error
+)
 .presenting(
   myIdentityReducer,
   state: .keyPath(\.myIdentity),
@@ -171,6 +181,7 @@ extension SessionEnvironment {
     bgScheduler: .failing,
     mainScheduler: .failing,
     makeId: { fatalError() },
+    error: .failing,
     myIdentity: .failing
   )
 }
-- 
GitLab