From 26e599571fdc3245b37c76e3a35765bb7e253e15 Mon Sep 17 00:00:00 2001 From: Stephen Celis Date: Wed, 17 Apr 2024 12:33:25 -0700 Subject: [PATCH] wip --- 0275-shared-state-pt8/README.md | 5 + .../.github/CODE_OF_CONDUCT.md | 132 + .../.github/ISSUE_TEMPLATE/bug_report.yml | 73 + .../.github/ISSUE_TEMPLATE/config.yml | 15 + .../contents.xcworkspacedata | 7 + .../xcshareddata/IDEWorkspaceChecks.plist | 8 + .../xcschemes/ComposableArchitecture.xcscheme | 92 + ...composable-architecture-benchmark.xcscheme | 104 + .../.github/workflows/ci.yml | 77 + .../.github/workflows/documentation.yml | 74 + .../.github/workflows/format.yml | 29 + .../.github/workflows/release.yml | 83 + .../.github/workflows/scheduled-ci.yml | 15 + .../swift-composable-architecture/.gitignore | 7 + .../swift-composable-architecture/.spi.yml | 12 + .../contents.xcworkspacedata | 31 + .../xcshareddata/IDEWorkspaceChecks.plist | 8 + .../xcshareddata/WorkspaceSettings.xcsettings | 8 + .../xcschemes/ComposableArchitecture.xcscheme | 95 + ...composable-architecture-benchmark.xcscheme | 88 + .../contents.xcworkspacedata | 7 + .../CaseStudies.xcodeproj/project.pbxproj | 1262 ++++++++ .../contents.xcworkspacedata | 7 + .../xcshareddata/IDEWorkspaceChecks.plist | 8 + .../xcschemes/CaseStudies (SwiftUI).xcscheme | 88 + .../xcschemes/CaseStudies (UIKit).xcscheme | 88 + .../xcschemes/tvOSCaseStudies.xcscheme | 88 + .../Examples/CaseStudies/README.md | 3 + .../SwiftUICaseStudies/00-RootView.swift | 197 ++ ...Started-AlertsAndConfirmationDialogs.swift | 129 + .../01-GettingStarted-Animations.swift | 168 ++ .../01-GettingStarted-Bindings-Basics.swift | 126 + .../01-GettingStarted-Bindings-Forms.swift | 112 + ...ttingStarted-Composition-TwoCounters.swift | 68 + .../01-GettingStarted-Counter.swift | 88 + .../01-GettingStarted-FocusState.swift | 81 + .../01-GettingStarted-OptionalState.swift | 96 + .../01-GettingStarted-SharedState.swift | 321 ++ .../02-Effects-Basics.swift | 159 + .../02-Effects-Cancellation.swift | 122 + .../02-Effects-LongLiving.swift | 111 + .../02-Effects-Refreshable.swift | 123 + .../02-Effects-SystemEnvironment.swift | 243 ++ .../02-Effects-Timers.swift | 123 + .../02-Effects-WebSocket.swift | 360 +++ .../03-Navigation-Lists-NavigateAndLoad.swift | 120 + .../03-Navigation-Multiple-Destinations.swift | 84 + .../03-Navigation-NavigateAndLoad.swift | 90 + .../03-Navigation-Sheet-LoadThenPresent.swift | 89 + .../03-Navigation-Sheet-PresentAndLoad.swift | 89 + .../03-NavigationStack.swift | 454 +++ .../04-HigherOrderReducers-Recursion.swift | 122 + .../DownloadClient.swift | 51 + .../DownloadComponent.swift | 179 ++ .../ReusableComponents-Download.swift | 268 ++ ...gherOrderReducers-ReusableFavoriting.swift | 203 ++ .../AppIcon.appiconset/AppIcon-60@2x.png | Bin 0 -> 7569 bytes .../AppIcon.appiconset/AppIcon-76@2x.png | Bin 0 -> 9893 bytes .../AppIcon.appiconset/AppIcon-iPadPro@2x.png | Bin 0 -> 15226 bytes .../AppIcon.appiconset/AppIcon.png | Bin 0 -> 8460 bytes .../AppIcon.appiconset/Contents.json | 103 + .../AppIcon.appiconset/transparent.png | Bin 0 -> 221 bytes .../Assets.xcassets/Contents.json | 6 + .../SwiftUICaseStudies/CaseStudiesApp.swift | 11 + .../SwiftUICaseStudies/FactClient.swift | 32 + .../CaseStudies/SwiftUICaseStudies/Info.plist | 48 + .../Internal/AboutView.swift | 11 + .../Internal/CircularProgressView.swift | 21 + .../Internal/ResignFirstResponder.swift | 21 + .../Internal/TemplateText.swift | 59 + .../Internal/UIViewRepresented.swift | 14 + .../SwiftUICaseStudies/SignUpFlow.swift | 461 +++ ...ed-AlertsAndConfirmationDialogsTests.swift | 64 + .../01-GettingStarted-AnimationsTests.swift | 102 + ...01-GettingStarted-BindingBasicsTests.swift | 30 + .../01-GettingStarted-SharedStateTests.swift | 60 + .../02-Effects-BasicsTests.swift | 72 + .../02-Effects-CancellationTests.swift | 82 + .../02-Effects-LongLivingTests.swift | 32 + .../02-Effects-RefreshableTests.swift | 59 + .../02-Effects-TimersTests.swift | 44 + .../02-Effects-WebSocketTests.swift | 160 + ...4-HigherOrderReducers-RecursionTests.swift | 52 + ...rderReducers-ReusableFavoritingTests.swift | 80 + ...ducers-ReusableOfflineDownloadsTests.swift | 151 + .../SignUpFlowTests.swift | 55 + .../AppIcon.appiconset/AppIcon-60@2x.png | Bin 0 -> 7569 bytes .../AppIcon.appiconset/AppIcon-76@2x.png | Bin 0 -> 9893 bytes .../AppIcon.appiconset/AppIcon-iPadPro@2x.png | Bin 0 -> 15226 bytes .../AppIcon.appiconset/AppIcon.png | Bin 0 -> 8460 bytes .../AppIcon.appiconset/Contents.json | 103 + .../AppIcon.appiconset/transparent.png | Bin 0 -> 221 bytes .../Assets.xcassets/Contents.json | 6 + .../Base.lproj/LaunchScreen.storyboard | 25 + .../CounterViewController.swift | 93 + .../CaseStudies/UIKitCaseStudies/Info.plist | 60 + .../ActivityIndicatorViewController.swift | 21 + .../Internal/IfLetStoreController.swift | 52 + .../UIKitCaseStudies/ListsOfState.swift | 85 + .../UIKitCaseStudies/LoadThenNavigate.swift | 133 + .../UIKitCaseStudies/NavigateAndLoad.swift | 121 + .../Preview Assets.xcassets/Contents.json | 6 + .../UIKitCaseStudies/RootViewController.swift | 88 + .../UIKitCaseStudies/SceneDelegate.swift | 26 + .../UIKitCaseStudiesTests/Info.plist | 22 + .../UIKitCaseStudiesTests.swift | 55 + .../tvOSCaseStudies/AppDelegate.swift | 25 + .../AppIcon.appiconset/AppIcon.png | Bin 0 -> 8152 bytes .../AppIcon.appiconset/Contents.json | 99 + .../Assets.xcassets/Contents.json | 6 + .../CaseStudies/tvOSCaseStudies/Core.swift | 18 + .../tvOSCaseStudies/FocusView.swift | 95 + .../CaseStudies/tvOSCaseStudies/Info.plist | 32 + .../tvOSCaseStudies/RootView.swift | 28 + .../tvOSCaseStudiesTests/FocusTests.swift | 37 + .../Integration.xcodeproj/project.pbxproj | 1041 +++++++ .../contents.xcworkspacedata | 7 + .../xcshareddata/IDEWorkspaceChecks.plist | 8 + .../xcschemes/Integration.xcscheme | 88 + .../AccentColor.colorset/Contents.json | 11 + .../AppIcon.appiconset/Contents.json | 13 + .../Integration/Assets.xcassets/Contents.json | 6 + .../Integration/Integration/Info.plist | 21 + .../Integration/IntegrationApp.swift | 293 ++ .../Legacy/BindingLocalTestCase.swift | 152 + .../Legacy/BindingsAnimationsTestBench.swift | 195 ++ .../Legacy/EscapedWithViewStoreTestCase.swift | 52 + .../Legacy/ForEachBindingTestCase.swift | 73 + .../Legacy/IfLetStoreTestCase.swift | 62 + .../Legacy/LegacyPresentationTestCase.swift | 501 ++++ .../Legacy/NavigationStackTestCase.swift | 203 ++ .../Legacy/PresentationItemTestCase.swift | 144 + .../Legacy/SwitchStoreTestCase.swift | 100 + .../Preview Assets.xcassets/Contents.json | 6 + .../iOS 16+17/NewContainsOldTestCase.swift | 69 + .../iOS 16+17/NewOldSiblingsTestCase.swift | 80 + .../iOS 16+17/NewPresentsOldTestCase.swift | 79 + .../iOS 16+17/OldContainsNewTestCase.swift | 81 + .../iOS 16+17/OldPresentsNewTestCase.swift | 87 + .../Integration/iOS 16/BasicsTestCase.swift | 55 + .../Integration/iOS 16/EnumTestCase.swift | 149 + .../iOS 16/IdentifiedListTestCase.swift | 98 + .../iOS 16/NavigationTestCase.swift | 50 + .../Integration/iOS 16/OptionalTestCase.swift | 82 + .../iOS 16/PresentationTestCase.swift | 174 ++ .../Integration/iOS 16/SiblingTestCase.swift | 83 + .../iOS 17/ObservableBasicsTestCase.swift | 68 + .../iOS 17/ObservableBindingLocalTest.swift | 152 + .../iOS 17/ObservableEnumTestCase.swift | 118 + .../ObservableIdentifiedListTestCase.swift | 81 + .../iOS 17/ObservableNavigationTestCase.swift | 50 + .../iOS 17/ObservableOptionalTestCase.swift | 67 + .../ObservablePresentationTestCase.swift | 148 + .../iOS 17/ObservableSiblingTestCase.swift | 92 + .../IntegrationUITests/EnumTests.swift | 175 ++ .../Internal/BaseIntegrationTests.swift | 146 + .../Internal/TestHelpers.swift | 23 + .../Legacy/BindingLocalTests.swift | 112 + .../Legacy/EscapedWithViewStoreTests.swift | 39 + .../Legacy/ForEachBindingTests.swift | 28 + .../Legacy/IfLetStoreTests.swift | 28 + .../Legacy/LegacyNavigationTests.swift | 93 + .../Legacy/LegacyPresentationTests.swift | 429 +++ .../Legacy/SwitchStoreTests.swift | 32 + .../iOS 16+17/NewContainsOldTests.swift | 92 + .../iOS 16+17/NewOldSiblingsTests.swift | 77 + .../iOS 16+17/NewPresentsOldTests.swift | 401 +++ .../iOS 16+17/OldContainsNewTests.swift | 103 + .../iOS 16+17/OldPresentsNewTests.swift | 163 + .../iOS 16/BasicsTests.swift | 41 + .../IntegrationUITests/iOS 16/EnumTests.swift | 175 ++ .../iOS 16/IdentifiedListTests.swift | 125 + .../iOS 16/NavigationTests.swift | 57 + .../iOS 16/OptionalTests.swift | 75 + .../iOS 16/PresentationTests.swift | 128 + .../iOS 16/SiblingTests.swift | 87 + .../iOS 17/ObservableBasicsTests.swift | 101 + .../iOS 17/ObservableBindingLocalTests.swift | 114 + .../iOS 17/ObservableEnumTests.swift | 78 + .../ObservableIdentifiedListTests.swift | 56 + .../iOS 17/ObservableNavigationTests.swift | 45 + .../iOS 17/ObservableOptionalTests.swift | 55 + .../iOS 17/ObservablePresentationTests.swift | 70 + .../iOS 17/ObservableSiblingTests.swift | 72 + .../Integration/TestCases/TestCase.swift | 12 + .../Examples/Package.swift | 9 + .../Examples/README.md | 26 + .../Examples/Search/README.md | 13 + .../Search/Search.xcodeproj/project.pbxproj | 504 ++++ .../contents.xcworkspacedata | 7 + .../xcshareddata/IDEWorkspaceChecks.plist | 8 + .../xcshareddata/xcschemes/Search.xcscheme | 88 + .../AppIcon.appiconset/AppIcon-60@2x.png | Bin 0 -> 7569 bytes .../AppIcon.appiconset/AppIcon-76@2x.png | Bin 0 -> 9893 bytes .../AppIcon.appiconset/AppIcon-iPadPro@2x.png | Bin 0 -> 15226 bytes .../AppIcon.appiconset/AppIcon.png | Bin 0 -> 8460 bytes .../AppIcon.appiconset/Contents.json | 103 + .../AppIcon.appiconset/transparent.png | Bin 0 -> 221 bytes .../Search/Assets.xcassets/Contents.json | 6 + .../Examples/Search/Search/SearchApp.swift | 16 + .../Examples/Search/Search/SearchView.swift | 212 ++ .../Search/Search/WeatherClient.swift | 165 ++ .../Search/SearchTests/SearchTests.swift | 189 ++ .../Examples/SpeechRecognition/README.md | 5 + .../project.pbxproj | 502 ++++ .../xcschemes/SpeechRecognition.xcscheme | 88 + .../AppIcon.appiconset/AppIcon-60@2x.png | Bin 0 -> 7569 bytes .../AppIcon.appiconset/AppIcon-76@2x.png | Bin 0 -> 9893 bytes .../AppIcon.appiconset/AppIcon-iPadPro@2x.png | Bin 0 -> 15226 bytes .../AppIcon.appiconset/AppIcon.png | Bin 0 -> 8460 bytes .../AppIcon.appiconset/Contents.json | 103 + .../AppIcon.appiconset/transparent.png | Bin 0 -> 221 bytes .../Assets.xcassets/Contents.json | 6 + .../SpeechRecognition/Info.plist | 64 + .../SpeechClient/Client.swift | 75 + .../SpeechRecognition/SpeechClient/Live.swift | 98 + .../SpeechClient/Models.swift | 94 + .../SpeechRecognition/SpeechRecognition.swift | 161 + .../SpeechRecognitionApp.swift | 15 + .../SpeechRecognitionTests.swift | 130 + .../Examples/SyncUps/README.md | 64 + .../SyncUps/SyncUps.xcodeproj/project.pbxproj | 707 +++++ .../xcshareddata/xcschemes/SyncUps.xcscheme | 104 + .../Examples/SyncUps/SyncUps.xctestplan | 36 + .../Examples/SyncUps/SyncUps/App.swift | 29 + .../Examples/SyncUps/SyncUps/AppFeature.swift | 128 + .../AccentColor.colorset/Contents.json | 11 + .../AppIcon.appiconset/Contents.json | 13 + .../SyncUps/Assets.xcassets/Contents.json | 6 + .../Assets.xcassets/Themes/Contents.json | 6 + .../Themes/bubblegum.colorset/Contents.json | 38 + .../Themes/buttercup.colorset/Contents.json | 38 + .../Themes/indigo.colorset/Contents.json | 38 + .../Themes/lavender.colorset/Contents.json | 38 + .../Themes/magenta.colorset/Contents.json | 38 + .../Themes/navy.colorset/Contents.json | 38 + .../Themes/orange.colorset/Contents.json | 38 + .../Themes/oxblood.colorset/Contents.json | 38 + .../Themes/periwinkle.colorset/Contents.json | 38 + .../Themes/poppy.colorset/Contents.json | 38 + .../Themes/purple.colorset/Contents.json | 38 + .../Themes/seafoam.colorset/Contents.json | 38 + .../Themes/sky.colorset/Contents.json | 38 + .../Themes/tan.colorset/Contents.json | 38 + .../Themes/teal.colorset/Contents.json | 38 + .../Themes/yellow.colorset/Contents.json | 38 + .../SyncUps/Dependencies/DataManager.swift | 57 + .../SyncUps/Dependencies/OpenSettings.swift | 19 + .../Dependencies/SpeechRecognizer.swift | 192 ++ .../Examples/SyncUps/SyncUps/Meeting.swift | 27 + .../Examples/SyncUps/SyncUps/Models.swift | 115 + .../SyncUps/SyncUps/RecordMeeting.swift | 389 +++ .../SyncUps/SyncUps/Resources/ding.wav | Bin 0 -> 535904 bytes .../SyncUps/SyncUps/SyncUpDetail.swift | 278 ++ .../Examples/SyncUps/SyncUps/SyncUpForm.swift | 138 + .../SyncUps/SyncUps/SyncUpsList.swift | 232 ++ .../SyncUpsTests/AppFeatureTests.swift | 151 + .../SyncUpsTests/RecordMeetingTests.swift | 346 +++ .../SyncUpsTests/SyncUpDetailTests.swift | 132 + .../SyncUpsTests/SyncUpFormTests.swift | 90 + .../SyncUpsTests/SyncUpsListTests.swift | 113 + .../SyncUpsUITests/SyncUpsUITests.swift | 43 + .../AppIcon.appiconset/AppIcon-60@2x.png | Bin 0 -> 7569 bytes .../AppIcon.appiconset/AppIcon-76@2x.png | Bin 0 -> 9893 bytes .../AppIcon.appiconset/AppIcon-iPadPro@2x.png | Bin 0 -> 15226 bytes .../AppIcon.appiconset/AppIcon.png | Bin 0 -> 8460 bytes .../AppIcon.appiconset/Contents.json | 103 + .../AppIcon.appiconset/transparent.png | Bin 0 -> 221 bytes .../App/Assets.xcassets/Contents.json | 6 + .../Examples/TicTacToe/App/RootView.swift | 61 + .../Examples/TicTacToe/App/TicTacToeApp.swift | 10 + .../Examples/TicTacToe/README.md | 21 + .../TicTacToe.xcodeproj/project.pbxproj | 358 +++ .../contents.xcworkspacedata | 7 + .../xcshareddata/IDEWorkspaceChecks.plist | 8 + .../xcshareddata/xcschemes/TicTacToe.xcscheme | 128 + .../Examples/TicTacToe/tic-tac-toe/.gitignore | 7 + .../TicTacToe/tic-tac-toe/Package.swift | 177 ++ .../tic-tac-toe/Sources/AppCore/AppCore.swift | 39 + .../Sources/AppSwiftUI/AppView.swift | 26 + .../Sources/AppUIKit/AppViewController.swift | 52 + .../AuthenticationClient.swift | 52 + .../LiveAuthenticationClient.swift | 27 + .../Sources/GameCore/GameCore.swift | 122 + .../tic-tac-toe/Sources/GameCore/Three.swift | 46 + .../Sources/GameSwiftUI/GameView.swift | 93 + .../GameUIKit/GameViewController.swift | 154 + .../Sources/LoginCore/LoginCore.swift | 82 + .../Sources/LoginSwiftUI/LoginView.swift | 85 + .../LoginUIKit/LoginViewController.swift | 158 + .../Sources/NewGameCore/NewGameCore.swift | 49 + .../Sources/NewGameSwiftUI/NewGameView.swift | 61 + .../NewGameUIKit/NewGameViewController.swift | 128 + .../Sources/TwoFactorCore/TwoFactorCore.swift | 73 + .../TwoFactorSwiftUI/TwoFactorView.swift | 69 + .../TwoFactorViewController.swift | 92 + .../Tests/AppCoreTests/AppCoreTests.swift | 102 + .../Tests/GameCoreTests/GameCoreTests.swift | 79 + .../Tests/LoginCoreTests/LoginCoreTests.swift | 87 + .../NewGameCoreTests/NewGameCoreTests.swift | 38 + .../TwoFactorCoreTests.swift | 65 + .../Examples/Todos/README.md | 8 + .../Todos/Todos.xcodeproj/project.pbxproj | 504 ++++ .../contents.xcworkspacedata | 7 + .../xcshareddata/IDEWorkspaceChecks.plist | 8 + .../xcshareddata/xcschemes/Todos.xcscheme | 88 + .../AppIcon.appiconset/AppIcon-60@2x.png | Bin 0 -> 7569 bytes .../AppIcon.appiconset/AppIcon-76@2x.png | Bin 0 -> 9893 bytes .../AppIcon.appiconset/AppIcon-iPadPro@2x.png | Bin 0 -> 15226 bytes .../AppIcon.appiconset/AppIcon.png | Bin 0 -> 8460 bytes .../AppIcon.appiconset/Contents.json | 103 + .../AppIcon.appiconset/transparent.png | Bin 0 -> 221 bytes .../Todos/Todos/Assets.xcassets/Contents.json | 6 + .../Examples/Todos/Todos/Todo.swift | 38 + .../Examples/Todos/Todos/Todos.swift | 169 ++ .../Examples/Todos/Todos/TodosApp.swift | 15 + .../Todos/TodosTests/TodosTests.swift | 352 +++ .../Examples/VoiceMemos/README.md | 9 + .../VoiceMemos.xcodeproj/project.pbxproj | 543 ++++ .../contents.xcworkspacedata | 7 + .../xcshareddata/IDEWorkspaceChecks.plist | 8 + .../xcschemes/VoiceMemos.xcscheme | 88 + .../AppIcon.appiconset/AppIcon-60@2x.png | Bin 0 -> 7569 bytes .../AppIcon.appiconset/AppIcon-76@2x.png | Bin 0 -> 9893 bytes .../AppIcon.appiconset/AppIcon-iPadPro@2x.png | Bin 0 -> 15226 bytes .../AppIcon.appiconset/AppIcon.png | Bin 0 -> 8460 bytes .../AppIcon.appiconset/Contents.json | 103 + .../AppIcon.appiconset/transparent.png | Bin 0 -> 221 bytes .../VoiceMemos/Assets.xcassets/Contents.json | 6 + .../AudioPlayerClient/AudioPlayerClient.swift | 25 + .../LiveAudioPlayerClient.swift | 54 + .../AudioRecorderClient.swift | 43 + .../LiveAudioRecorderClient.swift | 103 + .../VoiceMemos/VoiceMemos/Dependencies.swift | 28 + .../VoiceMemos/VoiceMemos/Helpers.swift | 8 + .../Examples/VoiceMemos/VoiceMemos/Info.plist | 62 + .../VoiceMemos/VoiceMemos/RecordingMemo.swift | 122 + .../VoiceMemos/VoiceMemos/VoiceMemo.swift | 145 + .../VoiceMemos/VoiceMemos/VoiceMemos.swift | 229 ++ .../VoiceMemos/VoiceMemos/VoiceMemosApp.swift | 15 + .../VoiceMemosTests/VoiceMemosTests.swift | 446 +++ .../swift-composable-architecture/LICENSE | 21 + .../swift-composable-architecture/Makefile | 84 + .../Package.swift | 73 + .../Package@swift-5.9.swift | 94 + .../swift-composable-architecture/README.md | 716 +++++ .../ComposableArchitecture/CaseReducer.swift | 63 + .../Dependencies/Dismiss.swift | 134 + .../Dependencies/IsPresented.swift | 14 + .../Documentation.docc/Articles/Bindings.md | 304 ++ .../Articles/DependencyManagement.md | 59 + .../Articles/GettingStarted.md | 471 +++ .../Articles/MigrationGuides.md | 21 + .../MigrationGuides/MigratingTo1.4.md | 284 ++ .../MigrationGuides/MigratingTo1.5.md | 249 ++ .../MigrationGuides/MigratingTo1.6.md | 32 + .../MigrationGuides/MigratingTo1.7.md | 901 ++++++ .../MigrationGuides/MigratingTo1.8.md | 197 ++ .../Documentation.docc/Articles/Navigation.md | 38 + .../Articles/ObservationBackport.md | 103 + .../Articles/Performance.md | 413 +++ .../Documentation.docc/Articles/Reducers.md | 480 +++ .../Articles/StackBasedNavigation.md | 622 ++++ .../Articles/SwiftConcurrency.md | 106 + .../Documentation.docc/Articles/Testing.md | 887 ++++++ .../Articles/TreeBasedNavigation.md | 701 +++++ .../Articles/WhatIsNavigation.md | 331 +++ .../ComposableArchitecture.md | 86 + .../Documentation.docc/Extensions/Action.md | 9 + .../Deprecations/ReducerDeprecations.md | 21 + .../Deprecations/ScopeDeprecations.md | 15 + .../Deprecations/StoreDeprecations.md | 14 + .../Deprecations/SwiftUIDeprecations.md | 45 + .../Deprecations/TestStoreDeprecations.md | 33 + .../Documentation.docc/Extensions/Effect.md | 39 + .../Extensions/EffectRun.md | 7 + .../Extensions/EffectSend.md | 7 + .../Extensions/IdentifiedAction.md | 7 + .../Extensions/NavigationLinkState.md | 8 + .../Extensions/ObservableState.md | 17 + .../Documentation.docc/Extensions/Presents.md | 7 + .../Documentation.docc/Extensions/Reduce.md | 16 + .../Documentation.docc/Extensions/Reducer.md | 45 + .../Extensions/ReducerBody.md | 7 + .../Extensions/ReducerBuilder.md | 18 + .../Extensions/ReducerForEach.md | 15 + .../Extensions/ReducerMacro.md | 16 + .../Extensions/ReducerlIfLet.md | 11 + .../Extensions/ReducerlIfLetPresentation.md | 13 + .../Documentation.docc/Extensions/Scope.md | 15 + .../Documentation.docc/Extensions/State.md | 7 + .../Documentation.docc/Extensions/Store.md | 45 + .../Extensions/StoreDynamicMemberLookup.md | 8 + .../Extensions/StoreState.md | 8 + .../Extensions/SwiftUIIntegration.md | 37 + .../Extensions/SwitchStore.md | 7 + .../Extensions/TaskResult.md | 23 + .../Extensions/TestStore.md | 47 + .../Extensions/TestStoreDependencies.md | 8 + .../Extensions/TestStoreExhaustivity.md | 9 + .../Documentation.docc/Extensions/UIKit.md | 24 + .../Extensions/ViewStore.md | 35 + .../Extensions/ViewStoreBinding.md | 9 + .../Extensions/WithViewStore.md | 13 + .../Extensions/WithViewStoreInit.md | 16 + .../Resources/01-02-image-0003.png | Bin 0 -> 78354 bytes .../Resources/01-02-video-0005.mp4 | Bin 0 -> 128572 bytes .../Resources/01-02-video-0006.mp4 | Bin 0 -> 169356 bytes .../Resources/01-03-image-0005.jpg | Bin 0 -> 249920 bytes .../Resources/01-homepage.png | Bin 0 -> 14195 bytes .../Resources/02-01-image-0001.png | Bin 0 -> 85662 bytes .../Resources/02-02-video-0005.mov | Bin 0 -> 232363 bytes .../Resources/02-homepage.png | Bin 0 -> 14055 bytes .../Resources/03-03-video-0006.mp4 | Bin 0 -> 391476 bytes .../Resources/ch02-sub01-sec01-image-0001.png | Bin 0 -> 97847 bytes .../Resources/ch02-sub01-sec01-image-0002.png | Bin 0 -> 85518 bytes .../Resources/ch02-sub01-sec03-image-0000.mov | Bin 0 -> 1173363 bytes .../Resources/ch02-sub02-sec01-0000.mov | Bin 0 -> 678558 bytes .../Resources/ch02-sub04-sec01-image-0000.png | Bin 0 -> 77128 bytes .../Resources/ch02-sub04-sec01-video-0000.mov | Bin 0 -> 747689 bytes .../Resources/ch02-sub04-sec03-video-0000.mp4 | Bin 0 -> 2199589 bytes .../01-01-01-code-0001.swift | 1 + .../01-01-01-code-0002.swift | 6 + .../01-01-01-code-0003.swift | 13 + .../01-01-01-code-0004.swift | 14 + .../01-01-01-code-0005.swift | 25 + .../01-01-01-code-0006.swift | 28 + .../01-01-02-code-0001.swift | 8 + .../01-01-02-code-0002.swift | 7 + .../01-01-02-code-0003.swift | 28 + .../01-01-02-code-0004.swift | 30 + .../01-01-02-code-0005.swift | 7 + .../01-01-02-code-0006.swift | 7 + .../01-01-02-code-0007.swift | 7 + .../01-01-03-code-0001.swift | 10 + .../01-01-03-code-0002.swift | 15 + .../01-01-03-code-0003.swift | 15 + .../01-01-03-code-0004.swift | 16 + .../01-01-YourFirstFeature.tutorial | 250 ++ .../01-02-01-code-0001-previous.swift | 30 + .../01-02-01-code-0001.swift | 37 + .../01-02-01-code-0002.swift | 46 + .../01-02-01-code-0003.swift | 28 + .../01-02-01-code-0004.swift | 38 + .../01-02-01-code-0005.swift | 47 + .../01-02-02-code-0001.swift | 40 + .../01-02-02-code-0002.swift | 42 + .../01-02-02-code-0003.swift | 45 + .../01-02-02-code-0004.swift | 49 + .../01-02-02-code-0005.swift | 49 + .../01-02-03-code-0001.swift | 54 + .../01-02-03-code-0002.swift | 56 + .../01-02-03-code-0003.swift | 59 + .../01-02-03-code-0004.swift | 66 + .../01-02-03-code-0005.swift | 73 + .../01-02-03-code-0006.swift | 73 + .../01-02-AddingSideEffects.tutorial | 237 ++ .../01-03-01-code-0001.swift | 9 + .../01-03-01-code-0002.swift | 11 + .../01-03-01-code-0003.swift | 14 + .../01-03-01-code-0004.swift | 36 + .../01-03-01-code-0005.swift | 18 + .../01-03-02-code-0001-previous.swift | 6 + .../01-03-02-code-0001.swift | 11 + .../01-03-02-code-0002.swift | 15 + .../01-03-02-code-0003.swift | 17 + .../01-03-02-code-0004.swift | 18 + .../01-03-02-code-0005.swift | 21 + .../01-03-02-code-0006.swift | 25 + .../01-03-02-code-0007.swift | 21 + .../01-03-02-code-0008.swift | 74 + .../01-03-02-code-0009.swift | 21 + .../01-03-02-code-0010.swift | 26 + .../01-03-03-code-0001-previous.swift | 6 + .../01-03-03-code-0001.swift | 11 + .../01-03-03-code-0002.swift | 15 + .../01-03-03-code-0003.swift | 17 + .../01-03-03-code-0004.swift | 19 + .../01-03-03-code-0005.swift | 28 + .../01-03-04-code-0001.swift | 1 + .../01-03-04-code-0002.swift | 5 + .../01-03-04-code-0003.swift | 16 + .../01-03-04-code-0004.swift | 23 + .../01-03-04-code-0005.swift | 72 + .../01-03-04-code-0006-previous.swift | 19 + .../01-03-04-code-0006.swift | 29 + .../01-03-04-code-0007.swift | 21 + .../01-03-04-code-0008.swift | 21 + .../01-03-TestingYourFeature.tutorial | 430 +++ .../01-04-01-code-0001.swift | 9 + .../01-04-01-code-0002.swift | 17 + .../01-04-01-code-0003.swift | 21 + .../01-04-02-code-0001.swift | 6 + .../01-04-02-code-0002.swift | 13 + .../01-04-02-code-0003.swift | 19 + .../01-04-02-code-0004.swift | 25 + .../01-04-02-code-0005.swift | 9 + .../01-04-02-code-0006.swift | 11 + .../01-04-02-code-0007.swift | 13 + .../01-04-02-code-0008.swift | 15 + .../01-04-03-code-0001-previous.swift | 21 + .../01-04-03-code-0001.swift | 22 + .../01-04-03-code-0002.swift | 20 + .../01-04-03-code-0003.swift | 20 + .../01-04-03-code-0004.swift | 28 + .../01-04-03-code-0005-previous.swift | 16 + .../01-04-03-code-0005.swift | 15 + .../01-04-ComposingFeatures.tutorial | 242 ++ .../02-01-01-code-0000.swift | 27 + .../02-01-01-code-0001.swift | 25 + .../02-01-01-code-0002.swift | 15 + .../02-01-01-code-0003.swift | 29 + .../02-01-01-code-0004.swift | 5 + .../02-01-01-code-0005.swift | 11 + .../02-01-01-code-0006.swift | 21 + .../02-01-01-code-0007.swift | 16 + .../02-01-02-code-0000.swift | 19 + .../02-01-02-code-0001.swift | 20 + .../02-01-02-code-0002.swift | 21 + .../02-01-02-code-0003.swift | 24 + .../02-01-02-code-0004.swift | 27 + .../02-01-02-code-0005.swift | 29 + .../02-01-02-code-0006.swift | 33 + .../02-01-02-code-0007.swift | 40 + .../02-01-02-code-0008.swift | 23 + .../02-01-02-code-0009.swift | 30 + .../02-01-04-code-0000-previous.swift | 29 + .../02-01-04-code-0000.swift | 34 + .../02-01-04-code-0001.swift | 37 + .../02-01-04-code-0002.swift | 37 + .../02-01-04-code-0003-previous.swift | 40 + .../02-01-04-code-0003.swift | 40 + .../02-01-04-code-0004-previous.swift | 37 + .../02-01-04-code-0004.swift | 38 + .../02-01-04-code-0005.swift | 41 + .../02-01-04-code-0006.swift | 41 + .../02-01-04-code-0007-previous.swift | 38 + .../02-01-04-code-0007.swift | 38 + .../02-01-YourFirstPresentation.tutorial | 324 ++ .../02-02-01-code-0000-previous.swift | 33 + .../02-02-01-code-0000.swift | 37 + .../02-02-01-code-0001.swift | 40 + .../02-02-01-code-0002.swift | 42 + .../02-02-01-code-0003.swift | 49 + .../02-02-01-code-0004.swift | 50 + .../02-02-01-code-0005.swift | 57 + .../02-02-01-code-0006-previous.swift | 30 + .../02-02-01-code-0006.swift | 31 + .../02-02-01-code-0007.swift | 40 + .../02-02-02-code-0000.swift | 5 + .../02-02-02-code-0001.swift | 6 + .../02-02-02-code-0002.swift | 7 + .../02-02-02-code-0003-previous.swift | 57 + .../02-02-02-code-0003.swift | 58 + .../02-02-02-code-0004.swift | 57 + .../02-02-02-code-0005.swift | 57 + .../02-02-02-code-0006.swift | 54 + .../02-02-02-code-0007.swift | 51 + .../02-02-02-code-0008.swift | 54 + .../02-02-02-code-0009.swift | 56 + .../02-02-02-code-0010.swift | 53 + .../02-02-02-code-0011-previous.swift | 40 + .../02-02-02-code-0011.swift | 40 + .../02-02-02-code-0012.swift | 40 + .../02-02-MultipleDestinations.tutorial | 240 ++ .../02-03-01-code-0000.swift | 10 + .../02-03-01-code-0001.swift | 13 + .../02-03-01-code-0002.swift | 16 + .../02-03-01-code-0003.swift | 18 + .../02-03-01-code-0004.swift | 20 + .../02-03-01-code-0005.swift | 21 + .../02-03-01-code-0006-previous.swift | 55 + .../02-03-01-code-0006.swift | 56 + .../02-03-01-code-0007.swift | 56 + .../02-03-01-code-0008-previous.swift | 21 + .../02-03-01-code-0008.swift | 23 + .../02-03-01-code-0009.swift | 23 + .../02-03-01-code-0010.swift | 25 + .../02-03-01-code-0011.swift | 26 + .../02-03-01-code-0012.swift | 27 + .../02-03-01-code-0013.swift | 32 + .../02-03-01-code-0014.swift | 35 + .../02-03-01-code-0015-previous.swift | 40 + .../02-03-01-code-0015.swift | 41 + .../02-03-01-code-0016.swift | 35 + .../02-03-01-code-0017.swift | 38 + .../02-03-02-code-0000.swift | 15 + .../02-03-02-code-0001.swift | 16 + .../02-03-02-code-0002.swift | 18 + .../02-03-02-code-0003.swift | 19 + .../02-03-02-code-0004.swift | 20 + .../02-03-02-code-0005.swift | 21 + .../02-03-02-code-0006.swift | 27 + .../02-03-03-code-0000.swift | 10 + .../02-03-03-code-0001.swift | 13 + .../02-03-03-code-0002.swift | 20 + .../02-03-03-code-0003.swift | 23 + .../02-03-03-code-0004.swift | 25 + .../02-03-03-code-0005.swift | 32 + .../02-03-03-code-0006.swift | 13 + .../02-03-03-code-0007-previous.swift | 56 + .../02-03-03-code-0007.swift | 48 + .../02-03-03-code-0008-previous.swift | 32 + .../02-03-03-code-0008.swift | 24 + .../02-03-03-code-0009.swift | 26 + .../02-03-03-code-0010.swift | 28 + .../02-03-TestingPresentation.tutorial | 341 +++ .../02-04-01-code-0000.swift | 5 + .../02-04-01-code-0001.swift | 9 + .../02-04-01-code-0002.swift | 11 + .../02-04-01-code-0003.swift | 17 + .../02-04-01-code-0004.swift | 6 + .../02-04-01-code-0005.swift | 8 + .../02-04-01-code-0006.swift | 11 + .../02-04-01-code-0007.swift | 25 + .../02-04-02-code-0000-previous.swift | 48 + .../02-04-02-code-0000.swift | 49 + .../02-04-02-code-0001.swift | 53 + .../02-04-02-code-0002.swift | 56 + .../02-04-02-code-0003-previous.swift | 40 + .../02-04-02-code-0003.swift | 40 + .../02-04-02-code-0004.swift | 42 + .../02-04-02-code-0005-previous.swift | 42 + .../02-04-02-code-0005.swift | 45 + .../02-04-03-code-0000-previous.swift | 17 + .../02-04-03-code-0000.swift | 18 + .../02-04-03-code-0001.swift | 27 + .../02-04-03-code-0002.swift | 51 + .../02-04-03-code-0003-previous.swift | 25 + .../02-04-03-code-0003.swift | 29 + .../02-04-03-code-0004-previous.swift | 56 + .../02-04-03-code-0004.swift | 62 + .../02-04-NavigationStacks.tutorial | 227 ++ .../MeetComposableArchitecture.tutorial | 73 + .../ComposableArchitecture/Effect.swift | 384 +++ .../Effects/Animation.swift | 101 + .../Effects/Cancellation.swift | 292 ++ .../Effects/Debounce.swift | 52 + .../Effects/EffectActions.swift | 27 + .../Effects/Publisher.swift | 59 + .../Effects/TaskResult.swift | 334 +++ .../Effects/Throttle.swift | 86 + .../Internal/AreOrderedSetsDuplicates.swift | 14 + .../Internal/Binding+IsPresent.swift | 17 + .../ComposableArchitecture/Internal/Box.swift | 12 + .../Internal/Create.swift | 195 ++ .../Internal/CurrentValueRelay.swift | 55 + .../Internal/Debug.swift | 10 + .../Internal/Deprecations.swift | 8 + .../Internal/EphemeralState.swift | 58 + .../Internal/Exports.swift | 18 + .../Internal/Locking.swift | 19 + .../Internal/Logger.swift | 39 + .../Internal/NavigationID.swift | 132 + .../Internal/OpenExistential.swift | 21 + .../Internal/PresentationID.swift | 37 + .../Internal/ReturningLastNonNilValue.swift | 11 + .../Internal/RuntimeWarnings.swift | 85 + .../Internal/StackIDGenerator.swift | 61 + .../Internal/TypeName.swift | 15 + .../ComposableArchitecture/Macros.swift | 203 ++ .../Observation/Alert+Observation.swift | 75 + .../Observation/Binding+Observation.swift | 229 ++ .../IdentifiedArray+Observation.swift | 110 + .../NavigationStack+Observation.swift | 391 +++ .../Observation/ObservableState.swift | 199 ++ .../ObservationStateRegistrar.swift | 183 ++ .../Observation/Store+Observation.swift | 319 ++ .../Observation/ViewAction.swift | 36 + .../PersistenceKey.swift | 152 + .../ComposableArchitecture/Reducer.swift | 113 + .../Reducer/ReducerBuilder.swift | 152 + .../Reducer/Reducers/BindingReducer.swift | 81 + .../Reducer/Reducers/CombineReducers.swift | 44 + .../Reducer/Reducers/DebugReducer.swift | 112 + .../DependencyKeyWritingReducer.swift | 180 ++ .../Reducer/Reducers/EmptyReducer.swift | 19 + .../Reducer/Reducers/ForEachReducer.swift | 287 ++ .../Reducer/Reducers/IfCaseLetReducer.swift | 235 ++ .../Reducer/Reducers/IfLetReducer.swift | 294 ++ .../Reducer/Reducers/OnChange.swift | 153 + .../Reducer/Reducers/Optional.swift | 13 + .../Reducers/PresentationReducer.swift | 727 +++++ .../Reducer/Reducers/Reduce.swift | 37 + .../Reducer/Reducers/Scope.swift | 368 +++ .../Reducer/Reducers/SignpostReducer.swift | 175 ++ .../Reducer/Reducers/StackReducer.swift | 676 +++++ .../ComposableArchitecture/RootStore.swift | 273 ++ .../ComposableArchitecture/Shared.swift | 114 + .../ComposableArchitecture/Store.swift | 701 +++++ .../SwiftUI/Alert.swift | 91 + .../SwiftUI/Binding.swift | 802 +++++ .../SwiftUI/ConfirmationDialog.swift | 96 + .../SwiftUI/Deprecated/ActionSheet.swift | 88 + .../SwiftUI/Deprecated/LegacyAlert.swift | 77 + .../Deprecated/NavigationLinkStore.swift | 188 ++ .../SwiftUI/ForEachStore.swift | 225 ++ .../SwiftUI/FullScreenCover.swift | 107 + .../SwiftUI/IfLetStore.swift | 276 ++ .../SwiftUI/NavigationDestination.swift | 120 + .../SwiftUI/NavigationStackStore.swift | 148 + .../SwiftUI/Popover.swift | 106 + .../SwiftUI/PresentationModifier.swift | 325 ++ .../SwiftUI/Sheet.swift | 98 + .../SwiftUI/SwitchStore.swift | 249 ++ .../SwiftUI/WithViewStore.swift | 808 +++++ .../ComposableArchitecture/TestStore.swift | 2557 ++++++++++++++++ .../UIKit/AlertStateUIKit.swift | 214 ++ .../UIKit/IfLetUIKit.swift | 73 + .../UIKit/NSObject+Observation.swift | 193 ++ .../ComposableArchitecture/ViewStore.swift | 639 ++++ .../Availability.swift | 107 + .../Extensions.swift | 299 ++ .../ObservableStateMacro.swift | 548 ++++ .../Plugins.swift | 16 + .../PresentsMacro.swift | 228 ++ .../ReducerMacro.swift | 572 ++++ .../ViewActionMacro.swift | 194 ++ .../Common.swift | 54 + .../Dependencies.swift | 45 + .../Effects.swift | 29 + .../Observation.swift | 176 ++ .../StoreScope.swift | 37 + .../StoreSuite.swift | 90 + .../ViewStore.swift | 22 + .../main.swift | 12 + .../MacroBaseTestCase.swift | 24 + .../ObservableStateMacroTests.swift | 554 ++++ .../PresentsMacroTests.swift | 183 ++ .../ReducerMacroTests.swift | 785 +++++ .../ViewActionMacroTests.swift | 470 +++ .../BindableStoreTests.swift | 223 ++ .../BindingLocalTests.swift | 42 + .../CompatibilityTests.swift | 122 + .../ComposableArchitectureTests.swift | 160 + .../DebugTests.swift | 174 ++ .../DependencyKeyWritingReducerTests.swift | 151 + .../EffectCancellationTests.swift | 417 +++ .../EffectDebounceTests.swift | 98 + .../EffectFailureTests.swift | 34 + .../EffectOperationTests.swift | 152 + .../EffectRunTests.swift | 171 ++ .../EffectTests.swift | 238 ++ .../Internal/BaseTCATestCase.swift | 12 + .../Internal/TestHelpers.swift | 10 + .../MacroTests.swift | 82 + .../MemoryManagementTests.swift | 78 + .../ObservableTests.swift | 647 ++++ .../ObserveTests.swift | 40 + .../ReducerBuilderTests.swift | 228 ++ .../ReducerTests.swift | 116 + .../Reducers/BindingReducerTests.swift | 145 + .../Reducers/ForEachReducerTests.swift | 252 ++ .../Reducers/IfCaseLetReducerTests.swift | 220 ++ .../Reducers/IfLetReducerTests.swift | 354 +++ .../Reducers/OnChangeReducerTests.swift | 194 ++ .../Reducers/PresentationReducerTests.swift | 2609 +++++++++++++++++ .../Reducers/StackReducerTests.swift | 1338 +++++++++ .../RuntimeWarningTests.swift | 229 ++ .../ScopeCacheTests.swift | 188 ++ .../ScopeLoggerTests.swift | 82 + .../ScopeTests.swift | 156 + .../StoreFilterTests.swift | 29 + .../StoreLifetimeTests.swift | 189 ++ .../StorePerceptionTests.swift | 86 + .../StoreTests.swift | 997 +++++++ .../TaskCancellationTests.swift | 41 + .../TaskResultTests.swift | 121 + .../TestStoreFailureTests.swift | 277 ++ .../TestStoreNonExhaustiveTests.swift | 996 +++++++ .../TestStoreTests.swift | 589 ++++ .../ThrottleTests.swift | 195 ++ .../ViewStoreTests.swift | 309 ++ README.md | 1 + 774 files changed, 80627 insertions(+) create mode 100644 0275-shared-state-pt8/README.md create mode 100644 0275-shared-state-pt8/swift-composable-architecture/.github/CODE_OF_CONDUCT.md create mode 100644 0275-shared-state-pt8/swift-composable-architecture/.github/ISSUE_TEMPLATE/bug_report.yml create mode 100644 0275-shared-state-pt8/swift-composable-architecture/.github/ISSUE_TEMPLATE/config.yml create mode 100644 0275-shared-state-pt8/swift-composable-architecture/.github/package.xcworkspace/contents.xcworkspacedata create mode 100644 0275-shared-state-pt8/swift-composable-architecture/.github/package.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist create mode 100644 0275-shared-state-pt8/swift-composable-architecture/.github/package.xcworkspace/xcshareddata/xcschemes/ComposableArchitecture.xcscheme create mode 100644 0275-shared-state-pt8/swift-composable-architecture/.github/package.xcworkspace/xcshareddata/xcschemes/swift-composable-architecture-benchmark.xcscheme create mode 100644 0275-shared-state-pt8/swift-composable-architecture/.github/workflows/ci.yml create mode 100644 0275-shared-state-pt8/swift-composable-architecture/.github/workflows/documentation.yml create mode 100644 0275-shared-state-pt8/swift-composable-architecture/.github/workflows/format.yml create mode 100644 0275-shared-state-pt8/swift-composable-architecture/.github/workflows/release.yml create mode 100644 0275-shared-state-pt8/swift-composable-architecture/.github/workflows/scheduled-ci.yml create mode 100644 0275-shared-state-pt8/swift-composable-architecture/.gitignore create mode 100644 0275-shared-state-pt8/swift-composable-architecture/.spi.yml create mode 100644 0275-shared-state-pt8/swift-composable-architecture/ComposableArchitecture.xcworkspace/contents.xcworkspacedata create mode 100644 0275-shared-state-pt8/swift-composable-architecture/ComposableArchitecture.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist create mode 100644 0275-shared-state-pt8/swift-composable-architecture/ComposableArchitecture.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings create mode 100644 0275-shared-state-pt8/swift-composable-architecture/ComposableArchitecture.xcworkspace/xcshareddata/xcschemes/ComposableArchitecture.xcscheme create mode 100644 0275-shared-state-pt8/swift-composable-architecture/ComposableArchitecture.xcworkspace/xcshareddata/xcschemes/swift-composable-architecture-benchmark.xcscheme create mode 100644 0275-shared-state-pt8/swift-composable-architecture/Examples/.swiftpm/xcode/package.xcworkspace/contents.xcworkspacedata create mode 100644 0275-shared-state-pt8/swift-composable-architecture/Examples/CaseStudies/CaseStudies.xcodeproj/project.pbxproj create mode 100644 0275-shared-state-pt8/swift-composable-architecture/Examples/CaseStudies/CaseStudies.xcodeproj/project.xcworkspace/contents.xcworkspacedata create mode 100644 0275-shared-state-pt8/swift-composable-architecture/Examples/CaseStudies/CaseStudies.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist create mode 100644 0275-shared-state-pt8/swift-composable-architecture/Examples/CaseStudies/CaseStudies.xcodeproj/xcshareddata/xcschemes/CaseStudies (SwiftUI).xcscheme create mode 100644 0275-shared-state-pt8/swift-composable-architecture/Examples/CaseStudies/CaseStudies.xcodeproj/xcshareddata/xcschemes/CaseStudies (UIKit).xcscheme create mode 100644 0275-shared-state-pt8/swift-composable-architecture/Examples/CaseStudies/CaseStudies.xcodeproj/xcshareddata/xcschemes/tvOSCaseStudies.xcscheme create mode 100644 0275-shared-state-pt8/swift-composable-architecture/Examples/CaseStudies/README.md create mode 100644 0275-shared-state-pt8/swift-composable-architecture/Examples/CaseStudies/SwiftUICaseStudies/00-RootView.swift create mode 100644 0275-shared-state-pt8/swift-composable-architecture/Examples/CaseStudies/SwiftUICaseStudies/01-GettingStarted-AlertsAndConfirmationDialogs.swift create mode 100644 0275-shared-state-pt8/swift-composable-architecture/Examples/CaseStudies/SwiftUICaseStudies/01-GettingStarted-Animations.swift create mode 100644 0275-shared-state-pt8/swift-composable-architecture/Examples/CaseStudies/SwiftUICaseStudies/01-GettingStarted-Bindings-Basics.swift create mode 100644 0275-shared-state-pt8/swift-composable-architecture/Examples/CaseStudies/SwiftUICaseStudies/01-GettingStarted-Bindings-Forms.swift create mode 100644 0275-shared-state-pt8/swift-composable-architecture/Examples/CaseStudies/SwiftUICaseStudies/01-GettingStarted-Composition-TwoCounters.swift create mode 100644 0275-shared-state-pt8/swift-composable-architecture/Examples/CaseStudies/SwiftUICaseStudies/01-GettingStarted-Counter.swift create mode 100644 0275-shared-state-pt8/swift-composable-architecture/Examples/CaseStudies/SwiftUICaseStudies/01-GettingStarted-FocusState.swift create mode 100644 0275-shared-state-pt8/swift-composable-architecture/Examples/CaseStudies/SwiftUICaseStudies/01-GettingStarted-OptionalState.swift create mode 100644 0275-shared-state-pt8/swift-composable-architecture/Examples/CaseStudies/SwiftUICaseStudies/01-GettingStarted-SharedState.swift create mode 100644 0275-shared-state-pt8/swift-composable-architecture/Examples/CaseStudies/SwiftUICaseStudies/02-Effects-Basics.swift create mode 100644 0275-shared-state-pt8/swift-composable-architecture/Examples/CaseStudies/SwiftUICaseStudies/02-Effects-Cancellation.swift create mode 100644 0275-shared-state-pt8/swift-composable-architecture/Examples/CaseStudies/SwiftUICaseStudies/02-Effects-LongLiving.swift create mode 100644 0275-shared-state-pt8/swift-composable-architecture/Examples/CaseStudies/SwiftUICaseStudies/02-Effects-Refreshable.swift create mode 100644 0275-shared-state-pt8/swift-composable-architecture/Examples/CaseStudies/SwiftUICaseStudies/02-Effects-SystemEnvironment.swift create mode 100644 0275-shared-state-pt8/swift-composable-architecture/Examples/CaseStudies/SwiftUICaseStudies/02-Effects-Timers.swift create mode 100644 0275-shared-state-pt8/swift-composable-architecture/Examples/CaseStudies/SwiftUICaseStudies/02-Effects-WebSocket.swift create mode 100644 0275-shared-state-pt8/swift-composable-architecture/Examples/CaseStudies/SwiftUICaseStudies/03-Navigation-Lists-NavigateAndLoad.swift create mode 100644 0275-shared-state-pt8/swift-composable-architecture/Examples/CaseStudies/SwiftUICaseStudies/03-Navigation-Multiple-Destinations.swift create mode 100644 0275-shared-state-pt8/swift-composable-architecture/Examples/CaseStudies/SwiftUICaseStudies/03-Navigation-NavigateAndLoad.swift create mode 100644 0275-shared-state-pt8/swift-composable-architecture/Examples/CaseStudies/SwiftUICaseStudies/03-Navigation-Sheet-LoadThenPresent.swift create mode 100644 0275-shared-state-pt8/swift-composable-architecture/Examples/CaseStudies/SwiftUICaseStudies/03-Navigation-Sheet-PresentAndLoad.swift create mode 100644 0275-shared-state-pt8/swift-composable-architecture/Examples/CaseStudies/SwiftUICaseStudies/03-NavigationStack.swift create mode 100644 0275-shared-state-pt8/swift-composable-architecture/Examples/CaseStudies/SwiftUICaseStudies/04-HigherOrderReducers-Recursion.swift create mode 100644 0275-shared-state-pt8/swift-composable-architecture/Examples/CaseStudies/SwiftUICaseStudies/04-HigherOrderReducers-ResuableOfflineDownloads/DownloadClient.swift create mode 100644 0275-shared-state-pt8/swift-composable-architecture/Examples/CaseStudies/SwiftUICaseStudies/04-HigherOrderReducers-ResuableOfflineDownloads/DownloadComponent.swift create mode 100644 0275-shared-state-pt8/swift-composable-architecture/Examples/CaseStudies/SwiftUICaseStudies/04-HigherOrderReducers-ResuableOfflineDownloads/ReusableComponents-Download.swift create mode 100644 0275-shared-state-pt8/swift-composable-architecture/Examples/CaseStudies/SwiftUICaseStudies/04-HigherOrderReducers-ReusableFavoriting.swift create mode 100644 0275-shared-state-pt8/swift-composable-architecture/Examples/CaseStudies/SwiftUICaseStudies/Assets.xcassets/AppIcon.appiconset/AppIcon-60@2x.png create mode 100644 0275-shared-state-pt8/swift-composable-architecture/Examples/CaseStudies/SwiftUICaseStudies/Assets.xcassets/AppIcon.appiconset/AppIcon-76@2x.png create mode 100644 0275-shared-state-pt8/swift-composable-architecture/Examples/CaseStudies/SwiftUICaseStudies/Assets.xcassets/AppIcon.appiconset/AppIcon-iPadPro@2x.png create mode 100644 0275-shared-state-pt8/swift-composable-architecture/Examples/CaseStudies/SwiftUICaseStudies/Assets.xcassets/AppIcon.appiconset/AppIcon.png create mode 100644 0275-shared-state-pt8/swift-composable-architecture/Examples/CaseStudies/SwiftUICaseStudies/Assets.xcassets/AppIcon.appiconset/Contents.json create mode 100644 0275-shared-state-pt8/swift-composable-architecture/Examples/CaseStudies/SwiftUICaseStudies/Assets.xcassets/AppIcon.appiconset/transparent.png create mode 100644 0275-shared-state-pt8/swift-composable-architecture/Examples/CaseStudies/SwiftUICaseStudies/Assets.xcassets/Contents.json create mode 100644 0275-shared-state-pt8/swift-composable-architecture/Examples/CaseStudies/SwiftUICaseStudies/CaseStudiesApp.swift create mode 100644 0275-shared-state-pt8/swift-composable-architecture/Examples/CaseStudies/SwiftUICaseStudies/FactClient.swift create mode 100644 0275-shared-state-pt8/swift-composable-architecture/Examples/CaseStudies/SwiftUICaseStudies/Info.plist create mode 100644 0275-shared-state-pt8/swift-composable-architecture/Examples/CaseStudies/SwiftUICaseStudies/Internal/AboutView.swift create mode 100644 0275-shared-state-pt8/swift-composable-architecture/Examples/CaseStudies/SwiftUICaseStudies/Internal/CircularProgressView.swift create mode 100644 0275-shared-state-pt8/swift-composable-architecture/Examples/CaseStudies/SwiftUICaseStudies/Internal/ResignFirstResponder.swift create mode 100644 0275-shared-state-pt8/swift-composable-architecture/Examples/CaseStudies/SwiftUICaseStudies/Internal/TemplateText.swift create mode 100644 0275-shared-state-pt8/swift-composable-architecture/Examples/CaseStudies/SwiftUICaseStudies/Internal/UIViewRepresented.swift create mode 100644 0275-shared-state-pt8/swift-composable-architecture/Examples/CaseStudies/SwiftUICaseStudies/SignUpFlow.swift create mode 100644 0275-shared-state-pt8/swift-composable-architecture/Examples/CaseStudies/SwiftUICaseStudiesTests/01-GettingStarted-AlertsAndConfirmationDialogsTests.swift create mode 100644 0275-shared-state-pt8/swift-composable-architecture/Examples/CaseStudies/SwiftUICaseStudiesTests/01-GettingStarted-AnimationsTests.swift create mode 100644 0275-shared-state-pt8/swift-composable-architecture/Examples/CaseStudies/SwiftUICaseStudiesTests/01-GettingStarted-BindingBasicsTests.swift create mode 100644 0275-shared-state-pt8/swift-composable-architecture/Examples/CaseStudies/SwiftUICaseStudiesTests/01-GettingStarted-SharedStateTests.swift create mode 100644 0275-shared-state-pt8/swift-composable-architecture/Examples/CaseStudies/SwiftUICaseStudiesTests/02-Effects-BasicsTests.swift create mode 100644 0275-shared-state-pt8/swift-composable-architecture/Examples/CaseStudies/SwiftUICaseStudiesTests/02-Effects-CancellationTests.swift create mode 100644 0275-shared-state-pt8/swift-composable-architecture/Examples/CaseStudies/SwiftUICaseStudiesTests/02-Effects-LongLivingTests.swift create mode 100644 0275-shared-state-pt8/swift-composable-architecture/Examples/CaseStudies/SwiftUICaseStudiesTests/02-Effects-RefreshableTests.swift create mode 100644 0275-shared-state-pt8/swift-composable-architecture/Examples/CaseStudies/SwiftUICaseStudiesTests/02-Effects-TimersTests.swift create mode 100644 0275-shared-state-pt8/swift-composable-architecture/Examples/CaseStudies/SwiftUICaseStudiesTests/02-Effects-WebSocketTests.swift create mode 100644 0275-shared-state-pt8/swift-composable-architecture/Examples/CaseStudies/SwiftUICaseStudiesTests/04-HigherOrderReducers-RecursionTests.swift create mode 100644 0275-shared-state-pt8/swift-composable-architecture/Examples/CaseStudies/SwiftUICaseStudiesTests/04-HigherOrderReducers-ReusableFavoritingTests.swift create mode 100644 0275-shared-state-pt8/swift-composable-architecture/Examples/CaseStudies/SwiftUICaseStudiesTests/04-HigherOrderReducers-ReusableOfflineDownloadsTests.swift create mode 100644 0275-shared-state-pt8/swift-composable-architecture/Examples/CaseStudies/SwiftUICaseStudiesTests/SignUpFlowTests.swift create mode 100644 0275-shared-state-pt8/swift-composable-architecture/Examples/CaseStudies/UIKitCaseStudies/Assets.xcassets/AppIcon.appiconset/AppIcon-60@2x.png create mode 100644 0275-shared-state-pt8/swift-composable-architecture/Examples/CaseStudies/UIKitCaseStudies/Assets.xcassets/AppIcon.appiconset/AppIcon-76@2x.png create mode 100644 0275-shared-state-pt8/swift-composable-architecture/Examples/CaseStudies/UIKitCaseStudies/Assets.xcassets/AppIcon.appiconset/AppIcon-iPadPro@2x.png create mode 100644 0275-shared-state-pt8/swift-composable-architecture/Examples/CaseStudies/UIKitCaseStudies/Assets.xcassets/AppIcon.appiconset/AppIcon.png create mode 100644 0275-shared-state-pt8/swift-composable-architecture/Examples/CaseStudies/UIKitCaseStudies/Assets.xcassets/AppIcon.appiconset/Contents.json create mode 100644 0275-shared-state-pt8/swift-composable-architecture/Examples/CaseStudies/UIKitCaseStudies/Assets.xcassets/AppIcon.appiconset/transparent.png create mode 100644 0275-shared-state-pt8/swift-composable-architecture/Examples/CaseStudies/UIKitCaseStudies/Assets.xcassets/Contents.json create mode 100644 0275-shared-state-pt8/swift-composable-architecture/Examples/CaseStudies/UIKitCaseStudies/Base.lproj/LaunchScreen.storyboard create mode 100644 0275-shared-state-pt8/swift-composable-architecture/Examples/CaseStudies/UIKitCaseStudies/CounterViewController.swift create mode 100644 0275-shared-state-pt8/swift-composable-architecture/Examples/CaseStudies/UIKitCaseStudies/Info.plist create mode 100644 0275-shared-state-pt8/swift-composable-architecture/Examples/CaseStudies/UIKitCaseStudies/Internal/ActivityIndicatorViewController.swift create mode 100644 0275-shared-state-pt8/swift-composable-architecture/Examples/CaseStudies/UIKitCaseStudies/Internal/IfLetStoreController.swift create mode 100644 0275-shared-state-pt8/swift-composable-architecture/Examples/CaseStudies/UIKitCaseStudies/ListsOfState.swift create mode 100644 0275-shared-state-pt8/swift-composable-architecture/Examples/CaseStudies/UIKitCaseStudies/LoadThenNavigate.swift create mode 100644 0275-shared-state-pt8/swift-composable-architecture/Examples/CaseStudies/UIKitCaseStudies/NavigateAndLoad.swift create mode 100644 0275-shared-state-pt8/swift-composable-architecture/Examples/CaseStudies/UIKitCaseStudies/Preview Content/Preview Assets.xcassets/Contents.json create mode 100644 0275-shared-state-pt8/swift-composable-architecture/Examples/CaseStudies/UIKitCaseStudies/RootViewController.swift create mode 100644 0275-shared-state-pt8/swift-composable-architecture/Examples/CaseStudies/UIKitCaseStudies/SceneDelegate.swift create mode 100644 0275-shared-state-pt8/swift-composable-architecture/Examples/CaseStudies/UIKitCaseStudiesTests/Info.plist create mode 100644 0275-shared-state-pt8/swift-composable-architecture/Examples/CaseStudies/UIKitCaseStudiesTests/UIKitCaseStudiesTests.swift create mode 100644 0275-shared-state-pt8/swift-composable-architecture/Examples/CaseStudies/tvOSCaseStudies/AppDelegate.swift create mode 100644 0275-shared-state-pt8/swift-composable-architecture/Examples/CaseStudies/tvOSCaseStudies/Assets.xcassets/AppIcon.appiconset/AppIcon.png create mode 100644 0275-shared-state-pt8/swift-composable-architecture/Examples/CaseStudies/tvOSCaseStudies/Assets.xcassets/AppIcon.appiconset/Contents.json create mode 100644 0275-shared-state-pt8/swift-composable-architecture/Examples/CaseStudies/tvOSCaseStudies/Assets.xcassets/Contents.json create mode 100644 0275-shared-state-pt8/swift-composable-architecture/Examples/CaseStudies/tvOSCaseStudies/Core.swift create mode 100644 0275-shared-state-pt8/swift-composable-architecture/Examples/CaseStudies/tvOSCaseStudies/FocusView.swift create mode 100644 0275-shared-state-pt8/swift-composable-architecture/Examples/CaseStudies/tvOSCaseStudies/Info.plist create mode 100644 0275-shared-state-pt8/swift-composable-architecture/Examples/CaseStudies/tvOSCaseStudies/RootView.swift create mode 100644 0275-shared-state-pt8/swift-composable-architecture/Examples/CaseStudies/tvOSCaseStudiesTests/FocusTests.swift create mode 100644 0275-shared-state-pt8/swift-composable-architecture/Examples/Integration/Integration.xcodeproj/project.pbxproj create mode 100644 0275-shared-state-pt8/swift-composable-architecture/Examples/Integration/Integration.xcodeproj/project.xcworkspace/contents.xcworkspacedata create mode 100644 0275-shared-state-pt8/swift-composable-architecture/Examples/Integration/Integration.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist create mode 100644 0275-shared-state-pt8/swift-composable-architecture/Examples/Integration/Integration.xcodeproj/xcshareddata/xcschemes/Integration.xcscheme create mode 100644 0275-shared-state-pt8/swift-composable-architecture/Examples/Integration/Integration/Assets.xcassets/AccentColor.colorset/Contents.json create mode 100644 0275-shared-state-pt8/swift-composable-architecture/Examples/Integration/Integration/Assets.xcassets/AppIcon.appiconset/Contents.json create mode 100644 0275-shared-state-pt8/swift-composable-architecture/Examples/Integration/Integration/Assets.xcassets/Contents.json create mode 100644 0275-shared-state-pt8/swift-composable-architecture/Examples/Integration/Integration/Info.plist create mode 100644 0275-shared-state-pt8/swift-composable-architecture/Examples/Integration/Integration/IntegrationApp.swift create mode 100644 0275-shared-state-pt8/swift-composable-architecture/Examples/Integration/Integration/Legacy/BindingLocalTestCase.swift create mode 100644 0275-shared-state-pt8/swift-composable-architecture/Examples/Integration/Integration/Legacy/BindingsAnimationsTestBench.swift create mode 100644 0275-shared-state-pt8/swift-composable-architecture/Examples/Integration/Integration/Legacy/EscapedWithViewStoreTestCase.swift create mode 100644 0275-shared-state-pt8/swift-composable-architecture/Examples/Integration/Integration/Legacy/ForEachBindingTestCase.swift create mode 100644 0275-shared-state-pt8/swift-composable-architecture/Examples/Integration/Integration/Legacy/IfLetStoreTestCase.swift create mode 100644 0275-shared-state-pt8/swift-composable-architecture/Examples/Integration/Integration/Legacy/LegacyPresentationTestCase.swift create mode 100644 0275-shared-state-pt8/swift-composable-architecture/Examples/Integration/Integration/Legacy/NavigationStackTestCase.swift create mode 100644 0275-shared-state-pt8/swift-composable-architecture/Examples/Integration/Integration/Legacy/PresentationItemTestCase.swift create mode 100644 0275-shared-state-pt8/swift-composable-architecture/Examples/Integration/Integration/Legacy/SwitchStoreTestCase.swift create mode 100644 0275-shared-state-pt8/swift-composable-architecture/Examples/Integration/Integration/Preview Content/Preview Assets.xcassets/Contents.json create mode 100644 0275-shared-state-pt8/swift-composable-architecture/Examples/Integration/Integration/iOS 16+17/NewContainsOldTestCase.swift create mode 100644 0275-shared-state-pt8/swift-composable-architecture/Examples/Integration/Integration/iOS 16+17/NewOldSiblingsTestCase.swift create mode 100644 0275-shared-state-pt8/swift-composable-architecture/Examples/Integration/Integration/iOS 16+17/NewPresentsOldTestCase.swift create mode 100644 0275-shared-state-pt8/swift-composable-architecture/Examples/Integration/Integration/iOS 16+17/OldContainsNewTestCase.swift create mode 100644 0275-shared-state-pt8/swift-composable-architecture/Examples/Integration/Integration/iOS 16+17/OldPresentsNewTestCase.swift create mode 100644 0275-shared-state-pt8/swift-composable-architecture/Examples/Integration/Integration/iOS 16/BasicsTestCase.swift create mode 100644 0275-shared-state-pt8/swift-composable-architecture/Examples/Integration/Integration/iOS 16/EnumTestCase.swift create mode 100644 0275-shared-state-pt8/swift-composable-architecture/Examples/Integration/Integration/iOS 16/IdentifiedListTestCase.swift create mode 100644 0275-shared-state-pt8/swift-composable-architecture/Examples/Integration/Integration/iOS 16/NavigationTestCase.swift create mode 100644 0275-shared-state-pt8/swift-composable-architecture/Examples/Integration/Integration/iOS 16/OptionalTestCase.swift create mode 100644 0275-shared-state-pt8/swift-composable-architecture/Examples/Integration/Integration/iOS 16/PresentationTestCase.swift create mode 100644 0275-shared-state-pt8/swift-composable-architecture/Examples/Integration/Integration/iOS 16/SiblingTestCase.swift create mode 100644 0275-shared-state-pt8/swift-composable-architecture/Examples/Integration/Integration/iOS 17/ObservableBasicsTestCase.swift create mode 100644 0275-shared-state-pt8/swift-composable-architecture/Examples/Integration/Integration/iOS 17/ObservableBindingLocalTest.swift create mode 100644 0275-shared-state-pt8/swift-composable-architecture/Examples/Integration/Integration/iOS 17/ObservableEnumTestCase.swift create mode 100644 0275-shared-state-pt8/swift-composable-architecture/Examples/Integration/Integration/iOS 17/ObservableIdentifiedListTestCase.swift create mode 100644 0275-shared-state-pt8/swift-composable-architecture/Examples/Integration/Integration/iOS 17/ObservableNavigationTestCase.swift create mode 100644 0275-shared-state-pt8/swift-composable-architecture/Examples/Integration/Integration/iOS 17/ObservableOptionalTestCase.swift create mode 100644 0275-shared-state-pt8/swift-composable-architecture/Examples/Integration/Integration/iOS 17/ObservablePresentationTestCase.swift create mode 100644 0275-shared-state-pt8/swift-composable-architecture/Examples/Integration/Integration/iOS 17/ObservableSiblingTestCase.swift create mode 100644 0275-shared-state-pt8/swift-composable-architecture/Examples/Integration/IntegrationUITests/EnumTests.swift create mode 100644 0275-shared-state-pt8/swift-composable-architecture/Examples/Integration/IntegrationUITests/Internal/BaseIntegrationTests.swift create mode 100644 0275-shared-state-pt8/swift-composable-architecture/Examples/Integration/IntegrationUITests/Internal/TestHelpers.swift create mode 100644 0275-shared-state-pt8/swift-composable-architecture/Examples/Integration/IntegrationUITests/Legacy/BindingLocalTests.swift create mode 100644 0275-shared-state-pt8/swift-composable-architecture/Examples/Integration/IntegrationUITests/Legacy/EscapedWithViewStoreTests.swift create mode 100644 0275-shared-state-pt8/swift-composable-architecture/Examples/Integration/IntegrationUITests/Legacy/ForEachBindingTests.swift create mode 100644 0275-shared-state-pt8/swift-composable-architecture/Examples/Integration/IntegrationUITests/Legacy/IfLetStoreTests.swift create mode 100644 0275-shared-state-pt8/swift-composable-architecture/Examples/Integration/IntegrationUITests/Legacy/LegacyNavigationTests.swift create mode 100644 0275-shared-state-pt8/swift-composable-architecture/Examples/Integration/IntegrationUITests/Legacy/LegacyPresentationTests.swift create mode 100644 0275-shared-state-pt8/swift-composable-architecture/Examples/Integration/IntegrationUITests/Legacy/SwitchStoreTests.swift create mode 100644 0275-shared-state-pt8/swift-composable-architecture/Examples/Integration/IntegrationUITests/iOS 16+17/NewContainsOldTests.swift create mode 100644 0275-shared-state-pt8/swift-composable-architecture/Examples/Integration/IntegrationUITests/iOS 16+17/NewOldSiblingsTests.swift create mode 100644 0275-shared-state-pt8/swift-composable-architecture/Examples/Integration/IntegrationUITests/iOS 16+17/NewPresentsOldTests.swift create mode 100644 0275-shared-state-pt8/swift-composable-architecture/Examples/Integration/IntegrationUITests/iOS 16+17/OldContainsNewTests.swift create mode 100644 0275-shared-state-pt8/swift-composable-architecture/Examples/Integration/IntegrationUITests/iOS 16+17/OldPresentsNewTests.swift create mode 100644 0275-shared-state-pt8/swift-composable-architecture/Examples/Integration/IntegrationUITests/iOS 16/BasicsTests.swift create mode 100644 0275-shared-state-pt8/swift-composable-architecture/Examples/Integration/IntegrationUITests/iOS 16/EnumTests.swift create mode 100644 0275-shared-state-pt8/swift-composable-architecture/Examples/Integration/IntegrationUITests/iOS 16/IdentifiedListTests.swift create mode 100644 0275-shared-state-pt8/swift-composable-architecture/Examples/Integration/IntegrationUITests/iOS 16/NavigationTests.swift create mode 100644 0275-shared-state-pt8/swift-composable-architecture/Examples/Integration/IntegrationUITests/iOS 16/OptionalTests.swift create mode 100644 0275-shared-state-pt8/swift-composable-architecture/Examples/Integration/IntegrationUITests/iOS 16/PresentationTests.swift create mode 100644 0275-shared-state-pt8/swift-composable-architecture/Examples/Integration/IntegrationUITests/iOS 16/SiblingTests.swift create mode 100644 0275-shared-state-pt8/swift-composable-architecture/Examples/Integration/IntegrationUITests/iOS 17/ObservableBasicsTests.swift create mode 100644 0275-shared-state-pt8/swift-composable-architecture/Examples/Integration/IntegrationUITests/iOS 17/ObservableBindingLocalTests.swift create mode 100644 0275-shared-state-pt8/swift-composable-architecture/Examples/Integration/IntegrationUITests/iOS 17/ObservableEnumTests.swift create mode 100644 0275-shared-state-pt8/swift-composable-architecture/Examples/Integration/IntegrationUITests/iOS 17/ObservableIdentifiedListTests.swift create mode 100644 0275-shared-state-pt8/swift-composable-architecture/Examples/Integration/IntegrationUITests/iOS 17/ObservableNavigationTests.swift create mode 100644 0275-shared-state-pt8/swift-composable-architecture/Examples/Integration/IntegrationUITests/iOS 17/ObservableOptionalTests.swift create mode 100644 0275-shared-state-pt8/swift-composable-architecture/Examples/Integration/IntegrationUITests/iOS 17/ObservablePresentationTests.swift create mode 100644 0275-shared-state-pt8/swift-composable-architecture/Examples/Integration/IntegrationUITests/iOS 17/ObservableSiblingTests.swift create mode 100644 0275-shared-state-pt8/swift-composable-architecture/Examples/Integration/TestCases/TestCase.swift create mode 100644 0275-shared-state-pt8/swift-composable-architecture/Examples/Package.swift create mode 100644 0275-shared-state-pt8/swift-composable-architecture/Examples/README.md create mode 100644 0275-shared-state-pt8/swift-composable-architecture/Examples/Search/README.md create mode 100644 0275-shared-state-pt8/swift-composable-architecture/Examples/Search/Search.xcodeproj/project.pbxproj create mode 100644 0275-shared-state-pt8/swift-composable-architecture/Examples/Search/Search.xcodeproj/project.xcworkspace/contents.xcworkspacedata create mode 100644 0275-shared-state-pt8/swift-composable-architecture/Examples/Search/Search.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist create mode 100644 0275-shared-state-pt8/swift-composable-architecture/Examples/Search/Search.xcodeproj/xcshareddata/xcschemes/Search.xcscheme create mode 100644 0275-shared-state-pt8/swift-composable-architecture/Examples/Search/Search/Assets.xcassets/AppIcon.appiconset/AppIcon-60@2x.png create mode 100644 0275-shared-state-pt8/swift-composable-architecture/Examples/Search/Search/Assets.xcassets/AppIcon.appiconset/AppIcon-76@2x.png create mode 100644 0275-shared-state-pt8/swift-composable-architecture/Examples/Search/Search/Assets.xcassets/AppIcon.appiconset/AppIcon-iPadPro@2x.png create mode 100644 0275-shared-state-pt8/swift-composable-architecture/Examples/Search/Search/Assets.xcassets/AppIcon.appiconset/AppIcon.png create mode 100644 0275-shared-state-pt8/swift-composable-architecture/Examples/Search/Search/Assets.xcassets/AppIcon.appiconset/Contents.json create mode 100644 0275-shared-state-pt8/swift-composable-architecture/Examples/Search/Search/Assets.xcassets/AppIcon.appiconset/transparent.png create mode 100644 0275-shared-state-pt8/swift-composable-architecture/Examples/Search/Search/Assets.xcassets/Contents.json create mode 100644 0275-shared-state-pt8/swift-composable-architecture/Examples/Search/Search/SearchApp.swift create mode 100644 0275-shared-state-pt8/swift-composable-architecture/Examples/Search/Search/SearchView.swift create mode 100644 0275-shared-state-pt8/swift-composable-architecture/Examples/Search/Search/WeatherClient.swift create mode 100644 0275-shared-state-pt8/swift-composable-architecture/Examples/Search/SearchTests/SearchTests.swift create mode 100644 0275-shared-state-pt8/swift-composable-architecture/Examples/SpeechRecognition/README.md create mode 100644 0275-shared-state-pt8/swift-composable-architecture/Examples/SpeechRecognition/SpeechRecognition.xcodeproj/project.pbxproj create mode 100644 0275-shared-state-pt8/swift-composable-architecture/Examples/SpeechRecognition/SpeechRecognition.xcodeproj/xcshareddata/xcschemes/SpeechRecognition.xcscheme create mode 100644 0275-shared-state-pt8/swift-composable-architecture/Examples/SpeechRecognition/SpeechRecognition/Assets.xcassets/AppIcon.appiconset/AppIcon-60@2x.png create mode 100644 0275-shared-state-pt8/swift-composable-architecture/Examples/SpeechRecognition/SpeechRecognition/Assets.xcassets/AppIcon.appiconset/AppIcon-76@2x.png create mode 100644 0275-shared-state-pt8/swift-composable-architecture/Examples/SpeechRecognition/SpeechRecognition/Assets.xcassets/AppIcon.appiconset/AppIcon-iPadPro@2x.png create mode 100644 0275-shared-state-pt8/swift-composable-architecture/Examples/SpeechRecognition/SpeechRecognition/Assets.xcassets/AppIcon.appiconset/AppIcon.png create mode 100644 0275-shared-state-pt8/swift-composable-architecture/Examples/SpeechRecognition/SpeechRecognition/Assets.xcassets/AppIcon.appiconset/Contents.json create mode 100644 0275-shared-state-pt8/swift-composable-architecture/Examples/SpeechRecognition/SpeechRecognition/Assets.xcassets/AppIcon.appiconset/transparent.png create mode 100644 0275-shared-state-pt8/swift-composable-architecture/Examples/SpeechRecognition/SpeechRecognition/Assets.xcassets/Contents.json create mode 100644 0275-shared-state-pt8/swift-composable-architecture/Examples/SpeechRecognition/SpeechRecognition/Info.plist create mode 100644 0275-shared-state-pt8/swift-composable-architecture/Examples/SpeechRecognition/SpeechRecognition/SpeechClient/Client.swift create mode 100644 0275-shared-state-pt8/swift-composable-architecture/Examples/SpeechRecognition/SpeechRecognition/SpeechClient/Live.swift create mode 100644 0275-shared-state-pt8/swift-composable-architecture/Examples/SpeechRecognition/SpeechRecognition/SpeechClient/Models.swift create mode 100644 0275-shared-state-pt8/swift-composable-architecture/Examples/SpeechRecognition/SpeechRecognition/SpeechRecognition.swift create mode 100644 0275-shared-state-pt8/swift-composable-architecture/Examples/SpeechRecognition/SpeechRecognition/SpeechRecognitionApp.swift create mode 100644 0275-shared-state-pt8/swift-composable-architecture/Examples/SpeechRecognition/SpeechRecognitionTests/SpeechRecognitionTests.swift create mode 100644 0275-shared-state-pt8/swift-composable-architecture/Examples/SyncUps/README.md create mode 100644 0275-shared-state-pt8/swift-composable-architecture/Examples/SyncUps/SyncUps.xcodeproj/project.pbxproj create mode 100644 0275-shared-state-pt8/swift-composable-architecture/Examples/SyncUps/SyncUps.xcodeproj/xcshareddata/xcschemes/SyncUps.xcscheme create mode 100644 0275-shared-state-pt8/swift-composable-architecture/Examples/SyncUps/SyncUps.xctestplan create mode 100644 0275-shared-state-pt8/swift-composable-architecture/Examples/SyncUps/SyncUps/App.swift create mode 100644 0275-shared-state-pt8/swift-composable-architecture/Examples/SyncUps/SyncUps/AppFeature.swift create mode 100644 0275-shared-state-pt8/swift-composable-architecture/Examples/SyncUps/SyncUps/Assets.xcassets/AccentColor.colorset/Contents.json create mode 100644 0275-shared-state-pt8/swift-composable-architecture/Examples/SyncUps/SyncUps/Assets.xcassets/AppIcon.appiconset/Contents.json create mode 100644 0275-shared-state-pt8/swift-composable-architecture/Examples/SyncUps/SyncUps/Assets.xcassets/Contents.json create mode 100644 0275-shared-state-pt8/swift-composable-architecture/Examples/SyncUps/SyncUps/Assets.xcassets/Themes/Contents.json create mode 100644 0275-shared-state-pt8/swift-composable-architecture/Examples/SyncUps/SyncUps/Assets.xcassets/Themes/bubblegum.colorset/Contents.json create mode 100644 0275-shared-state-pt8/swift-composable-architecture/Examples/SyncUps/SyncUps/Assets.xcassets/Themes/buttercup.colorset/Contents.json create mode 100644 0275-shared-state-pt8/swift-composable-architecture/Examples/SyncUps/SyncUps/Assets.xcassets/Themes/indigo.colorset/Contents.json create mode 100644 0275-shared-state-pt8/swift-composable-architecture/Examples/SyncUps/SyncUps/Assets.xcassets/Themes/lavender.colorset/Contents.json create mode 100644 0275-shared-state-pt8/swift-composable-architecture/Examples/SyncUps/SyncUps/Assets.xcassets/Themes/magenta.colorset/Contents.json create mode 100644 0275-shared-state-pt8/swift-composable-architecture/Examples/SyncUps/SyncUps/Assets.xcassets/Themes/navy.colorset/Contents.json create mode 100644 0275-shared-state-pt8/swift-composable-architecture/Examples/SyncUps/SyncUps/Assets.xcassets/Themes/orange.colorset/Contents.json create mode 100644 0275-shared-state-pt8/swift-composable-architecture/Examples/SyncUps/SyncUps/Assets.xcassets/Themes/oxblood.colorset/Contents.json create mode 100644 0275-shared-state-pt8/swift-composable-architecture/Examples/SyncUps/SyncUps/Assets.xcassets/Themes/periwinkle.colorset/Contents.json create mode 100644 0275-shared-state-pt8/swift-composable-architecture/Examples/SyncUps/SyncUps/Assets.xcassets/Themes/poppy.colorset/Contents.json create mode 100644 0275-shared-state-pt8/swift-composable-architecture/Examples/SyncUps/SyncUps/Assets.xcassets/Themes/purple.colorset/Contents.json create mode 100644 0275-shared-state-pt8/swift-composable-architecture/Examples/SyncUps/SyncUps/Assets.xcassets/Themes/seafoam.colorset/Contents.json create mode 100644 0275-shared-state-pt8/swift-composable-architecture/Examples/SyncUps/SyncUps/Assets.xcassets/Themes/sky.colorset/Contents.json create mode 100644 0275-shared-state-pt8/swift-composable-architecture/Examples/SyncUps/SyncUps/Assets.xcassets/Themes/tan.colorset/Contents.json create mode 100644 0275-shared-state-pt8/swift-composable-architecture/Examples/SyncUps/SyncUps/Assets.xcassets/Themes/teal.colorset/Contents.json create mode 100644 0275-shared-state-pt8/swift-composable-architecture/Examples/SyncUps/SyncUps/Assets.xcassets/Themes/yellow.colorset/Contents.json create mode 100644 0275-shared-state-pt8/swift-composable-architecture/Examples/SyncUps/SyncUps/Dependencies/DataManager.swift create mode 100644 0275-shared-state-pt8/swift-composable-architecture/Examples/SyncUps/SyncUps/Dependencies/OpenSettings.swift create mode 100644 0275-shared-state-pt8/swift-composable-architecture/Examples/SyncUps/SyncUps/Dependencies/SpeechRecognizer.swift create mode 100644 0275-shared-state-pt8/swift-composable-architecture/Examples/SyncUps/SyncUps/Meeting.swift create mode 100644 0275-shared-state-pt8/swift-composable-architecture/Examples/SyncUps/SyncUps/Models.swift create mode 100644 0275-shared-state-pt8/swift-composable-architecture/Examples/SyncUps/SyncUps/RecordMeeting.swift create mode 100644 0275-shared-state-pt8/swift-composable-architecture/Examples/SyncUps/SyncUps/Resources/ding.wav create mode 100644 0275-shared-state-pt8/swift-composable-architecture/Examples/SyncUps/SyncUps/SyncUpDetail.swift create mode 100644 0275-shared-state-pt8/swift-composable-architecture/Examples/SyncUps/SyncUps/SyncUpForm.swift create mode 100644 0275-shared-state-pt8/swift-composable-architecture/Examples/SyncUps/SyncUps/SyncUpsList.swift create mode 100644 0275-shared-state-pt8/swift-composable-architecture/Examples/SyncUps/SyncUpsTests/AppFeatureTests.swift create mode 100644 0275-shared-state-pt8/swift-composable-architecture/Examples/SyncUps/SyncUpsTests/RecordMeetingTests.swift create mode 100644 0275-shared-state-pt8/swift-composable-architecture/Examples/SyncUps/SyncUpsTests/SyncUpDetailTests.swift create mode 100644 0275-shared-state-pt8/swift-composable-architecture/Examples/SyncUps/SyncUpsTests/SyncUpFormTests.swift create mode 100644 0275-shared-state-pt8/swift-composable-architecture/Examples/SyncUps/SyncUpsTests/SyncUpsListTests.swift create mode 100644 0275-shared-state-pt8/swift-composable-architecture/Examples/SyncUps/SyncUpsUITests/SyncUpsUITests.swift create mode 100644 0275-shared-state-pt8/swift-composable-architecture/Examples/TicTacToe/App/Assets.xcassets/AppIcon.appiconset/AppIcon-60@2x.png create mode 100644 0275-shared-state-pt8/swift-composable-architecture/Examples/TicTacToe/App/Assets.xcassets/AppIcon.appiconset/AppIcon-76@2x.png create mode 100644 0275-shared-state-pt8/swift-composable-architecture/Examples/TicTacToe/App/Assets.xcassets/AppIcon.appiconset/AppIcon-iPadPro@2x.png create mode 100644 0275-shared-state-pt8/swift-composable-architecture/Examples/TicTacToe/App/Assets.xcassets/AppIcon.appiconset/AppIcon.png create mode 100644 0275-shared-state-pt8/swift-composable-architecture/Examples/TicTacToe/App/Assets.xcassets/AppIcon.appiconset/Contents.json create mode 100644 0275-shared-state-pt8/swift-composable-architecture/Examples/TicTacToe/App/Assets.xcassets/AppIcon.appiconset/transparent.png create mode 100644 0275-shared-state-pt8/swift-composable-architecture/Examples/TicTacToe/App/Assets.xcassets/Contents.json create mode 100644 0275-shared-state-pt8/swift-composable-architecture/Examples/TicTacToe/App/RootView.swift create mode 100644 0275-shared-state-pt8/swift-composable-architecture/Examples/TicTacToe/App/TicTacToeApp.swift create mode 100644 0275-shared-state-pt8/swift-composable-architecture/Examples/TicTacToe/README.md create mode 100644 0275-shared-state-pt8/swift-composable-architecture/Examples/TicTacToe/TicTacToe.xcodeproj/project.pbxproj create mode 100644 0275-shared-state-pt8/swift-composable-architecture/Examples/TicTacToe/TicTacToe.xcodeproj/project.xcworkspace/contents.xcworkspacedata create mode 100644 0275-shared-state-pt8/swift-composable-architecture/Examples/TicTacToe/TicTacToe.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist create mode 100644 0275-shared-state-pt8/swift-composable-architecture/Examples/TicTacToe/TicTacToe.xcodeproj/xcshareddata/xcschemes/TicTacToe.xcscheme create mode 100644 0275-shared-state-pt8/swift-composable-architecture/Examples/TicTacToe/tic-tac-toe/.gitignore create mode 100644 0275-shared-state-pt8/swift-composable-architecture/Examples/TicTacToe/tic-tac-toe/Package.swift create mode 100644 0275-shared-state-pt8/swift-composable-architecture/Examples/TicTacToe/tic-tac-toe/Sources/AppCore/AppCore.swift create mode 100644 0275-shared-state-pt8/swift-composable-architecture/Examples/TicTacToe/tic-tac-toe/Sources/AppSwiftUI/AppView.swift create mode 100644 0275-shared-state-pt8/swift-composable-architecture/Examples/TicTacToe/tic-tac-toe/Sources/AppUIKit/AppViewController.swift create mode 100644 0275-shared-state-pt8/swift-composable-architecture/Examples/TicTacToe/tic-tac-toe/Sources/AuthenticationClient/AuthenticationClient.swift create mode 100644 0275-shared-state-pt8/swift-composable-architecture/Examples/TicTacToe/tic-tac-toe/Sources/AuthenticationClientLive/LiveAuthenticationClient.swift create mode 100644 0275-shared-state-pt8/swift-composable-architecture/Examples/TicTacToe/tic-tac-toe/Sources/GameCore/GameCore.swift create mode 100644 0275-shared-state-pt8/swift-composable-architecture/Examples/TicTacToe/tic-tac-toe/Sources/GameCore/Three.swift create mode 100644 0275-shared-state-pt8/swift-composable-architecture/Examples/TicTacToe/tic-tac-toe/Sources/GameSwiftUI/GameView.swift create mode 100644 0275-shared-state-pt8/swift-composable-architecture/Examples/TicTacToe/tic-tac-toe/Sources/GameUIKit/GameViewController.swift create mode 100644 0275-shared-state-pt8/swift-composable-architecture/Examples/TicTacToe/tic-tac-toe/Sources/LoginCore/LoginCore.swift create mode 100644 0275-shared-state-pt8/swift-composable-architecture/Examples/TicTacToe/tic-tac-toe/Sources/LoginSwiftUI/LoginView.swift create mode 100644 0275-shared-state-pt8/swift-composable-architecture/Examples/TicTacToe/tic-tac-toe/Sources/LoginUIKit/LoginViewController.swift create mode 100644 0275-shared-state-pt8/swift-composable-architecture/Examples/TicTacToe/tic-tac-toe/Sources/NewGameCore/NewGameCore.swift create mode 100644 0275-shared-state-pt8/swift-composable-architecture/Examples/TicTacToe/tic-tac-toe/Sources/NewGameSwiftUI/NewGameView.swift create mode 100644 0275-shared-state-pt8/swift-composable-architecture/Examples/TicTacToe/tic-tac-toe/Sources/NewGameUIKit/NewGameViewController.swift create mode 100644 0275-shared-state-pt8/swift-composable-architecture/Examples/TicTacToe/tic-tac-toe/Sources/TwoFactorCore/TwoFactorCore.swift create mode 100644 0275-shared-state-pt8/swift-composable-architecture/Examples/TicTacToe/tic-tac-toe/Sources/TwoFactorSwiftUI/TwoFactorView.swift create mode 100644 0275-shared-state-pt8/swift-composable-architecture/Examples/TicTacToe/tic-tac-toe/Sources/TwoFactorUIKit/TwoFactorViewController.swift create mode 100644 0275-shared-state-pt8/swift-composable-architecture/Examples/TicTacToe/tic-tac-toe/Tests/AppCoreTests/AppCoreTests.swift create mode 100644 0275-shared-state-pt8/swift-composable-architecture/Examples/TicTacToe/tic-tac-toe/Tests/GameCoreTests/GameCoreTests.swift create mode 100644 0275-shared-state-pt8/swift-composable-architecture/Examples/TicTacToe/tic-tac-toe/Tests/LoginCoreTests/LoginCoreTests.swift create mode 100644 0275-shared-state-pt8/swift-composable-architecture/Examples/TicTacToe/tic-tac-toe/Tests/NewGameCoreTests/NewGameCoreTests.swift create mode 100644 0275-shared-state-pt8/swift-composable-architecture/Examples/TicTacToe/tic-tac-toe/Tests/TwoFactorCoreTests/TwoFactorCoreTests.swift create mode 100644 0275-shared-state-pt8/swift-composable-architecture/Examples/Todos/README.md create mode 100644 0275-shared-state-pt8/swift-composable-architecture/Examples/Todos/Todos.xcodeproj/project.pbxproj create mode 100644 0275-shared-state-pt8/swift-composable-architecture/Examples/Todos/Todos.xcodeproj/project.xcworkspace/contents.xcworkspacedata create mode 100644 0275-shared-state-pt8/swift-composable-architecture/Examples/Todos/Todos.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist create mode 100644 0275-shared-state-pt8/swift-composable-architecture/Examples/Todos/Todos.xcodeproj/xcshareddata/xcschemes/Todos.xcscheme create mode 100644 0275-shared-state-pt8/swift-composable-architecture/Examples/Todos/Todos/Assets.xcassets/AppIcon.appiconset/AppIcon-60@2x.png create mode 100644 0275-shared-state-pt8/swift-composable-architecture/Examples/Todos/Todos/Assets.xcassets/AppIcon.appiconset/AppIcon-76@2x.png create mode 100644 0275-shared-state-pt8/swift-composable-architecture/Examples/Todos/Todos/Assets.xcassets/AppIcon.appiconset/AppIcon-iPadPro@2x.png create mode 100644 0275-shared-state-pt8/swift-composable-architecture/Examples/Todos/Todos/Assets.xcassets/AppIcon.appiconset/AppIcon.png create mode 100644 0275-shared-state-pt8/swift-composable-architecture/Examples/Todos/Todos/Assets.xcassets/AppIcon.appiconset/Contents.json create mode 100644 0275-shared-state-pt8/swift-composable-architecture/Examples/Todos/Todos/Assets.xcassets/AppIcon.appiconset/transparent.png create mode 100644 0275-shared-state-pt8/swift-composable-architecture/Examples/Todos/Todos/Assets.xcassets/Contents.json create mode 100644 0275-shared-state-pt8/swift-composable-architecture/Examples/Todos/Todos/Todo.swift create mode 100644 0275-shared-state-pt8/swift-composable-architecture/Examples/Todos/Todos/Todos.swift create mode 100644 0275-shared-state-pt8/swift-composable-architecture/Examples/Todos/Todos/TodosApp.swift create mode 100644 0275-shared-state-pt8/swift-composable-architecture/Examples/Todos/TodosTests/TodosTests.swift create mode 100644 0275-shared-state-pt8/swift-composable-architecture/Examples/VoiceMemos/README.md create mode 100644 0275-shared-state-pt8/swift-composable-architecture/Examples/VoiceMemos/VoiceMemos.xcodeproj/project.pbxproj create mode 100644 0275-shared-state-pt8/swift-composable-architecture/Examples/VoiceMemos/VoiceMemos.xcodeproj/project.xcworkspace/contents.xcworkspacedata create mode 100644 0275-shared-state-pt8/swift-composable-architecture/Examples/VoiceMemos/VoiceMemos.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist create mode 100644 0275-shared-state-pt8/swift-composable-architecture/Examples/VoiceMemos/VoiceMemos.xcodeproj/xcshareddata/xcschemes/VoiceMemos.xcscheme create mode 100644 0275-shared-state-pt8/swift-composable-architecture/Examples/VoiceMemos/VoiceMemos/Assets.xcassets/AppIcon.appiconset/AppIcon-60@2x.png create mode 100644 0275-shared-state-pt8/swift-composable-architecture/Examples/VoiceMemos/VoiceMemos/Assets.xcassets/AppIcon.appiconset/AppIcon-76@2x.png create mode 100644 0275-shared-state-pt8/swift-composable-architecture/Examples/VoiceMemos/VoiceMemos/Assets.xcassets/AppIcon.appiconset/AppIcon-iPadPro@2x.png create mode 100644 0275-shared-state-pt8/swift-composable-architecture/Examples/VoiceMemos/VoiceMemos/Assets.xcassets/AppIcon.appiconset/AppIcon.png create mode 100644 0275-shared-state-pt8/swift-composable-architecture/Examples/VoiceMemos/VoiceMemos/Assets.xcassets/AppIcon.appiconset/Contents.json create mode 100644 0275-shared-state-pt8/swift-composable-architecture/Examples/VoiceMemos/VoiceMemos/Assets.xcassets/AppIcon.appiconset/transparent.png create mode 100644 0275-shared-state-pt8/swift-composable-architecture/Examples/VoiceMemos/VoiceMemos/Assets.xcassets/Contents.json create mode 100644 0275-shared-state-pt8/swift-composable-architecture/Examples/VoiceMemos/VoiceMemos/AudioPlayerClient/AudioPlayerClient.swift create mode 100644 0275-shared-state-pt8/swift-composable-architecture/Examples/VoiceMemos/VoiceMemos/AudioPlayerClient/LiveAudioPlayerClient.swift create mode 100644 0275-shared-state-pt8/swift-composable-architecture/Examples/VoiceMemos/VoiceMemos/AudioRecorderClient/AudioRecorderClient.swift create mode 100644 0275-shared-state-pt8/swift-composable-architecture/Examples/VoiceMemos/VoiceMemos/AudioRecorderClient/LiveAudioRecorderClient.swift create mode 100644 0275-shared-state-pt8/swift-composable-architecture/Examples/VoiceMemos/VoiceMemos/Dependencies.swift create mode 100644 0275-shared-state-pt8/swift-composable-architecture/Examples/VoiceMemos/VoiceMemos/Helpers.swift create mode 100644 0275-shared-state-pt8/swift-composable-architecture/Examples/VoiceMemos/VoiceMemos/Info.plist create mode 100644 0275-shared-state-pt8/swift-composable-architecture/Examples/VoiceMemos/VoiceMemos/RecordingMemo.swift create mode 100644 0275-shared-state-pt8/swift-composable-architecture/Examples/VoiceMemos/VoiceMemos/VoiceMemo.swift create mode 100644 0275-shared-state-pt8/swift-composable-architecture/Examples/VoiceMemos/VoiceMemos/VoiceMemos.swift create mode 100644 0275-shared-state-pt8/swift-composable-architecture/Examples/VoiceMemos/VoiceMemos/VoiceMemosApp.swift create mode 100644 0275-shared-state-pt8/swift-composable-architecture/Examples/VoiceMemos/VoiceMemosTests/VoiceMemosTests.swift create mode 100644 0275-shared-state-pt8/swift-composable-architecture/LICENSE create mode 100644 0275-shared-state-pt8/swift-composable-architecture/Makefile create mode 100644 0275-shared-state-pt8/swift-composable-architecture/Package.swift create mode 100644 0275-shared-state-pt8/swift-composable-architecture/Package@swift-5.9.swift create mode 100644 0275-shared-state-pt8/swift-composable-architecture/README.md create mode 100644 0275-shared-state-pt8/swift-composable-architecture/Sources/ComposableArchitecture/CaseReducer.swift create mode 100644 0275-shared-state-pt8/swift-composable-architecture/Sources/ComposableArchitecture/Dependencies/Dismiss.swift create mode 100644 0275-shared-state-pt8/swift-composable-architecture/Sources/ComposableArchitecture/Dependencies/IsPresented.swift create mode 100644 0275-shared-state-pt8/swift-composable-architecture/Sources/ComposableArchitecture/Documentation.docc/Articles/Bindings.md create mode 100644 0275-shared-state-pt8/swift-composable-architecture/Sources/ComposableArchitecture/Documentation.docc/Articles/DependencyManagement.md create mode 100644 0275-shared-state-pt8/swift-composable-architecture/Sources/ComposableArchitecture/Documentation.docc/Articles/GettingStarted.md create mode 100644 0275-shared-state-pt8/swift-composable-architecture/Sources/ComposableArchitecture/Documentation.docc/Articles/MigrationGuides.md create mode 100644 0275-shared-state-pt8/swift-composable-architecture/Sources/ComposableArchitecture/Documentation.docc/Articles/MigrationGuides/MigratingTo1.4.md create mode 100644 0275-shared-state-pt8/swift-composable-architecture/Sources/ComposableArchitecture/Documentation.docc/Articles/MigrationGuides/MigratingTo1.5.md create mode 100644 0275-shared-state-pt8/swift-composable-architecture/Sources/ComposableArchitecture/Documentation.docc/Articles/MigrationGuides/MigratingTo1.6.md create mode 100644 0275-shared-state-pt8/swift-composable-architecture/Sources/ComposableArchitecture/Documentation.docc/Articles/MigrationGuides/MigratingTo1.7.md create mode 100644 0275-shared-state-pt8/swift-composable-architecture/Sources/ComposableArchitecture/Documentation.docc/Articles/MigrationGuides/MigratingTo1.8.md create mode 100644 0275-shared-state-pt8/swift-composable-architecture/Sources/ComposableArchitecture/Documentation.docc/Articles/Navigation.md create mode 100644 0275-shared-state-pt8/swift-composable-architecture/Sources/ComposableArchitecture/Documentation.docc/Articles/ObservationBackport.md create mode 100644 0275-shared-state-pt8/swift-composable-architecture/Sources/ComposableArchitecture/Documentation.docc/Articles/Performance.md create mode 100644 0275-shared-state-pt8/swift-composable-architecture/Sources/ComposableArchitecture/Documentation.docc/Articles/Reducers.md create mode 100644 0275-shared-state-pt8/swift-composable-architecture/Sources/ComposableArchitecture/Documentation.docc/Articles/StackBasedNavigation.md create mode 100644 0275-shared-state-pt8/swift-composable-architecture/Sources/ComposableArchitecture/Documentation.docc/Articles/SwiftConcurrency.md create mode 100644 0275-shared-state-pt8/swift-composable-architecture/Sources/ComposableArchitecture/Documentation.docc/Articles/Testing.md create mode 100644 0275-shared-state-pt8/swift-composable-architecture/Sources/ComposableArchitecture/Documentation.docc/Articles/TreeBasedNavigation.md create mode 100644 0275-shared-state-pt8/swift-composable-architecture/Sources/ComposableArchitecture/Documentation.docc/Articles/WhatIsNavigation.md create mode 100644 0275-shared-state-pt8/swift-composable-architecture/Sources/ComposableArchitecture/Documentation.docc/ComposableArchitecture.md create mode 100644 0275-shared-state-pt8/swift-composable-architecture/Sources/ComposableArchitecture/Documentation.docc/Extensions/Action.md create mode 100644 0275-shared-state-pt8/swift-composable-architecture/Sources/ComposableArchitecture/Documentation.docc/Extensions/Deprecations/ReducerDeprecations.md create mode 100644 0275-shared-state-pt8/swift-composable-architecture/Sources/ComposableArchitecture/Documentation.docc/Extensions/Deprecations/ScopeDeprecations.md create mode 100644 0275-shared-state-pt8/swift-composable-architecture/Sources/ComposableArchitecture/Documentation.docc/Extensions/Deprecations/StoreDeprecations.md create mode 100644 0275-shared-state-pt8/swift-composable-architecture/Sources/ComposableArchitecture/Documentation.docc/Extensions/Deprecations/SwiftUIDeprecations.md create mode 100644 0275-shared-state-pt8/swift-composable-architecture/Sources/ComposableArchitecture/Documentation.docc/Extensions/Deprecations/TestStoreDeprecations.md create mode 100644 0275-shared-state-pt8/swift-composable-architecture/Sources/ComposableArchitecture/Documentation.docc/Extensions/Effect.md create mode 100644 0275-shared-state-pt8/swift-composable-architecture/Sources/ComposableArchitecture/Documentation.docc/Extensions/EffectRun.md create mode 100644 0275-shared-state-pt8/swift-composable-architecture/Sources/ComposableArchitecture/Documentation.docc/Extensions/EffectSend.md create mode 100644 0275-shared-state-pt8/swift-composable-architecture/Sources/ComposableArchitecture/Documentation.docc/Extensions/IdentifiedAction.md create mode 100644 0275-shared-state-pt8/swift-composable-architecture/Sources/ComposableArchitecture/Documentation.docc/Extensions/NavigationLinkState.md create mode 100644 0275-shared-state-pt8/swift-composable-architecture/Sources/ComposableArchitecture/Documentation.docc/Extensions/ObservableState.md create mode 100644 0275-shared-state-pt8/swift-composable-architecture/Sources/ComposableArchitecture/Documentation.docc/Extensions/Presents.md create mode 100644 0275-shared-state-pt8/swift-composable-architecture/Sources/ComposableArchitecture/Documentation.docc/Extensions/Reduce.md create mode 100644 0275-shared-state-pt8/swift-composable-architecture/Sources/ComposableArchitecture/Documentation.docc/Extensions/Reducer.md create mode 100644 0275-shared-state-pt8/swift-composable-architecture/Sources/ComposableArchitecture/Documentation.docc/Extensions/ReducerBody.md create mode 100644 0275-shared-state-pt8/swift-composable-architecture/Sources/ComposableArchitecture/Documentation.docc/Extensions/ReducerBuilder.md create mode 100644 0275-shared-state-pt8/swift-composable-architecture/Sources/ComposableArchitecture/Documentation.docc/Extensions/ReducerForEach.md create mode 100644 0275-shared-state-pt8/swift-composable-architecture/Sources/ComposableArchitecture/Documentation.docc/Extensions/ReducerMacro.md create mode 100644 0275-shared-state-pt8/swift-composable-architecture/Sources/ComposableArchitecture/Documentation.docc/Extensions/ReducerlIfLet.md create mode 100644 0275-shared-state-pt8/swift-composable-architecture/Sources/ComposableArchitecture/Documentation.docc/Extensions/ReducerlIfLetPresentation.md create mode 100644 0275-shared-state-pt8/swift-composable-architecture/Sources/ComposableArchitecture/Documentation.docc/Extensions/Scope.md create mode 100644 0275-shared-state-pt8/swift-composable-architecture/Sources/ComposableArchitecture/Documentation.docc/Extensions/State.md create mode 100644 0275-shared-state-pt8/swift-composable-architecture/Sources/ComposableArchitecture/Documentation.docc/Extensions/Store.md create mode 100644 0275-shared-state-pt8/swift-composable-architecture/Sources/ComposableArchitecture/Documentation.docc/Extensions/StoreDynamicMemberLookup.md create mode 100644 0275-shared-state-pt8/swift-composable-architecture/Sources/ComposableArchitecture/Documentation.docc/Extensions/StoreState.md create mode 100644 0275-shared-state-pt8/swift-composable-architecture/Sources/ComposableArchitecture/Documentation.docc/Extensions/SwiftUIIntegration.md create mode 100644 0275-shared-state-pt8/swift-composable-architecture/Sources/ComposableArchitecture/Documentation.docc/Extensions/SwitchStore.md create mode 100644 0275-shared-state-pt8/swift-composable-architecture/Sources/ComposableArchitecture/Documentation.docc/Extensions/TaskResult.md create mode 100644 0275-shared-state-pt8/swift-composable-architecture/Sources/ComposableArchitecture/Documentation.docc/Extensions/TestStore.md create mode 100644 0275-shared-state-pt8/swift-composable-architecture/Sources/ComposableArchitecture/Documentation.docc/Extensions/TestStoreDependencies.md create mode 100644 0275-shared-state-pt8/swift-composable-architecture/Sources/ComposableArchitecture/Documentation.docc/Extensions/TestStoreExhaustivity.md create mode 100644 0275-shared-state-pt8/swift-composable-architecture/Sources/ComposableArchitecture/Documentation.docc/Extensions/UIKit.md create mode 100644 0275-shared-state-pt8/swift-composable-architecture/Sources/ComposableArchitecture/Documentation.docc/Extensions/ViewStore.md create mode 100644 0275-shared-state-pt8/swift-composable-architecture/Sources/ComposableArchitecture/Documentation.docc/Extensions/ViewStoreBinding.md create mode 100644 0275-shared-state-pt8/swift-composable-architecture/Sources/ComposableArchitecture/Documentation.docc/Extensions/WithViewStore.md create mode 100644 0275-shared-state-pt8/swift-composable-architecture/Sources/ComposableArchitecture/Documentation.docc/Extensions/WithViewStoreInit.md create mode 100644 0275-shared-state-pt8/swift-composable-architecture/Sources/ComposableArchitecture/Documentation.docc/Resources/01-02-image-0003.png create mode 100644 0275-shared-state-pt8/swift-composable-architecture/Sources/ComposableArchitecture/Documentation.docc/Resources/01-02-video-0005.mp4 create mode 100644 0275-shared-state-pt8/swift-composable-architecture/Sources/ComposableArchitecture/Documentation.docc/Resources/01-02-video-0006.mp4 create mode 100644 0275-shared-state-pt8/swift-composable-architecture/Sources/ComposableArchitecture/Documentation.docc/Resources/01-03-image-0005.jpg create mode 100644 0275-shared-state-pt8/swift-composable-architecture/Sources/ComposableArchitecture/Documentation.docc/Resources/01-homepage.png create mode 100644 0275-shared-state-pt8/swift-composable-architecture/Sources/ComposableArchitecture/Documentation.docc/Resources/02-01-image-0001.png create mode 100644 0275-shared-state-pt8/swift-composable-architecture/Sources/ComposableArchitecture/Documentation.docc/Resources/02-02-video-0005.mov create mode 100644 0275-shared-state-pt8/swift-composable-architecture/Sources/ComposableArchitecture/Documentation.docc/Resources/02-homepage.png create mode 100644 0275-shared-state-pt8/swift-composable-architecture/Sources/ComposableArchitecture/Documentation.docc/Resources/03-03-video-0006.mp4 create mode 100644 0275-shared-state-pt8/swift-composable-architecture/Sources/ComposableArchitecture/Documentation.docc/Resources/ch02-sub01-sec01-image-0001.png create mode 100644 0275-shared-state-pt8/swift-composable-architecture/Sources/ComposableArchitecture/Documentation.docc/Resources/ch02-sub01-sec01-image-0002.png create mode 100644 0275-shared-state-pt8/swift-composable-architecture/Sources/ComposableArchitecture/Documentation.docc/Resources/ch02-sub01-sec03-image-0000.mov create mode 100644 0275-shared-state-pt8/swift-composable-architecture/Sources/ComposableArchitecture/Documentation.docc/Resources/ch02-sub02-sec01-0000.mov create mode 100644 0275-shared-state-pt8/swift-composable-architecture/Sources/ComposableArchitecture/Documentation.docc/Resources/ch02-sub04-sec01-image-0000.png create mode 100644 0275-shared-state-pt8/swift-composable-architecture/Sources/ComposableArchitecture/Documentation.docc/Resources/ch02-sub04-sec01-video-0000.mov create mode 100644 0275-shared-state-pt8/swift-composable-architecture/Sources/ComposableArchitecture/Documentation.docc/Resources/ch02-sub04-sec03-video-0000.mp4 create mode 100644 0275-shared-state-pt8/swift-composable-architecture/Sources/ComposableArchitecture/Documentation.docc/Tutorials/MeetTheComposableArchitecture/01-Essentials/01-YourFirstFeature/01-01-01-code-0001.swift create mode 100644 0275-shared-state-pt8/swift-composable-architecture/Sources/ComposableArchitecture/Documentation.docc/Tutorials/MeetTheComposableArchitecture/01-Essentials/01-YourFirstFeature/01-01-01-code-0002.swift create mode 100644 0275-shared-state-pt8/swift-composable-architecture/Sources/ComposableArchitecture/Documentation.docc/Tutorials/MeetTheComposableArchitecture/01-Essentials/01-YourFirstFeature/01-01-01-code-0003.swift create mode 100644 0275-shared-state-pt8/swift-composable-architecture/Sources/ComposableArchitecture/Documentation.docc/Tutorials/MeetTheComposableArchitecture/01-Essentials/01-YourFirstFeature/01-01-01-code-0004.swift create mode 100644 0275-shared-state-pt8/swift-composable-architecture/Sources/ComposableArchitecture/Documentation.docc/Tutorials/MeetTheComposableArchitecture/01-Essentials/01-YourFirstFeature/01-01-01-code-0005.swift create mode 100644 0275-shared-state-pt8/swift-composable-architecture/Sources/ComposableArchitecture/Documentation.docc/Tutorials/MeetTheComposableArchitecture/01-Essentials/01-YourFirstFeature/01-01-01-code-0006.swift create mode 100644 0275-shared-state-pt8/swift-composable-architecture/Sources/ComposableArchitecture/Documentation.docc/Tutorials/MeetTheComposableArchitecture/01-Essentials/01-YourFirstFeature/01-01-02-code-0001.swift create mode 100644 0275-shared-state-pt8/swift-composable-architecture/Sources/ComposableArchitecture/Documentation.docc/Tutorials/MeetTheComposableArchitecture/01-Essentials/01-YourFirstFeature/01-01-02-code-0002.swift create mode 100644 0275-shared-state-pt8/swift-composable-architecture/Sources/ComposableArchitecture/Documentation.docc/Tutorials/MeetTheComposableArchitecture/01-Essentials/01-YourFirstFeature/01-01-02-code-0003.swift create mode 100644 0275-shared-state-pt8/swift-composable-architecture/Sources/ComposableArchitecture/Documentation.docc/Tutorials/MeetTheComposableArchitecture/01-Essentials/01-YourFirstFeature/01-01-02-code-0004.swift create mode 100644 0275-shared-state-pt8/swift-composable-architecture/Sources/ComposableArchitecture/Documentation.docc/Tutorials/MeetTheComposableArchitecture/01-Essentials/01-YourFirstFeature/01-01-02-code-0005.swift create mode 100644 0275-shared-state-pt8/swift-composable-architecture/Sources/ComposableArchitecture/Documentation.docc/Tutorials/MeetTheComposableArchitecture/01-Essentials/01-YourFirstFeature/01-01-02-code-0006.swift create mode 100644 0275-shared-state-pt8/swift-composable-architecture/Sources/ComposableArchitecture/Documentation.docc/Tutorials/MeetTheComposableArchitecture/01-Essentials/01-YourFirstFeature/01-01-02-code-0007.swift create mode 100644 0275-shared-state-pt8/swift-composable-architecture/Sources/ComposableArchitecture/Documentation.docc/Tutorials/MeetTheComposableArchitecture/01-Essentials/01-YourFirstFeature/01-01-03-code-0001.swift create mode 100644 0275-shared-state-pt8/swift-composable-architecture/Sources/ComposableArchitecture/Documentation.docc/Tutorials/MeetTheComposableArchitecture/01-Essentials/01-YourFirstFeature/01-01-03-code-0002.swift create mode 100644 0275-shared-state-pt8/swift-composable-architecture/Sources/ComposableArchitecture/Documentation.docc/Tutorials/MeetTheComposableArchitecture/01-Essentials/01-YourFirstFeature/01-01-03-code-0003.swift create mode 100644 0275-shared-state-pt8/swift-composable-architecture/Sources/ComposableArchitecture/Documentation.docc/Tutorials/MeetTheComposableArchitecture/01-Essentials/01-YourFirstFeature/01-01-03-code-0004.swift create mode 100644 0275-shared-state-pt8/swift-composable-architecture/Sources/ComposableArchitecture/Documentation.docc/Tutorials/MeetTheComposableArchitecture/01-Essentials/01-YourFirstFeature/01-01-YourFirstFeature.tutorial create mode 100644 0275-shared-state-pt8/swift-composable-architecture/Sources/ComposableArchitecture/Documentation.docc/Tutorials/MeetTheComposableArchitecture/01-Essentials/02-AddingSideEffects/01-02-01-code-0001-previous.swift create mode 100644 0275-shared-state-pt8/swift-composable-architecture/Sources/ComposableArchitecture/Documentation.docc/Tutorials/MeetTheComposableArchitecture/01-Essentials/02-AddingSideEffects/01-02-01-code-0001.swift create mode 100644 0275-shared-state-pt8/swift-composable-architecture/Sources/ComposableArchitecture/Documentation.docc/Tutorials/MeetTheComposableArchitecture/01-Essentials/02-AddingSideEffects/01-02-01-code-0002.swift create mode 100644 0275-shared-state-pt8/swift-composable-architecture/Sources/ComposableArchitecture/Documentation.docc/Tutorials/MeetTheComposableArchitecture/01-Essentials/02-AddingSideEffects/01-02-01-code-0003.swift create mode 100644 0275-shared-state-pt8/swift-composable-architecture/Sources/ComposableArchitecture/Documentation.docc/Tutorials/MeetTheComposableArchitecture/01-Essentials/02-AddingSideEffects/01-02-01-code-0004.swift create mode 100644 0275-shared-state-pt8/swift-composable-architecture/Sources/ComposableArchitecture/Documentation.docc/Tutorials/MeetTheComposableArchitecture/01-Essentials/02-AddingSideEffects/01-02-01-code-0005.swift create mode 100644 0275-shared-state-pt8/swift-composable-architecture/Sources/ComposableArchitecture/Documentation.docc/Tutorials/MeetTheComposableArchitecture/01-Essentials/02-AddingSideEffects/01-02-02-code-0001.swift create mode 100644 0275-shared-state-pt8/swift-composable-architecture/Sources/ComposableArchitecture/Documentation.docc/Tutorials/MeetTheComposableArchitecture/01-Essentials/02-AddingSideEffects/01-02-02-code-0002.swift create mode 100644 0275-shared-state-pt8/swift-composable-architecture/Sources/ComposableArchitecture/Documentation.docc/Tutorials/MeetTheComposableArchitecture/01-Essentials/02-AddingSideEffects/01-02-02-code-0003.swift create mode 100644 0275-shared-state-pt8/swift-composable-architecture/Sources/ComposableArchitecture/Documentation.docc/Tutorials/MeetTheComposableArchitecture/01-Essentials/02-AddingSideEffects/01-02-02-code-0004.swift create mode 100644 0275-shared-state-pt8/swift-composable-architecture/Sources/ComposableArchitecture/Documentation.docc/Tutorials/MeetTheComposableArchitecture/01-Essentials/02-AddingSideEffects/01-02-02-code-0005.swift create mode 100644 0275-shared-state-pt8/swift-composable-architecture/Sources/ComposableArchitecture/Documentation.docc/Tutorials/MeetTheComposableArchitecture/01-Essentials/02-AddingSideEffects/01-02-03-code-0001.swift create mode 100644 0275-shared-state-pt8/swift-composable-architecture/Sources/ComposableArchitecture/Documentation.docc/Tutorials/MeetTheComposableArchitecture/01-Essentials/02-AddingSideEffects/01-02-03-code-0002.swift create mode 100644 0275-shared-state-pt8/swift-composable-architecture/Sources/ComposableArchitecture/Documentation.docc/Tutorials/MeetTheComposableArchitecture/01-Essentials/02-AddingSideEffects/01-02-03-code-0003.swift create mode 100644 0275-shared-state-pt8/swift-composable-architecture/Sources/ComposableArchitecture/Documentation.docc/Tutorials/MeetTheComposableArchitecture/01-Essentials/02-AddingSideEffects/01-02-03-code-0004.swift create mode 100644 0275-shared-state-pt8/swift-composable-architecture/Sources/ComposableArchitecture/Documentation.docc/Tutorials/MeetTheComposableArchitecture/01-Essentials/02-AddingSideEffects/01-02-03-code-0005.swift create mode 100644 0275-shared-state-pt8/swift-composable-architecture/Sources/ComposableArchitecture/Documentation.docc/Tutorials/MeetTheComposableArchitecture/01-Essentials/02-AddingSideEffects/01-02-03-code-0006.swift create mode 100644 0275-shared-state-pt8/swift-composable-architecture/Sources/ComposableArchitecture/Documentation.docc/Tutorials/MeetTheComposableArchitecture/01-Essentials/02-AddingSideEffects/01-02-AddingSideEffects.tutorial create mode 100644 0275-shared-state-pt8/swift-composable-architecture/Sources/ComposableArchitecture/Documentation.docc/Tutorials/MeetTheComposableArchitecture/01-Essentials/03-TestingYourFeatures/01-03-01-code-0001.swift create mode 100644 0275-shared-state-pt8/swift-composable-architecture/Sources/ComposableArchitecture/Documentation.docc/Tutorials/MeetTheComposableArchitecture/01-Essentials/03-TestingYourFeatures/01-03-01-code-0002.swift create mode 100644 0275-shared-state-pt8/swift-composable-architecture/Sources/ComposableArchitecture/Documentation.docc/Tutorials/MeetTheComposableArchitecture/01-Essentials/03-TestingYourFeatures/01-03-01-code-0003.swift create mode 100644 0275-shared-state-pt8/swift-composable-architecture/Sources/ComposableArchitecture/Documentation.docc/Tutorials/MeetTheComposableArchitecture/01-Essentials/03-TestingYourFeatures/01-03-01-code-0004.swift create mode 100644 0275-shared-state-pt8/swift-composable-architecture/Sources/ComposableArchitecture/Documentation.docc/Tutorials/MeetTheComposableArchitecture/01-Essentials/03-TestingYourFeatures/01-03-01-code-0005.swift create mode 100644 0275-shared-state-pt8/swift-composable-architecture/Sources/ComposableArchitecture/Documentation.docc/Tutorials/MeetTheComposableArchitecture/01-Essentials/03-TestingYourFeatures/01-03-02-code-0001-previous.swift create mode 100644 0275-shared-state-pt8/swift-composable-architecture/Sources/ComposableArchitecture/Documentation.docc/Tutorials/MeetTheComposableArchitecture/01-Essentials/03-TestingYourFeatures/01-03-02-code-0001.swift create mode 100644 0275-shared-state-pt8/swift-composable-architecture/Sources/ComposableArchitecture/Documentation.docc/Tutorials/MeetTheComposableArchitecture/01-Essentials/03-TestingYourFeatures/01-03-02-code-0002.swift create mode 100644 0275-shared-state-pt8/swift-composable-architecture/Sources/ComposableArchitecture/Documentation.docc/Tutorials/MeetTheComposableArchitecture/01-Essentials/03-TestingYourFeatures/01-03-02-code-0003.swift create mode 100644 0275-shared-state-pt8/swift-composable-architecture/Sources/ComposableArchitecture/Documentation.docc/Tutorials/MeetTheComposableArchitecture/01-Essentials/03-TestingYourFeatures/01-03-02-code-0004.swift create mode 100644 0275-shared-state-pt8/swift-composable-architecture/Sources/ComposableArchitecture/Documentation.docc/Tutorials/MeetTheComposableArchitecture/01-Essentials/03-TestingYourFeatures/01-03-02-code-0005.swift create mode 100644 0275-shared-state-pt8/swift-composable-architecture/Sources/ComposableArchitecture/Documentation.docc/Tutorials/MeetTheComposableArchitecture/01-Essentials/03-TestingYourFeatures/01-03-02-code-0006.swift create mode 100644 0275-shared-state-pt8/swift-composable-architecture/Sources/ComposableArchitecture/Documentation.docc/Tutorials/MeetTheComposableArchitecture/01-Essentials/03-TestingYourFeatures/01-03-02-code-0007.swift create mode 100644 0275-shared-state-pt8/swift-composable-architecture/Sources/ComposableArchitecture/Documentation.docc/Tutorials/MeetTheComposableArchitecture/01-Essentials/03-TestingYourFeatures/01-03-02-code-0008.swift create mode 100644 0275-shared-state-pt8/swift-composable-architecture/Sources/ComposableArchitecture/Documentation.docc/Tutorials/MeetTheComposableArchitecture/01-Essentials/03-TestingYourFeatures/01-03-02-code-0009.swift create mode 100644 0275-shared-state-pt8/swift-composable-architecture/Sources/ComposableArchitecture/Documentation.docc/Tutorials/MeetTheComposableArchitecture/01-Essentials/03-TestingYourFeatures/01-03-02-code-0010.swift create mode 100644 0275-shared-state-pt8/swift-composable-architecture/Sources/ComposableArchitecture/Documentation.docc/Tutorials/MeetTheComposableArchitecture/01-Essentials/03-TestingYourFeatures/01-03-03-code-0001-previous.swift create mode 100644 0275-shared-state-pt8/swift-composable-architecture/Sources/ComposableArchitecture/Documentation.docc/Tutorials/MeetTheComposableArchitecture/01-Essentials/03-TestingYourFeatures/01-03-03-code-0001.swift create mode 100644 0275-shared-state-pt8/swift-composable-architecture/Sources/ComposableArchitecture/Documentation.docc/Tutorials/MeetTheComposableArchitecture/01-Essentials/03-TestingYourFeatures/01-03-03-code-0002.swift create mode 100644 0275-shared-state-pt8/swift-composable-architecture/Sources/ComposableArchitecture/Documentation.docc/Tutorials/MeetTheComposableArchitecture/01-Essentials/03-TestingYourFeatures/01-03-03-code-0003.swift create mode 100644 0275-shared-state-pt8/swift-composable-architecture/Sources/ComposableArchitecture/Documentation.docc/Tutorials/MeetTheComposableArchitecture/01-Essentials/03-TestingYourFeatures/01-03-03-code-0004.swift create mode 100644 0275-shared-state-pt8/swift-composable-architecture/Sources/ComposableArchitecture/Documentation.docc/Tutorials/MeetTheComposableArchitecture/01-Essentials/03-TestingYourFeatures/01-03-03-code-0005.swift create mode 100644 0275-shared-state-pt8/swift-composable-architecture/Sources/ComposableArchitecture/Documentation.docc/Tutorials/MeetTheComposableArchitecture/01-Essentials/03-TestingYourFeatures/01-03-04-code-0001.swift create mode 100644 0275-shared-state-pt8/swift-composable-architecture/Sources/ComposableArchitecture/Documentation.docc/Tutorials/MeetTheComposableArchitecture/01-Essentials/03-TestingYourFeatures/01-03-04-code-0002.swift create mode 100644 0275-shared-state-pt8/swift-composable-architecture/Sources/ComposableArchitecture/Documentation.docc/Tutorials/MeetTheComposableArchitecture/01-Essentials/03-TestingYourFeatures/01-03-04-code-0003.swift create mode 100644 0275-shared-state-pt8/swift-composable-architecture/Sources/ComposableArchitecture/Documentation.docc/Tutorials/MeetTheComposableArchitecture/01-Essentials/03-TestingYourFeatures/01-03-04-code-0004.swift create mode 100644 0275-shared-state-pt8/swift-composable-architecture/Sources/ComposableArchitecture/Documentation.docc/Tutorials/MeetTheComposableArchitecture/01-Essentials/03-TestingYourFeatures/01-03-04-code-0005.swift create mode 100644 0275-shared-state-pt8/swift-composable-architecture/Sources/ComposableArchitecture/Documentation.docc/Tutorials/MeetTheComposableArchitecture/01-Essentials/03-TestingYourFeatures/01-03-04-code-0006-previous.swift create mode 100644 0275-shared-state-pt8/swift-composable-architecture/Sources/ComposableArchitecture/Documentation.docc/Tutorials/MeetTheComposableArchitecture/01-Essentials/03-TestingYourFeatures/01-03-04-code-0006.swift create mode 100644 0275-shared-state-pt8/swift-composable-architecture/Sources/ComposableArchitecture/Documentation.docc/Tutorials/MeetTheComposableArchitecture/01-Essentials/03-TestingYourFeatures/01-03-04-code-0007.swift create mode 100644 0275-shared-state-pt8/swift-composable-architecture/Sources/ComposableArchitecture/Documentation.docc/Tutorials/MeetTheComposableArchitecture/01-Essentials/03-TestingYourFeatures/01-03-04-code-0008.swift create mode 100644 0275-shared-state-pt8/swift-composable-architecture/Sources/ComposableArchitecture/Documentation.docc/Tutorials/MeetTheComposableArchitecture/01-Essentials/03-TestingYourFeatures/01-03-TestingYourFeature.tutorial create mode 100644 0275-shared-state-pt8/swift-composable-architecture/Sources/ComposableArchitecture/Documentation.docc/Tutorials/MeetTheComposableArchitecture/01-Essentials/04-ComposingFeatures/01-04-01-code-0001.swift create mode 100644 0275-shared-state-pt8/swift-composable-architecture/Sources/ComposableArchitecture/Documentation.docc/Tutorials/MeetTheComposableArchitecture/01-Essentials/04-ComposingFeatures/01-04-01-code-0002.swift create mode 100644 0275-shared-state-pt8/swift-composable-architecture/Sources/ComposableArchitecture/Documentation.docc/Tutorials/MeetTheComposableArchitecture/01-Essentials/04-ComposingFeatures/01-04-01-code-0003.swift create mode 100644 0275-shared-state-pt8/swift-composable-architecture/Sources/ComposableArchitecture/Documentation.docc/Tutorials/MeetTheComposableArchitecture/01-Essentials/04-ComposingFeatures/01-04-02-code-0001.swift create mode 100644 0275-shared-state-pt8/swift-composable-architecture/Sources/ComposableArchitecture/Documentation.docc/Tutorials/MeetTheComposableArchitecture/01-Essentials/04-ComposingFeatures/01-04-02-code-0002.swift create mode 100644 0275-shared-state-pt8/swift-composable-architecture/Sources/ComposableArchitecture/Documentation.docc/Tutorials/MeetTheComposableArchitecture/01-Essentials/04-ComposingFeatures/01-04-02-code-0003.swift create mode 100644 0275-shared-state-pt8/swift-composable-architecture/Sources/ComposableArchitecture/Documentation.docc/Tutorials/MeetTheComposableArchitecture/01-Essentials/04-ComposingFeatures/01-04-02-code-0004.swift create mode 100644 0275-shared-state-pt8/swift-composable-architecture/Sources/ComposableArchitecture/Documentation.docc/Tutorials/MeetTheComposableArchitecture/01-Essentials/04-ComposingFeatures/01-04-02-code-0005.swift create mode 100644 0275-shared-state-pt8/swift-composable-architecture/Sources/ComposableArchitecture/Documentation.docc/Tutorials/MeetTheComposableArchitecture/01-Essentials/04-ComposingFeatures/01-04-02-code-0006.swift create mode 100644 0275-shared-state-pt8/swift-composable-architecture/Sources/ComposableArchitecture/Documentation.docc/Tutorials/MeetTheComposableArchitecture/01-Essentials/04-ComposingFeatures/01-04-02-code-0007.swift create mode 100644 0275-shared-state-pt8/swift-composable-architecture/Sources/ComposableArchitecture/Documentation.docc/Tutorials/MeetTheComposableArchitecture/01-Essentials/04-ComposingFeatures/01-04-02-code-0008.swift create mode 100644 0275-shared-state-pt8/swift-composable-architecture/Sources/ComposableArchitecture/Documentation.docc/Tutorials/MeetTheComposableArchitecture/01-Essentials/04-ComposingFeatures/01-04-03-code-0001-previous.swift create mode 100644 0275-shared-state-pt8/swift-composable-architecture/Sources/ComposableArchitecture/Documentation.docc/Tutorials/MeetTheComposableArchitecture/01-Essentials/04-ComposingFeatures/01-04-03-code-0001.swift create mode 100644 0275-shared-state-pt8/swift-composable-architecture/Sources/ComposableArchitecture/Documentation.docc/Tutorials/MeetTheComposableArchitecture/01-Essentials/04-ComposingFeatures/01-04-03-code-0002.swift create mode 100644 0275-shared-state-pt8/swift-composable-architecture/Sources/ComposableArchitecture/Documentation.docc/Tutorials/MeetTheComposableArchitecture/01-Essentials/04-ComposingFeatures/01-04-03-code-0003.swift create mode 100644 0275-shared-state-pt8/swift-composable-architecture/Sources/ComposableArchitecture/Documentation.docc/Tutorials/MeetTheComposableArchitecture/01-Essentials/04-ComposingFeatures/01-04-03-code-0004.swift create mode 100644 0275-shared-state-pt8/swift-composable-architecture/Sources/ComposableArchitecture/Documentation.docc/Tutorials/MeetTheComposableArchitecture/01-Essentials/04-ComposingFeatures/01-04-03-code-0005-previous.swift create mode 100644 0275-shared-state-pt8/swift-composable-architecture/Sources/ComposableArchitecture/Documentation.docc/Tutorials/MeetTheComposableArchitecture/01-Essentials/04-ComposingFeatures/01-04-03-code-0005.swift create mode 100644 0275-shared-state-pt8/swift-composable-architecture/Sources/ComposableArchitecture/Documentation.docc/Tutorials/MeetTheComposableArchitecture/01-Essentials/04-ComposingFeatures/01-04-ComposingFeatures.tutorial create mode 100644 0275-shared-state-pt8/swift-composable-architecture/Sources/ComposableArchitecture/Documentation.docc/Tutorials/MeetTheComposableArchitecture/02-Navigation/01-YourFirstPresentation/02-01-01-code-0000.swift create mode 100644 0275-shared-state-pt8/swift-composable-architecture/Sources/ComposableArchitecture/Documentation.docc/Tutorials/MeetTheComposableArchitecture/02-Navigation/01-YourFirstPresentation/02-01-01-code-0001.swift create mode 100644 0275-shared-state-pt8/swift-composable-architecture/Sources/ComposableArchitecture/Documentation.docc/Tutorials/MeetTheComposableArchitecture/02-Navigation/01-YourFirstPresentation/02-01-01-code-0002.swift create mode 100644 0275-shared-state-pt8/swift-composable-architecture/Sources/ComposableArchitecture/Documentation.docc/Tutorials/MeetTheComposableArchitecture/02-Navigation/01-YourFirstPresentation/02-01-01-code-0003.swift create mode 100644 0275-shared-state-pt8/swift-composable-architecture/Sources/ComposableArchitecture/Documentation.docc/Tutorials/MeetTheComposableArchitecture/02-Navigation/01-YourFirstPresentation/02-01-01-code-0004.swift create mode 100644 0275-shared-state-pt8/swift-composable-architecture/Sources/ComposableArchitecture/Documentation.docc/Tutorials/MeetTheComposableArchitecture/02-Navigation/01-YourFirstPresentation/02-01-01-code-0005.swift create mode 100644 0275-shared-state-pt8/swift-composable-architecture/Sources/ComposableArchitecture/Documentation.docc/Tutorials/MeetTheComposableArchitecture/02-Navigation/01-YourFirstPresentation/02-01-01-code-0006.swift create mode 100644 0275-shared-state-pt8/swift-composable-architecture/Sources/ComposableArchitecture/Documentation.docc/Tutorials/MeetTheComposableArchitecture/02-Navigation/01-YourFirstPresentation/02-01-01-code-0007.swift create mode 100644 0275-shared-state-pt8/swift-composable-architecture/Sources/ComposableArchitecture/Documentation.docc/Tutorials/MeetTheComposableArchitecture/02-Navigation/01-YourFirstPresentation/02-01-02-code-0000.swift create mode 100644 0275-shared-state-pt8/swift-composable-architecture/Sources/ComposableArchitecture/Documentation.docc/Tutorials/MeetTheComposableArchitecture/02-Navigation/01-YourFirstPresentation/02-01-02-code-0001.swift create mode 100644 0275-shared-state-pt8/swift-composable-architecture/Sources/ComposableArchitecture/Documentation.docc/Tutorials/MeetTheComposableArchitecture/02-Navigation/01-YourFirstPresentation/02-01-02-code-0002.swift create mode 100644 0275-shared-state-pt8/swift-composable-architecture/Sources/ComposableArchitecture/Documentation.docc/Tutorials/MeetTheComposableArchitecture/02-Navigation/01-YourFirstPresentation/02-01-02-code-0003.swift create mode 100644 0275-shared-state-pt8/swift-composable-architecture/Sources/ComposableArchitecture/Documentation.docc/Tutorials/MeetTheComposableArchitecture/02-Navigation/01-YourFirstPresentation/02-01-02-code-0004.swift create mode 100644 0275-shared-state-pt8/swift-composable-architecture/Sources/ComposableArchitecture/Documentation.docc/Tutorials/MeetTheComposableArchitecture/02-Navigation/01-YourFirstPresentation/02-01-02-code-0005.swift create mode 100644 0275-shared-state-pt8/swift-composable-architecture/Sources/ComposableArchitecture/Documentation.docc/Tutorials/MeetTheComposableArchitecture/02-Navigation/01-YourFirstPresentation/02-01-02-code-0006.swift create mode 100644 0275-shared-state-pt8/swift-composable-architecture/Sources/ComposableArchitecture/Documentation.docc/Tutorials/MeetTheComposableArchitecture/02-Navigation/01-YourFirstPresentation/02-01-02-code-0007.swift create mode 100644 0275-shared-state-pt8/swift-composable-architecture/Sources/ComposableArchitecture/Documentation.docc/Tutorials/MeetTheComposableArchitecture/02-Navigation/01-YourFirstPresentation/02-01-02-code-0008.swift create mode 100644 0275-shared-state-pt8/swift-composable-architecture/Sources/ComposableArchitecture/Documentation.docc/Tutorials/MeetTheComposableArchitecture/02-Navigation/01-YourFirstPresentation/02-01-02-code-0009.swift create mode 100644 0275-shared-state-pt8/swift-composable-architecture/Sources/ComposableArchitecture/Documentation.docc/Tutorials/MeetTheComposableArchitecture/02-Navigation/01-YourFirstPresentation/02-01-04-code-0000-previous.swift create mode 100644 0275-shared-state-pt8/swift-composable-architecture/Sources/ComposableArchitecture/Documentation.docc/Tutorials/MeetTheComposableArchitecture/02-Navigation/01-YourFirstPresentation/02-01-04-code-0000.swift create mode 100644 0275-shared-state-pt8/swift-composable-architecture/Sources/ComposableArchitecture/Documentation.docc/Tutorials/MeetTheComposableArchitecture/02-Navigation/01-YourFirstPresentation/02-01-04-code-0001.swift create mode 100644 0275-shared-state-pt8/swift-composable-architecture/Sources/ComposableArchitecture/Documentation.docc/Tutorials/MeetTheComposableArchitecture/02-Navigation/01-YourFirstPresentation/02-01-04-code-0002.swift create mode 100644 0275-shared-state-pt8/swift-composable-architecture/Sources/ComposableArchitecture/Documentation.docc/Tutorials/MeetTheComposableArchitecture/02-Navigation/01-YourFirstPresentation/02-01-04-code-0003-previous.swift create mode 100644 0275-shared-state-pt8/swift-composable-architecture/Sources/ComposableArchitecture/Documentation.docc/Tutorials/MeetTheComposableArchitecture/02-Navigation/01-YourFirstPresentation/02-01-04-code-0003.swift create mode 100644 0275-shared-state-pt8/swift-composable-architecture/Sources/ComposableArchitecture/Documentation.docc/Tutorials/MeetTheComposableArchitecture/02-Navigation/01-YourFirstPresentation/02-01-04-code-0004-previous.swift create mode 100644 0275-shared-state-pt8/swift-composable-architecture/Sources/ComposableArchitecture/Documentation.docc/Tutorials/MeetTheComposableArchitecture/02-Navigation/01-YourFirstPresentation/02-01-04-code-0004.swift create mode 100644 0275-shared-state-pt8/swift-composable-architecture/Sources/ComposableArchitecture/Documentation.docc/Tutorials/MeetTheComposableArchitecture/02-Navigation/01-YourFirstPresentation/02-01-04-code-0005.swift create mode 100644 0275-shared-state-pt8/swift-composable-architecture/Sources/ComposableArchitecture/Documentation.docc/Tutorials/MeetTheComposableArchitecture/02-Navigation/01-YourFirstPresentation/02-01-04-code-0006.swift create mode 100644 0275-shared-state-pt8/swift-composable-architecture/Sources/ComposableArchitecture/Documentation.docc/Tutorials/MeetTheComposableArchitecture/02-Navigation/01-YourFirstPresentation/02-01-04-code-0007-previous.swift create mode 100644 0275-shared-state-pt8/swift-composable-architecture/Sources/ComposableArchitecture/Documentation.docc/Tutorials/MeetTheComposableArchitecture/02-Navigation/01-YourFirstPresentation/02-01-04-code-0007.swift create mode 100644 0275-shared-state-pt8/swift-composable-architecture/Sources/ComposableArchitecture/Documentation.docc/Tutorials/MeetTheComposableArchitecture/02-Navigation/01-YourFirstPresentation/02-01-YourFirstPresentation.tutorial create mode 100644 0275-shared-state-pt8/swift-composable-architecture/Sources/ComposableArchitecture/Documentation.docc/Tutorials/MeetTheComposableArchitecture/02-Navigation/02-MultipleDestinations/02-02-01-code-0000-previous.swift create mode 100644 0275-shared-state-pt8/swift-composable-architecture/Sources/ComposableArchitecture/Documentation.docc/Tutorials/MeetTheComposableArchitecture/02-Navigation/02-MultipleDestinations/02-02-01-code-0000.swift create mode 100644 0275-shared-state-pt8/swift-composable-architecture/Sources/ComposableArchitecture/Documentation.docc/Tutorials/MeetTheComposableArchitecture/02-Navigation/02-MultipleDestinations/02-02-01-code-0001.swift create mode 100644 0275-shared-state-pt8/swift-composable-architecture/Sources/ComposableArchitecture/Documentation.docc/Tutorials/MeetTheComposableArchitecture/02-Navigation/02-MultipleDestinations/02-02-01-code-0002.swift create mode 100644 0275-shared-state-pt8/swift-composable-architecture/Sources/ComposableArchitecture/Documentation.docc/Tutorials/MeetTheComposableArchitecture/02-Navigation/02-MultipleDestinations/02-02-01-code-0003.swift create mode 100644 0275-shared-state-pt8/swift-composable-architecture/Sources/ComposableArchitecture/Documentation.docc/Tutorials/MeetTheComposableArchitecture/02-Navigation/02-MultipleDestinations/02-02-01-code-0004.swift create mode 100644 0275-shared-state-pt8/swift-composable-architecture/Sources/ComposableArchitecture/Documentation.docc/Tutorials/MeetTheComposableArchitecture/02-Navigation/02-MultipleDestinations/02-02-01-code-0005.swift create mode 100644 0275-shared-state-pt8/swift-composable-architecture/Sources/ComposableArchitecture/Documentation.docc/Tutorials/MeetTheComposableArchitecture/02-Navigation/02-MultipleDestinations/02-02-01-code-0006-previous.swift create mode 100644 0275-shared-state-pt8/swift-composable-architecture/Sources/ComposableArchitecture/Documentation.docc/Tutorials/MeetTheComposableArchitecture/02-Navigation/02-MultipleDestinations/02-02-01-code-0006.swift create mode 100644 0275-shared-state-pt8/swift-composable-architecture/Sources/ComposableArchitecture/Documentation.docc/Tutorials/MeetTheComposableArchitecture/02-Navigation/02-MultipleDestinations/02-02-01-code-0007.swift create mode 100644 0275-shared-state-pt8/swift-composable-architecture/Sources/ComposableArchitecture/Documentation.docc/Tutorials/MeetTheComposableArchitecture/02-Navigation/02-MultipleDestinations/02-02-02-code-0000.swift create mode 100644 0275-shared-state-pt8/swift-composable-architecture/Sources/ComposableArchitecture/Documentation.docc/Tutorials/MeetTheComposableArchitecture/02-Navigation/02-MultipleDestinations/02-02-02-code-0001.swift create mode 100644 0275-shared-state-pt8/swift-composable-architecture/Sources/ComposableArchitecture/Documentation.docc/Tutorials/MeetTheComposableArchitecture/02-Navigation/02-MultipleDestinations/02-02-02-code-0002.swift create mode 100644 0275-shared-state-pt8/swift-composable-architecture/Sources/ComposableArchitecture/Documentation.docc/Tutorials/MeetTheComposableArchitecture/02-Navigation/02-MultipleDestinations/02-02-02-code-0003-previous.swift create mode 100644 0275-shared-state-pt8/swift-composable-architecture/Sources/ComposableArchitecture/Documentation.docc/Tutorials/MeetTheComposableArchitecture/02-Navigation/02-MultipleDestinations/02-02-02-code-0003.swift create mode 100644 0275-shared-state-pt8/swift-composable-architecture/Sources/ComposableArchitecture/Documentation.docc/Tutorials/MeetTheComposableArchitecture/02-Navigation/02-MultipleDestinations/02-02-02-code-0004.swift create mode 100644 0275-shared-state-pt8/swift-composable-architecture/Sources/ComposableArchitecture/Documentation.docc/Tutorials/MeetTheComposableArchitecture/02-Navigation/02-MultipleDestinations/02-02-02-code-0005.swift create mode 100644 0275-shared-state-pt8/swift-composable-architecture/Sources/ComposableArchitecture/Documentation.docc/Tutorials/MeetTheComposableArchitecture/02-Navigation/02-MultipleDestinations/02-02-02-code-0006.swift create mode 100644 0275-shared-state-pt8/swift-composable-architecture/Sources/ComposableArchitecture/Documentation.docc/Tutorials/MeetTheComposableArchitecture/02-Navigation/02-MultipleDestinations/02-02-02-code-0007.swift create mode 100644 0275-shared-state-pt8/swift-composable-architecture/Sources/ComposableArchitecture/Documentation.docc/Tutorials/MeetTheComposableArchitecture/02-Navigation/02-MultipleDestinations/02-02-02-code-0008.swift create mode 100644 0275-shared-state-pt8/swift-composable-architecture/Sources/ComposableArchitecture/Documentation.docc/Tutorials/MeetTheComposableArchitecture/02-Navigation/02-MultipleDestinations/02-02-02-code-0009.swift create mode 100644 0275-shared-state-pt8/swift-composable-architecture/Sources/ComposableArchitecture/Documentation.docc/Tutorials/MeetTheComposableArchitecture/02-Navigation/02-MultipleDestinations/02-02-02-code-0010.swift create mode 100644 0275-shared-state-pt8/swift-composable-architecture/Sources/ComposableArchitecture/Documentation.docc/Tutorials/MeetTheComposableArchitecture/02-Navigation/02-MultipleDestinations/02-02-02-code-0011-previous.swift create mode 100644 0275-shared-state-pt8/swift-composable-architecture/Sources/ComposableArchitecture/Documentation.docc/Tutorials/MeetTheComposableArchitecture/02-Navigation/02-MultipleDestinations/02-02-02-code-0011.swift create mode 100644 0275-shared-state-pt8/swift-composable-architecture/Sources/ComposableArchitecture/Documentation.docc/Tutorials/MeetTheComposableArchitecture/02-Navigation/02-MultipleDestinations/02-02-02-code-0012.swift create mode 100644 0275-shared-state-pt8/swift-composable-architecture/Sources/ComposableArchitecture/Documentation.docc/Tutorials/MeetTheComposableArchitecture/02-Navigation/02-MultipleDestinations/02-02-MultipleDestinations.tutorial create mode 100644 0275-shared-state-pt8/swift-composable-architecture/Sources/ComposableArchitecture/Documentation.docc/Tutorials/MeetTheComposableArchitecture/02-Navigation/03-TestingPresentation/02-03-01-code-0000.swift create mode 100644 0275-shared-state-pt8/swift-composable-architecture/Sources/ComposableArchitecture/Documentation.docc/Tutorials/MeetTheComposableArchitecture/02-Navigation/03-TestingPresentation/02-03-01-code-0001.swift create mode 100644 0275-shared-state-pt8/swift-composable-architecture/Sources/ComposableArchitecture/Documentation.docc/Tutorials/MeetTheComposableArchitecture/02-Navigation/03-TestingPresentation/02-03-01-code-0002.swift create mode 100644 0275-shared-state-pt8/swift-composable-architecture/Sources/ComposableArchitecture/Documentation.docc/Tutorials/MeetTheComposableArchitecture/02-Navigation/03-TestingPresentation/02-03-01-code-0003.swift create mode 100644 0275-shared-state-pt8/swift-composable-architecture/Sources/ComposableArchitecture/Documentation.docc/Tutorials/MeetTheComposableArchitecture/02-Navigation/03-TestingPresentation/02-03-01-code-0004.swift create mode 100644 0275-shared-state-pt8/swift-composable-architecture/Sources/ComposableArchitecture/Documentation.docc/Tutorials/MeetTheComposableArchitecture/02-Navigation/03-TestingPresentation/02-03-01-code-0005.swift create mode 100644 0275-shared-state-pt8/swift-composable-architecture/Sources/ComposableArchitecture/Documentation.docc/Tutorials/MeetTheComposableArchitecture/02-Navigation/03-TestingPresentation/02-03-01-code-0006-previous.swift create mode 100644 0275-shared-state-pt8/swift-composable-architecture/Sources/ComposableArchitecture/Documentation.docc/Tutorials/MeetTheComposableArchitecture/02-Navigation/03-TestingPresentation/02-03-01-code-0006.swift create mode 100644 0275-shared-state-pt8/swift-composable-architecture/Sources/ComposableArchitecture/Documentation.docc/Tutorials/MeetTheComposableArchitecture/02-Navigation/03-TestingPresentation/02-03-01-code-0007.swift create mode 100644 0275-shared-state-pt8/swift-composable-architecture/Sources/ComposableArchitecture/Documentation.docc/Tutorials/MeetTheComposableArchitecture/02-Navigation/03-TestingPresentation/02-03-01-code-0008-previous.swift create mode 100644 0275-shared-state-pt8/swift-composable-architecture/Sources/ComposableArchitecture/Documentation.docc/Tutorials/MeetTheComposableArchitecture/02-Navigation/03-TestingPresentation/02-03-01-code-0008.swift create mode 100644 0275-shared-state-pt8/swift-composable-architecture/Sources/ComposableArchitecture/Documentation.docc/Tutorials/MeetTheComposableArchitecture/02-Navigation/03-TestingPresentation/02-03-01-code-0009.swift create mode 100644 0275-shared-state-pt8/swift-composable-architecture/Sources/ComposableArchitecture/Documentation.docc/Tutorials/MeetTheComposableArchitecture/02-Navigation/03-TestingPresentation/02-03-01-code-0010.swift create mode 100644 0275-shared-state-pt8/swift-composable-architecture/Sources/ComposableArchitecture/Documentation.docc/Tutorials/MeetTheComposableArchitecture/02-Navigation/03-TestingPresentation/02-03-01-code-0011.swift create mode 100644 0275-shared-state-pt8/swift-composable-architecture/Sources/ComposableArchitecture/Documentation.docc/Tutorials/MeetTheComposableArchitecture/02-Navigation/03-TestingPresentation/02-03-01-code-0012.swift create mode 100644 0275-shared-state-pt8/swift-composable-architecture/Sources/ComposableArchitecture/Documentation.docc/Tutorials/MeetTheComposableArchitecture/02-Navigation/03-TestingPresentation/02-03-01-code-0013.swift create mode 100644 0275-shared-state-pt8/swift-composable-architecture/Sources/ComposableArchitecture/Documentation.docc/Tutorials/MeetTheComposableArchitecture/02-Navigation/03-TestingPresentation/02-03-01-code-0014.swift create mode 100644 0275-shared-state-pt8/swift-composable-architecture/Sources/ComposableArchitecture/Documentation.docc/Tutorials/MeetTheComposableArchitecture/02-Navigation/03-TestingPresentation/02-03-01-code-0015-previous.swift create mode 100644 0275-shared-state-pt8/swift-composable-architecture/Sources/ComposableArchitecture/Documentation.docc/Tutorials/MeetTheComposableArchitecture/02-Navigation/03-TestingPresentation/02-03-01-code-0015.swift create mode 100644 0275-shared-state-pt8/swift-composable-architecture/Sources/ComposableArchitecture/Documentation.docc/Tutorials/MeetTheComposableArchitecture/02-Navigation/03-TestingPresentation/02-03-01-code-0016.swift create mode 100644 0275-shared-state-pt8/swift-composable-architecture/Sources/ComposableArchitecture/Documentation.docc/Tutorials/MeetTheComposableArchitecture/02-Navigation/03-TestingPresentation/02-03-01-code-0017.swift create mode 100644 0275-shared-state-pt8/swift-composable-architecture/Sources/ComposableArchitecture/Documentation.docc/Tutorials/MeetTheComposableArchitecture/02-Navigation/03-TestingPresentation/02-03-02-code-0000.swift create mode 100644 0275-shared-state-pt8/swift-composable-architecture/Sources/ComposableArchitecture/Documentation.docc/Tutorials/MeetTheComposableArchitecture/02-Navigation/03-TestingPresentation/02-03-02-code-0001.swift create mode 100644 0275-shared-state-pt8/swift-composable-architecture/Sources/ComposableArchitecture/Documentation.docc/Tutorials/MeetTheComposableArchitecture/02-Navigation/03-TestingPresentation/02-03-02-code-0002.swift create mode 100644 0275-shared-state-pt8/swift-composable-architecture/Sources/ComposableArchitecture/Documentation.docc/Tutorials/MeetTheComposableArchitecture/02-Navigation/03-TestingPresentation/02-03-02-code-0003.swift create mode 100644 0275-shared-state-pt8/swift-composable-architecture/Sources/ComposableArchitecture/Documentation.docc/Tutorials/MeetTheComposableArchitecture/02-Navigation/03-TestingPresentation/02-03-02-code-0004.swift create mode 100644 0275-shared-state-pt8/swift-composable-architecture/Sources/ComposableArchitecture/Documentation.docc/Tutorials/MeetTheComposableArchitecture/02-Navigation/03-TestingPresentation/02-03-02-code-0005.swift create mode 100644 0275-shared-state-pt8/swift-composable-architecture/Sources/ComposableArchitecture/Documentation.docc/Tutorials/MeetTheComposableArchitecture/02-Navigation/03-TestingPresentation/02-03-02-code-0006.swift create mode 100644 0275-shared-state-pt8/swift-composable-architecture/Sources/ComposableArchitecture/Documentation.docc/Tutorials/MeetTheComposableArchitecture/02-Navigation/03-TestingPresentation/02-03-03-code-0000.swift create mode 100644 0275-shared-state-pt8/swift-composable-architecture/Sources/ComposableArchitecture/Documentation.docc/Tutorials/MeetTheComposableArchitecture/02-Navigation/03-TestingPresentation/02-03-03-code-0001.swift create mode 100644 0275-shared-state-pt8/swift-composable-architecture/Sources/ComposableArchitecture/Documentation.docc/Tutorials/MeetTheComposableArchitecture/02-Navigation/03-TestingPresentation/02-03-03-code-0002.swift create mode 100644 0275-shared-state-pt8/swift-composable-architecture/Sources/ComposableArchitecture/Documentation.docc/Tutorials/MeetTheComposableArchitecture/02-Navigation/03-TestingPresentation/02-03-03-code-0003.swift create mode 100644 0275-shared-state-pt8/swift-composable-architecture/Sources/ComposableArchitecture/Documentation.docc/Tutorials/MeetTheComposableArchitecture/02-Navigation/03-TestingPresentation/02-03-03-code-0004.swift create mode 100644 0275-shared-state-pt8/swift-composable-architecture/Sources/ComposableArchitecture/Documentation.docc/Tutorials/MeetTheComposableArchitecture/02-Navigation/03-TestingPresentation/02-03-03-code-0005.swift create mode 100644 0275-shared-state-pt8/swift-composable-architecture/Sources/ComposableArchitecture/Documentation.docc/Tutorials/MeetTheComposableArchitecture/02-Navigation/03-TestingPresentation/02-03-03-code-0006.swift create mode 100644 0275-shared-state-pt8/swift-composable-architecture/Sources/ComposableArchitecture/Documentation.docc/Tutorials/MeetTheComposableArchitecture/02-Navigation/03-TestingPresentation/02-03-03-code-0007-previous.swift create mode 100644 0275-shared-state-pt8/swift-composable-architecture/Sources/ComposableArchitecture/Documentation.docc/Tutorials/MeetTheComposableArchitecture/02-Navigation/03-TestingPresentation/02-03-03-code-0007.swift create mode 100644 0275-shared-state-pt8/swift-composable-architecture/Sources/ComposableArchitecture/Documentation.docc/Tutorials/MeetTheComposableArchitecture/02-Navigation/03-TestingPresentation/02-03-03-code-0008-previous.swift create mode 100644 0275-shared-state-pt8/swift-composable-architecture/Sources/ComposableArchitecture/Documentation.docc/Tutorials/MeetTheComposableArchitecture/02-Navigation/03-TestingPresentation/02-03-03-code-0008.swift create mode 100644 0275-shared-state-pt8/swift-composable-architecture/Sources/ComposableArchitecture/Documentation.docc/Tutorials/MeetTheComposableArchitecture/02-Navigation/03-TestingPresentation/02-03-03-code-0009.swift create mode 100644 0275-shared-state-pt8/swift-composable-architecture/Sources/ComposableArchitecture/Documentation.docc/Tutorials/MeetTheComposableArchitecture/02-Navigation/03-TestingPresentation/02-03-03-code-0010.swift create mode 100644 0275-shared-state-pt8/swift-composable-architecture/Sources/ComposableArchitecture/Documentation.docc/Tutorials/MeetTheComposableArchitecture/02-Navigation/03-TestingPresentation/02-03-TestingPresentation.tutorial create mode 100644 0275-shared-state-pt8/swift-composable-architecture/Sources/ComposableArchitecture/Documentation.docc/Tutorials/MeetTheComposableArchitecture/02-Navigation/04-NavigationStacks/02-04-01-code-0000.swift create mode 100644 0275-shared-state-pt8/swift-composable-architecture/Sources/ComposableArchitecture/Documentation.docc/Tutorials/MeetTheComposableArchitecture/02-Navigation/04-NavigationStacks/02-04-01-code-0001.swift create mode 100644 0275-shared-state-pt8/swift-composable-architecture/Sources/ComposableArchitecture/Documentation.docc/Tutorials/MeetTheComposableArchitecture/02-Navigation/04-NavigationStacks/02-04-01-code-0002.swift create mode 100644 0275-shared-state-pt8/swift-composable-architecture/Sources/ComposableArchitecture/Documentation.docc/Tutorials/MeetTheComposableArchitecture/02-Navigation/04-NavigationStacks/02-04-01-code-0003.swift create mode 100644 0275-shared-state-pt8/swift-composable-architecture/Sources/ComposableArchitecture/Documentation.docc/Tutorials/MeetTheComposableArchitecture/02-Navigation/04-NavigationStacks/02-04-01-code-0004.swift create mode 100644 0275-shared-state-pt8/swift-composable-architecture/Sources/ComposableArchitecture/Documentation.docc/Tutorials/MeetTheComposableArchitecture/02-Navigation/04-NavigationStacks/02-04-01-code-0005.swift create mode 100644 0275-shared-state-pt8/swift-composable-architecture/Sources/ComposableArchitecture/Documentation.docc/Tutorials/MeetTheComposableArchitecture/02-Navigation/04-NavigationStacks/02-04-01-code-0006.swift create mode 100644 0275-shared-state-pt8/swift-composable-architecture/Sources/ComposableArchitecture/Documentation.docc/Tutorials/MeetTheComposableArchitecture/02-Navigation/04-NavigationStacks/02-04-01-code-0007.swift create mode 100644 0275-shared-state-pt8/swift-composable-architecture/Sources/ComposableArchitecture/Documentation.docc/Tutorials/MeetTheComposableArchitecture/02-Navigation/04-NavigationStacks/02-04-02-code-0000-previous.swift create mode 100644 0275-shared-state-pt8/swift-composable-architecture/Sources/ComposableArchitecture/Documentation.docc/Tutorials/MeetTheComposableArchitecture/02-Navigation/04-NavigationStacks/02-04-02-code-0000.swift create mode 100644 0275-shared-state-pt8/swift-composable-architecture/Sources/ComposableArchitecture/Documentation.docc/Tutorials/MeetTheComposableArchitecture/02-Navigation/04-NavigationStacks/02-04-02-code-0001.swift create mode 100644 0275-shared-state-pt8/swift-composable-architecture/Sources/ComposableArchitecture/Documentation.docc/Tutorials/MeetTheComposableArchitecture/02-Navigation/04-NavigationStacks/02-04-02-code-0002.swift create mode 100644 0275-shared-state-pt8/swift-composable-architecture/Sources/ComposableArchitecture/Documentation.docc/Tutorials/MeetTheComposableArchitecture/02-Navigation/04-NavigationStacks/02-04-02-code-0003-previous.swift create mode 100644 0275-shared-state-pt8/swift-composable-architecture/Sources/ComposableArchitecture/Documentation.docc/Tutorials/MeetTheComposableArchitecture/02-Navigation/04-NavigationStacks/02-04-02-code-0003.swift create mode 100644 0275-shared-state-pt8/swift-composable-architecture/Sources/ComposableArchitecture/Documentation.docc/Tutorials/MeetTheComposableArchitecture/02-Navigation/04-NavigationStacks/02-04-02-code-0004.swift create mode 100644 0275-shared-state-pt8/swift-composable-architecture/Sources/ComposableArchitecture/Documentation.docc/Tutorials/MeetTheComposableArchitecture/02-Navigation/04-NavigationStacks/02-04-02-code-0005-previous.swift create mode 100644 0275-shared-state-pt8/swift-composable-architecture/Sources/ComposableArchitecture/Documentation.docc/Tutorials/MeetTheComposableArchitecture/02-Navigation/04-NavigationStacks/02-04-02-code-0005.swift create mode 100644 0275-shared-state-pt8/swift-composable-architecture/Sources/ComposableArchitecture/Documentation.docc/Tutorials/MeetTheComposableArchitecture/02-Navigation/04-NavigationStacks/02-04-03-code-0000-previous.swift create mode 100644 0275-shared-state-pt8/swift-composable-architecture/Sources/ComposableArchitecture/Documentation.docc/Tutorials/MeetTheComposableArchitecture/02-Navigation/04-NavigationStacks/02-04-03-code-0000.swift create mode 100644 0275-shared-state-pt8/swift-composable-architecture/Sources/ComposableArchitecture/Documentation.docc/Tutorials/MeetTheComposableArchitecture/02-Navigation/04-NavigationStacks/02-04-03-code-0001.swift create mode 100644 0275-shared-state-pt8/swift-composable-architecture/Sources/ComposableArchitecture/Documentation.docc/Tutorials/MeetTheComposableArchitecture/02-Navigation/04-NavigationStacks/02-04-03-code-0002.swift create mode 100644 0275-shared-state-pt8/swift-composable-architecture/Sources/ComposableArchitecture/Documentation.docc/Tutorials/MeetTheComposableArchitecture/02-Navigation/04-NavigationStacks/02-04-03-code-0003-previous.swift create mode 100644 0275-shared-state-pt8/swift-composable-architecture/Sources/ComposableArchitecture/Documentation.docc/Tutorials/MeetTheComposableArchitecture/02-Navigation/04-NavigationStacks/02-04-03-code-0003.swift create mode 100644 0275-shared-state-pt8/swift-composable-architecture/Sources/ComposableArchitecture/Documentation.docc/Tutorials/MeetTheComposableArchitecture/02-Navigation/04-NavigationStacks/02-04-03-code-0004-previous.swift create mode 100644 0275-shared-state-pt8/swift-composable-architecture/Sources/ComposableArchitecture/Documentation.docc/Tutorials/MeetTheComposableArchitecture/02-Navigation/04-NavigationStacks/02-04-03-code-0004.swift create mode 100644 0275-shared-state-pt8/swift-composable-architecture/Sources/ComposableArchitecture/Documentation.docc/Tutorials/MeetTheComposableArchitecture/02-Navigation/04-NavigationStacks/02-04-NavigationStacks.tutorial create mode 100644 0275-shared-state-pt8/swift-composable-architecture/Sources/ComposableArchitecture/Documentation.docc/Tutorials/MeetTheComposableArchitecture/MeetComposableArchitecture.tutorial create mode 100644 0275-shared-state-pt8/swift-composable-architecture/Sources/ComposableArchitecture/Effect.swift create mode 100644 0275-shared-state-pt8/swift-composable-architecture/Sources/ComposableArchitecture/Effects/Animation.swift create mode 100644 0275-shared-state-pt8/swift-composable-architecture/Sources/ComposableArchitecture/Effects/Cancellation.swift create mode 100644 0275-shared-state-pt8/swift-composable-architecture/Sources/ComposableArchitecture/Effects/Debounce.swift create mode 100644 0275-shared-state-pt8/swift-composable-architecture/Sources/ComposableArchitecture/Effects/EffectActions.swift create mode 100644 0275-shared-state-pt8/swift-composable-architecture/Sources/ComposableArchitecture/Effects/Publisher.swift create mode 100644 0275-shared-state-pt8/swift-composable-architecture/Sources/ComposableArchitecture/Effects/TaskResult.swift create mode 100644 0275-shared-state-pt8/swift-composable-architecture/Sources/ComposableArchitecture/Effects/Throttle.swift create mode 100644 0275-shared-state-pt8/swift-composable-architecture/Sources/ComposableArchitecture/Internal/AreOrderedSetsDuplicates.swift create mode 100644 0275-shared-state-pt8/swift-composable-architecture/Sources/ComposableArchitecture/Internal/Binding+IsPresent.swift create mode 100644 0275-shared-state-pt8/swift-composable-architecture/Sources/ComposableArchitecture/Internal/Box.swift create mode 100644 0275-shared-state-pt8/swift-composable-architecture/Sources/ComposableArchitecture/Internal/Create.swift create mode 100644 0275-shared-state-pt8/swift-composable-architecture/Sources/ComposableArchitecture/Internal/CurrentValueRelay.swift create mode 100644 0275-shared-state-pt8/swift-composable-architecture/Sources/ComposableArchitecture/Internal/Debug.swift create mode 100644 0275-shared-state-pt8/swift-composable-architecture/Sources/ComposableArchitecture/Internal/Deprecations.swift create mode 100644 0275-shared-state-pt8/swift-composable-architecture/Sources/ComposableArchitecture/Internal/EphemeralState.swift create mode 100644 0275-shared-state-pt8/swift-composable-architecture/Sources/ComposableArchitecture/Internal/Exports.swift create mode 100644 0275-shared-state-pt8/swift-composable-architecture/Sources/ComposableArchitecture/Internal/Locking.swift create mode 100644 0275-shared-state-pt8/swift-composable-architecture/Sources/ComposableArchitecture/Internal/Logger.swift create mode 100644 0275-shared-state-pt8/swift-composable-architecture/Sources/ComposableArchitecture/Internal/NavigationID.swift create mode 100644 0275-shared-state-pt8/swift-composable-architecture/Sources/ComposableArchitecture/Internal/OpenExistential.swift create mode 100644 0275-shared-state-pt8/swift-composable-architecture/Sources/ComposableArchitecture/Internal/PresentationID.swift create mode 100644 0275-shared-state-pt8/swift-composable-architecture/Sources/ComposableArchitecture/Internal/ReturningLastNonNilValue.swift create mode 100644 0275-shared-state-pt8/swift-composable-architecture/Sources/ComposableArchitecture/Internal/RuntimeWarnings.swift create mode 100644 0275-shared-state-pt8/swift-composable-architecture/Sources/ComposableArchitecture/Internal/StackIDGenerator.swift create mode 100644 0275-shared-state-pt8/swift-composable-architecture/Sources/ComposableArchitecture/Internal/TypeName.swift create mode 100644 0275-shared-state-pt8/swift-composable-architecture/Sources/ComposableArchitecture/Macros.swift create mode 100644 0275-shared-state-pt8/swift-composable-architecture/Sources/ComposableArchitecture/Observation/Alert+Observation.swift create mode 100644 0275-shared-state-pt8/swift-composable-architecture/Sources/ComposableArchitecture/Observation/Binding+Observation.swift create mode 100644 0275-shared-state-pt8/swift-composable-architecture/Sources/ComposableArchitecture/Observation/IdentifiedArray+Observation.swift create mode 100644 0275-shared-state-pt8/swift-composable-architecture/Sources/ComposableArchitecture/Observation/NavigationStack+Observation.swift create mode 100644 0275-shared-state-pt8/swift-composable-architecture/Sources/ComposableArchitecture/Observation/ObservableState.swift create mode 100644 0275-shared-state-pt8/swift-composable-architecture/Sources/ComposableArchitecture/Observation/ObservationStateRegistrar.swift create mode 100644 0275-shared-state-pt8/swift-composable-architecture/Sources/ComposableArchitecture/Observation/Store+Observation.swift create mode 100644 0275-shared-state-pt8/swift-composable-architecture/Sources/ComposableArchitecture/Observation/ViewAction.swift create mode 100644 0275-shared-state-pt8/swift-composable-architecture/Sources/ComposableArchitecture/PersistenceKey.swift create mode 100644 0275-shared-state-pt8/swift-composable-architecture/Sources/ComposableArchitecture/Reducer.swift create mode 100644 0275-shared-state-pt8/swift-composable-architecture/Sources/ComposableArchitecture/Reducer/ReducerBuilder.swift create mode 100644 0275-shared-state-pt8/swift-composable-architecture/Sources/ComposableArchitecture/Reducer/Reducers/BindingReducer.swift create mode 100644 0275-shared-state-pt8/swift-composable-architecture/Sources/ComposableArchitecture/Reducer/Reducers/CombineReducers.swift create mode 100644 0275-shared-state-pt8/swift-composable-architecture/Sources/ComposableArchitecture/Reducer/Reducers/DebugReducer.swift create mode 100644 0275-shared-state-pt8/swift-composable-architecture/Sources/ComposableArchitecture/Reducer/Reducers/DependencyKeyWritingReducer.swift create mode 100644 0275-shared-state-pt8/swift-composable-architecture/Sources/ComposableArchitecture/Reducer/Reducers/EmptyReducer.swift create mode 100644 0275-shared-state-pt8/swift-composable-architecture/Sources/ComposableArchitecture/Reducer/Reducers/ForEachReducer.swift create mode 100644 0275-shared-state-pt8/swift-composable-architecture/Sources/ComposableArchitecture/Reducer/Reducers/IfCaseLetReducer.swift create mode 100644 0275-shared-state-pt8/swift-composable-architecture/Sources/ComposableArchitecture/Reducer/Reducers/IfLetReducer.swift create mode 100644 0275-shared-state-pt8/swift-composable-architecture/Sources/ComposableArchitecture/Reducer/Reducers/OnChange.swift create mode 100644 0275-shared-state-pt8/swift-composable-architecture/Sources/ComposableArchitecture/Reducer/Reducers/Optional.swift create mode 100644 0275-shared-state-pt8/swift-composable-architecture/Sources/ComposableArchitecture/Reducer/Reducers/PresentationReducer.swift create mode 100644 0275-shared-state-pt8/swift-composable-architecture/Sources/ComposableArchitecture/Reducer/Reducers/Reduce.swift create mode 100644 0275-shared-state-pt8/swift-composable-architecture/Sources/ComposableArchitecture/Reducer/Reducers/Scope.swift create mode 100644 0275-shared-state-pt8/swift-composable-architecture/Sources/ComposableArchitecture/Reducer/Reducers/SignpostReducer.swift create mode 100644 0275-shared-state-pt8/swift-composable-architecture/Sources/ComposableArchitecture/Reducer/Reducers/StackReducer.swift create mode 100644 0275-shared-state-pt8/swift-composable-architecture/Sources/ComposableArchitecture/RootStore.swift create mode 100644 0275-shared-state-pt8/swift-composable-architecture/Sources/ComposableArchitecture/Shared.swift create mode 100644 0275-shared-state-pt8/swift-composable-architecture/Sources/ComposableArchitecture/Store.swift create mode 100644 0275-shared-state-pt8/swift-composable-architecture/Sources/ComposableArchitecture/SwiftUI/Alert.swift create mode 100644 0275-shared-state-pt8/swift-composable-architecture/Sources/ComposableArchitecture/SwiftUI/Binding.swift create mode 100644 0275-shared-state-pt8/swift-composable-architecture/Sources/ComposableArchitecture/SwiftUI/ConfirmationDialog.swift create mode 100644 0275-shared-state-pt8/swift-composable-architecture/Sources/ComposableArchitecture/SwiftUI/Deprecated/ActionSheet.swift create mode 100644 0275-shared-state-pt8/swift-composable-architecture/Sources/ComposableArchitecture/SwiftUI/Deprecated/LegacyAlert.swift create mode 100644 0275-shared-state-pt8/swift-composable-architecture/Sources/ComposableArchitecture/SwiftUI/Deprecated/NavigationLinkStore.swift create mode 100644 0275-shared-state-pt8/swift-composable-architecture/Sources/ComposableArchitecture/SwiftUI/ForEachStore.swift create mode 100644 0275-shared-state-pt8/swift-composable-architecture/Sources/ComposableArchitecture/SwiftUI/FullScreenCover.swift create mode 100644 0275-shared-state-pt8/swift-composable-architecture/Sources/ComposableArchitecture/SwiftUI/IfLetStore.swift create mode 100644 0275-shared-state-pt8/swift-composable-architecture/Sources/ComposableArchitecture/SwiftUI/NavigationDestination.swift create mode 100644 0275-shared-state-pt8/swift-composable-architecture/Sources/ComposableArchitecture/SwiftUI/NavigationStackStore.swift create mode 100644 0275-shared-state-pt8/swift-composable-architecture/Sources/ComposableArchitecture/SwiftUI/Popover.swift create mode 100644 0275-shared-state-pt8/swift-composable-architecture/Sources/ComposableArchitecture/SwiftUI/PresentationModifier.swift create mode 100644 0275-shared-state-pt8/swift-composable-architecture/Sources/ComposableArchitecture/SwiftUI/Sheet.swift create mode 100644 0275-shared-state-pt8/swift-composable-architecture/Sources/ComposableArchitecture/SwiftUI/SwitchStore.swift create mode 100644 0275-shared-state-pt8/swift-composable-architecture/Sources/ComposableArchitecture/SwiftUI/WithViewStore.swift create mode 100644 0275-shared-state-pt8/swift-composable-architecture/Sources/ComposableArchitecture/TestStore.swift create mode 100644 0275-shared-state-pt8/swift-composable-architecture/Sources/ComposableArchitecture/UIKit/AlertStateUIKit.swift create mode 100644 0275-shared-state-pt8/swift-composable-architecture/Sources/ComposableArchitecture/UIKit/IfLetUIKit.swift create mode 100644 0275-shared-state-pt8/swift-composable-architecture/Sources/ComposableArchitecture/UIKit/NSObject+Observation.swift create mode 100644 0275-shared-state-pt8/swift-composable-architecture/Sources/ComposableArchitecture/ViewStore.swift create mode 100644 0275-shared-state-pt8/swift-composable-architecture/Sources/ComposableArchitectureMacros/Availability.swift create mode 100644 0275-shared-state-pt8/swift-composable-architecture/Sources/ComposableArchitectureMacros/Extensions.swift create mode 100644 0275-shared-state-pt8/swift-composable-architecture/Sources/ComposableArchitectureMacros/ObservableStateMacro.swift create mode 100644 0275-shared-state-pt8/swift-composable-architecture/Sources/ComposableArchitectureMacros/Plugins.swift create mode 100644 0275-shared-state-pt8/swift-composable-architecture/Sources/ComposableArchitectureMacros/PresentsMacro.swift create mode 100644 0275-shared-state-pt8/swift-composable-architecture/Sources/ComposableArchitectureMacros/ReducerMacro.swift create mode 100644 0275-shared-state-pt8/swift-composable-architecture/Sources/ComposableArchitectureMacros/ViewActionMacro.swift create mode 100644 0275-shared-state-pt8/swift-composable-architecture/Sources/swift-composable-architecture-benchmark/Common.swift create mode 100644 0275-shared-state-pt8/swift-composable-architecture/Sources/swift-composable-architecture-benchmark/Dependencies.swift create mode 100644 0275-shared-state-pt8/swift-composable-architecture/Sources/swift-composable-architecture-benchmark/Effects.swift create mode 100644 0275-shared-state-pt8/swift-composable-architecture/Sources/swift-composable-architecture-benchmark/Observation.swift create mode 100644 0275-shared-state-pt8/swift-composable-architecture/Sources/swift-composable-architecture-benchmark/StoreScope.swift create mode 100644 0275-shared-state-pt8/swift-composable-architecture/Sources/swift-composable-architecture-benchmark/StoreSuite.swift create mode 100644 0275-shared-state-pt8/swift-composable-architecture/Sources/swift-composable-architecture-benchmark/ViewStore.swift create mode 100644 0275-shared-state-pt8/swift-composable-architecture/Sources/swift-composable-architecture-benchmark/main.swift create mode 100644 0275-shared-state-pt8/swift-composable-architecture/Tests/ComposableArchitectureMacrosTests/MacroBaseTestCase.swift create mode 100644 0275-shared-state-pt8/swift-composable-architecture/Tests/ComposableArchitectureMacrosTests/ObservableStateMacroTests.swift create mode 100644 0275-shared-state-pt8/swift-composable-architecture/Tests/ComposableArchitectureMacrosTests/PresentsMacroTests.swift create mode 100644 0275-shared-state-pt8/swift-composable-architecture/Tests/ComposableArchitectureMacrosTests/ReducerMacroTests.swift create mode 100644 0275-shared-state-pt8/swift-composable-architecture/Tests/ComposableArchitectureMacrosTests/ViewActionMacroTests.swift create mode 100644 0275-shared-state-pt8/swift-composable-architecture/Tests/ComposableArchitectureTests/BindableStoreTests.swift create mode 100644 0275-shared-state-pt8/swift-composable-architecture/Tests/ComposableArchitectureTests/BindingLocalTests.swift create mode 100644 0275-shared-state-pt8/swift-composable-architecture/Tests/ComposableArchitectureTests/CompatibilityTests.swift create mode 100644 0275-shared-state-pt8/swift-composable-architecture/Tests/ComposableArchitectureTests/ComposableArchitectureTests.swift create mode 100644 0275-shared-state-pt8/swift-composable-architecture/Tests/ComposableArchitectureTests/DebugTests.swift create mode 100644 0275-shared-state-pt8/swift-composable-architecture/Tests/ComposableArchitectureTests/DependencyKeyWritingReducerTests.swift create mode 100644 0275-shared-state-pt8/swift-composable-architecture/Tests/ComposableArchitectureTests/EffectCancellationTests.swift create mode 100644 0275-shared-state-pt8/swift-composable-architecture/Tests/ComposableArchitectureTests/EffectDebounceTests.swift create mode 100644 0275-shared-state-pt8/swift-composable-architecture/Tests/ComposableArchitectureTests/EffectFailureTests.swift create mode 100644 0275-shared-state-pt8/swift-composable-architecture/Tests/ComposableArchitectureTests/EffectOperationTests.swift create mode 100644 0275-shared-state-pt8/swift-composable-architecture/Tests/ComposableArchitectureTests/EffectRunTests.swift create mode 100644 0275-shared-state-pt8/swift-composable-architecture/Tests/ComposableArchitectureTests/EffectTests.swift create mode 100644 0275-shared-state-pt8/swift-composable-architecture/Tests/ComposableArchitectureTests/Internal/BaseTCATestCase.swift create mode 100644 0275-shared-state-pt8/swift-composable-architecture/Tests/ComposableArchitectureTests/Internal/TestHelpers.swift create mode 100644 0275-shared-state-pt8/swift-composable-architecture/Tests/ComposableArchitectureTests/MacroTests.swift create mode 100644 0275-shared-state-pt8/swift-composable-architecture/Tests/ComposableArchitectureTests/MemoryManagementTests.swift create mode 100644 0275-shared-state-pt8/swift-composable-architecture/Tests/ComposableArchitectureTests/ObservableTests.swift create mode 100644 0275-shared-state-pt8/swift-composable-architecture/Tests/ComposableArchitectureTests/ObserveTests.swift create mode 100644 0275-shared-state-pt8/swift-composable-architecture/Tests/ComposableArchitectureTests/ReducerBuilderTests.swift create mode 100644 0275-shared-state-pt8/swift-composable-architecture/Tests/ComposableArchitectureTests/ReducerTests.swift create mode 100644 0275-shared-state-pt8/swift-composable-architecture/Tests/ComposableArchitectureTests/Reducers/BindingReducerTests.swift create mode 100644 0275-shared-state-pt8/swift-composable-architecture/Tests/ComposableArchitectureTests/Reducers/ForEachReducerTests.swift create mode 100644 0275-shared-state-pt8/swift-composable-architecture/Tests/ComposableArchitectureTests/Reducers/IfCaseLetReducerTests.swift create mode 100644 0275-shared-state-pt8/swift-composable-architecture/Tests/ComposableArchitectureTests/Reducers/IfLetReducerTests.swift create mode 100644 0275-shared-state-pt8/swift-composable-architecture/Tests/ComposableArchitectureTests/Reducers/OnChangeReducerTests.swift create mode 100644 0275-shared-state-pt8/swift-composable-architecture/Tests/ComposableArchitectureTests/Reducers/PresentationReducerTests.swift create mode 100644 0275-shared-state-pt8/swift-composable-architecture/Tests/ComposableArchitectureTests/Reducers/StackReducerTests.swift create mode 100644 0275-shared-state-pt8/swift-composable-architecture/Tests/ComposableArchitectureTests/RuntimeWarningTests.swift create mode 100644 0275-shared-state-pt8/swift-composable-architecture/Tests/ComposableArchitectureTests/ScopeCacheTests.swift create mode 100644 0275-shared-state-pt8/swift-composable-architecture/Tests/ComposableArchitectureTests/ScopeLoggerTests.swift create mode 100644 0275-shared-state-pt8/swift-composable-architecture/Tests/ComposableArchitectureTests/ScopeTests.swift create mode 100644 0275-shared-state-pt8/swift-composable-architecture/Tests/ComposableArchitectureTests/StoreFilterTests.swift create mode 100644 0275-shared-state-pt8/swift-composable-architecture/Tests/ComposableArchitectureTests/StoreLifetimeTests.swift create mode 100644 0275-shared-state-pt8/swift-composable-architecture/Tests/ComposableArchitectureTests/StorePerceptionTests.swift create mode 100644 0275-shared-state-pt8/swift-composable-architecture/Tests/ComposableArchitectureTests/StoreTests.swift create mode 100644 0275-shared-state-pt8/swift-composable-architecture/Tests/ComposableArchitectureTests/TaskCancellationTests.swift create mode 100644 0275-shared-state-pt8/swift-composable-architecture/Tests/ComposableArchitectureTests/TaskResultTests.swift create mode 100644 0275-shared-state-pt8/swift-composable-architecture/Tests/ComposableArchitectureTests/TestStoreFailureTests.swift create mode 100644 0275-shared-state-pt8/swift-composable-architecture/Tests/ComposableArchitectureTests/TestStoreNonExhaustiveTests.swift create mode 100644 0275-shared-state-pt8/swift-composable-architecture/Tests/ComposableArchitectureTests/TestStoreTests.swift create mode 100644 0275-shared-state-pt8/swift-composable-architecture/Tests/ComposableArchitectureTests/ThrottleTests.swift create mode 100644 0275-shared-state-pt8/swift-composable-architecture/Tests/ComposableArchitectureTests/ViewStoreTests.swift diff --git a/0275-shared-state-pt8/README.md b/0275-shared-state-pt8/README.md new file mode 100644 index 00000000..2162a1fe --- /dev/null +++ b/0275-shared-state-pt8/README.md @@ -0,0 +1,5 @@ +## [Point-Free](https://www.pointfree.co) + +> #### This directory contains code from Point-Free Episode: [Shared State: File Storage, Part 1](https://www.pointfree.co/episodes/ep274-shared-state-file-storage-part-1) +> +> While user defaults is convenient for persisting simple bits of state, more complex data types should be saved to the file system. This can be tricky to get right, and so we take the time to properly handle all of the edge cases. diff --git a/0275-shared-state-pt8/swift-composable-architecture/.github/CODE_OF_CONDUCT.md b/0275-shared-state-pt8/swift-composable-architecture/.github/CODE_OF_CONDUCT.md new file mode 100644 index 00000000..6f9886f0 --- /dev/null +++ b/0275-shared-state-pt8/swift-composable-architecture/.github/CODE_OF_CONDUCT.md @@ -0,0 +1,132 @@ +# Contributor Covenant Code of Conduct + +## Our Pledge + +We as members, contributors, and leaders pledge to make participation in our +community a harassment-free experience for everyone, regardless of age, body +size, visible or invisible disability, ethnicity, sex characteristics, gender +identity and expression, level of experience, education, socio-economic status, +nationality, personal appearance, race, caste, color, religion, or sexual +identity and orientation. + +We pledge to act and interact in ways that contribute to an open, welcoming, +diverse, inclusive, and healthy community. + +## Our Standards + +Examples of behavior that contributes to a positive environment for our +community include: + +* Demonstrating empathy and kindness toward other people +* Being respectful of differing opinions, viewpoints, and experiences +* Giving and gracefully accepting constructive feedback +* Accepting responsibility and apologizing to those affected by our mistakes, + and learning from the experience +* Focusing on what is best not just for us as individuals, but for the overall + community + +Examples of unacceptable behavior include: + +* The use of sexualized language or imagery, and sexual attention or advances of + any kind +* Trolling, insulting or derogatory comments, and personal or political attacks +* Public or private harassment +* Publishing others' private information, such as a physical or email address, + without their explicit permission +* Other conduct which could reasonably be considered inappropriate in a + professional setting + +## Enforcement Responsibilities + +Community leaders are responsible for clarifying and enforcing our standards of +acceptable behavior and will take appropriate and fair corrective action in +response to any behavior that they deem inappropriate, threatening, offensive, +or harmful. + +Community leaders have the right and responsibility to remove, edit, or reject +comments, commits, code, wiki edits, issues, and other contributions that are +not aligned to this Code of Conduct, and will communicate reasons for moderation +decisions when appropriate. + +## Scope + +This Code of Conduct applies within all community spaces, and also applies when +an individual is officially representing the community in public spaces. +Examples of representing our community include using an official e-mail address, +posting via an official social media account, or acting as an appointed +representative at an online or offline event. + +## Enforcement + +Instances of abusive, harassing, or otherwise unacceptable behavior may be +reported to the community leaders responsible for enforcement at +. +All complaints will be reviewed and investigated promptly and fairly. + +All community leaders are obligated to respect the privacy and security of the +reporter of any incident. + +## Enforcement Guidelines + +Community leaders will follow these Community Impact Guidelines in determining +the consequences for any action they deem in violation of this Code of Conduct: + +### 1. Correction + +**Community Impact**: Use of inappropriate language or other behavior deemed +unprofessional or unwelcome in the community. + +**Consequence**: A private, written warning from community leaders, providing +clarity around the nature of the violation and an explanation of why the +behavior was inappropriate. A public apology may be requested. + +### 2. Warning + +**Community Impact**: A violation through a single incident or series of +actions. + +**Consequence**: A warning with consequences for continued behavior. No +interaction with the people involved, including unsolicited interaction with +those enforcing the Code of Conduct, for a specified period of time. This +includes avoiding interactions in community spaces as well as external channels +like social media. Violating these terms may lead to a temporary or permanent +ban. + +### 3. Temporary Ban + +**Community Impact**: A serious violation of community standards, including +sustained inappropriate behavior. + +**Consequence**: A temporary ban from any sort of interaction or public +communication with the community for a specified period of time. No public or +private interaction with the people involved, including unsolicited interaction +with those enforcing the Code of Conduct, is allowed during this period. +Violating these terms may lead to a permanent ban. + +### 4. Permanent Ban + +**Community Impact**: Demonstrating a pattern of violation of community +standards, including sustained inappropriate behavior, harassment of an +individual, or aggression toward or disparagement of classes of individuals. + +**Consequence**: A permanent ban from any sort of public interaction within the +community. + +## Attribution + +This Code of Conduct is adapted from the [Contributor Covenant][homepage], +version 2.1, available at +[https://www.contributor-covenant.org/version/2/1/code_of_conduct.html][v2.1]. + +Community Impact Guidelines were inspired by +[Mozilla's code of conduct enforcement ladder][Mozilla CoC]. + +For answers to common questions about this code of conduct, see the FAQ at +[https://www.contributor-covenant.org/faq][FAQ]. Translations are available at +[https://www.contributor-covenant.org/translations][translations]. + +[homepage]: https://www.contributor-covenant.org +[v2.1]: https://www.contributor-covenant.org/version/2/1/code_of_conduct.html +[Mozilla CoC]: https://github.com/mozilla/diversity +[FAQ]: https://www.contributor-covenant.org/faq +[translations]: https://www.contributor-covenant.org/translations diff --git a/0275-shared-state-pt8/swift-composable-architecture/.github/ISSUE_TEMPLATE/bug_report.yml b/0275-shared-state-pt8/swift-composable-architecture/.github/ISSUE_TEMPLATE/bug_report.yml new file mode 100644 index 00000000..c1e65d9d --- /dev/null +++ b/0275-shared-state-pt8/swift-composable-architecture/.github/ISSUE_TEMPLATE/bug_report.yml @@ -0,0 +1,73 @@ +name: Bug Report +description: Something isn't working as expected +labels: [bug] +body: +- type: markdown + attributes: + value: | + Thank you for contributing to the Composable Architecture! + + Before you submit your issue, please complete each text area below with the relevant details for your bug, and complete the steps in the checklist +- type: textarea + attributes: + label: Description + description: | + A short description of the incorrect behavior. + + If you think this issue has been recently introduced and did not occur in an earlier version, please note that. If possible, include the last version that the behavior was correct in addition to your current version. + validations: + required: true +- type: checkboxes + attributes: + label: Checklist + options: + - label: I have determined whether this bug is also reproducible in a vanilla SwiftUI project. + required: false + - label: If possible, I've reproduced the issue using the `main` branch of this package. + required: false + - label: This issue hasn't been addressed in an [existing GitHub issue](https://github.com/pointfreeco/swift-composable-architecture/issues) or [discussion](https://github.com/pointfreeco/swift-composable-architecture/discussions). + required: true +- type: textarea + attributes: + label: Expected behavior + description: Describe what you expected to happen. + validations: + required: false +- type: textarea + attributes: + label: Actual behavior + description: Describe or copy/paste the behavior you observe. + validations: + required: false +- type: textarea + attributes: + label: Steps to reproduce + description: | + Explanation of how to reproduce the incorrect behavior. + + This could include an attached project or link to code that is exhibiting the issue, and/or a screen recording. + placeholder: | + 1. ... + validations: + required: false +- type: input + attributes: + label: The Composable Architecture version information + description: The version of the Composable Architecture used to reproduce this issue. + placeholder: "'0.38.0' for example, or a commit hash" +- type: input + attributes: + label: Destination operating system + description: The OS running your TCA application. + placeholder: "'iOS 15' for example" +- type: input + attributes: + label: Xcode version information + description: The version of Xcode used to reproduce this issue. + placeholder: "The version displayed from 'Xcode 〉About Xcode'" +- type: textarea + attributes: + label: Swift Compiler version information + description: The version of Swift used to reproduce this issue. + placeholder: Output from 'xcrun swiftc --version' + render: shell diff --git a/0275-shared-state-pt8/swift-composable-architecture/.github/ISSUE_TEMPLATE/config.yml b/0275-shared-state-pt8/swift-composable-architecture/.github/ISSUE_TEMPLATE/config.yml new file mode 100644 index 00000000..33bd9665 --- /dev/null +++ b/0275-shared-state-pt8/swift-composable-architecture/.github/ISSUE_TEMPLATE/config.yml @@ -0,0 +1,15 @@ +blank_issues_enabled: false + +contact_links: + - name: Project Discussion + url: https://github.com/pointfreeco/swift-composable-architecture/discussions + about: Composable Architecture Q&A, ideas, and more + - name: Documentation + url: https://pointfreeco.github.io/swift-composable-architecture/main/documentation/composablearchitecture/ + about: Read the Composable Architecture's documentation + - name: Videos + url: https://www.pointfree.co/collections/composable-architecture + about: Watch videos to get a behind-the-scenes look at how the Composable Architecture was motivated and built + - name: Slack + url: https://www.pointfree.co/slack-invite + about: Community chat diff --git a/0275-shared-state-pt8/swift-composable-architecture/.github/package.xcworkspace/contents.xcworkspacedata b/0275-shared-state-pt8/swift-composable-architecture/.github/package.xcworkspace/contents.xcworkspacedata new file mode 100644 index 00000000..0fd0bc31 --- /dev/null +++ b/0275-shared-state-pt8/swift-composable-architecture/.github/package.xcworkspace/contents.xcworkspacedata @@ -0,0 +1,7 @@ + + + + + diff --git a/0275-shared-state-pt8/swift-composable-architecture/.github/package.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist b/0275-shared-state-pt8/swift-composable-architecture/.github/package.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist new file mode 100644 index 00000000..18d98100 --- /dev/null +++ b/0275-shared-state-pt8/swift-composable-architecture/.github/package.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist @@ -0,0 +1,8 @@ + + + + + IDEDidComputeMac32BitWarning + + + diff --git a/0275-shared-state-pt8/swift-composable-architecture/.github/package.xcworkspace/xcshareddata/xcschemes/ComposableArchitecture.xcscheme b/0275-shared-state-pt8/swift-composable-architecture/.github/package.xcworkspace/xcshareddata/xcschemes/ComposableArchitecture.xcscheme new file mode 100644 index 00000000..318b7853 --- /dev/null +++ b/0275-shared-state-pt8/swift-composable-architecture/.github/package.xcworkspace/xcshareddata/xcschemes/ComposableArchitecture.xcscheme @@ -0,0 +1,92 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/0275-shared-state-pt8/swift-composable-architecture/.github/package.xcworkspace/xcshareddata/xcschemes/swift-composable-architecture-benchmark.xcscheme b/0275-shared-state-pt8/swift-composable-architecture/.github/package.xcworkspace/xcshareddata/xcschemes/swift-composable-architecture-benchmark.xcscheme new file mode 100644 index 00000000..9bcb82da --- /dev/null +++ b/0275-shared-state-pt8/swift-composable-architecture/.github/package.xcworkspace/xcshareddata/xcschemes/swift-composable-architecture-benchmark.xcscheme @@ -0,0 +1,104 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/0275-shared-state-pt8/swift-composable-architecture/.github/workflows/ci.yml b/0275-shared-state-pt8/swift-composable-architecture/.github/workflows/ci.yml new file mode 100644 index 00000000..9589ce20 --- /dev/null +++ b/0275-shared-state-pt8/swift-composable-architecture/.github/workflows/ci.yml @@ -0,0 +1,77 @@ +name: CI + +on: + push: + branches: + - main + pull_request: + branches: + - '*' + workflow_dispatch: + +concurrency: + group: ci-${{ github.ref }} + cancel-in-progress: true + +jobs: + library-swift-latest: + name: Library + runs-on: macos-14 + strategy: + matrix: + config: + - debug + - release + steps: + - uses: actions/checkout@v4 + - name: Select Xcode 15.2 + run: sudo xcode-select -s /Applications/Xcode_15.2.app + - name: Build ${{ matrix.config }} + run: make CONFIG=${{ matrix.config }} build-all-platforms + - name: Run ${{ matrix.config }} tests + run: make CONFIG=${{ matrix.config }} test-library + + library-evolution: + name: Library (evolution) + runs-on: macos-13 + steps: + - uses: actions/checkout@v4 + - name: Select Xcode 15.2 + run: sudo xcode-select -s /Applications/Xcode_15.2.app + - name: Build for library evolution + run: make build-for-library-evolution + + library-compatibility: + name: Library (Swift 5.7.1) + runs-on: macos-12 + strategy: + matrix: + config: + - debug + - release + steps: + - uses: actions/checkout@v4 + - name: Select Xcode 14.1 + run: sudo xcode-select -s /Applications/Xcode_14.1.app + - name: Build ${{ matrix.config }} + run: swift build -c ${{ matrix.config }} + + benchmarks: + name: Benchmarks + runs-on: macos-13 + steps: + - uses: actions/checkout@v4 + - name: Select Xcode 15.2 + run: sudo xcode-select -s /Applications/Xcode_15.2.app + - name: Run benchmark + run: make benchmark + + examples: + name: Examples + runs-on: macos-13 + steps: + - uses: actions/checkout@v4 + - name: Select Xcode 15.2 + run: sudo xcode-select -s /Applications/Xcode_15.2.app + - name: Run tests + run: make test-examples diff --git a/0275-shared-state-pt8/swift-composable-architecture/.github/workflows/documentation.yml b/0275-shared-state-pt8/swift-composable-architecture/.github/workflows/documentation.yml new file mode 100644 index 00000000..139d2e4a --- /dev/null +++ b/0275-shared-state-pt8/swift-composable-architecture/.github/workflows/documentation.yml @@ -0,0 +1,74 @@ +# Build and deploy DocC to GitHub pages. Based off of @karwa's work here: +# https://github.com/karwa/swift-url/blob/main/.github/workflows/docs.yml +name: Documentation + +on: + release: + types: + - published + push: + branches: + - main + workflow_dispatch: + +concurrency: + group: docs-${{ github.ref }} + cancel-in-progress: true + +jobs: + build: + runs-on: macos-13 + steps: + - name: Select Xcode 15.1 + run: sudo xcode-select -s /Applications/Xcode_15.1.app + + - name: Checkout Package + uses: actions/checkout@v4 + with: + fetch-depth: 0 + + - name: Checkout gh-pages Branch + uses: actions/checkout@v4 + with: + ref: gh-pages + path: docs-out + + - name: Build documentation + run: > + rm -rf docs-out/.git; + rm -rf docs-out/main; + git tag -l --sort=-v:refname | grep -e "\d\+\.\d\+.0" | tail -n +6 | xargs -I {} rm -rf {}; + + for tag in $(echo "main"; git tag -l --sort=-v:refname | grep -e "\d\+\.\d\+.0" | head -6); + do + if [ -d "docs-out/$tag/data/documentation/composablearchitecture" ] + then + echo "✅ Documentation for "$tag" already exists."; + else + echo "⏳ Generating documentation for ComposableArchitecture @ "$tag" release."; + rm -rf "docs-out/$tag"; + + git checkout .; + git checkout "$tag"; + + swift package \ + --allow-writing-to-directory docs-out/"$tag" \ + generate-documentation \ + --target ComposableArchitecture \ + --output-path docs-out/"$tag" \ + --transform-for-static-hosting \ + --hosting-base-path /swift-composable-architecture/"$tag" \ + && echo "✅ Documentation generated for ComposableArchitecture @ "$tag" release." \ + || echo "⚠️ Documentation skipped for ComposableArchitecture @ "$tag"."; + fi; + done + + - name: Fix permissions + run: 'sudo chown -R $USER docs-out' + + - name: Publish documentation to GitHub Pages + uses: JamesIves/github-pages-deploy-action@4.1.7 + with: + branch: gh-pages + folder: docs-out + single-commit: true diff --git a/0275-shared-state-pt8/swift-composable-architecture/.github/workflows/format.yml b/0275-shared-state-pt8/swift-composable-architecture/.github/workflows/format.yml new file mode 100644 index 00000000..c04d1353 --- /dev/null +++ b/0275-shared-state-pt8/swift-composable-architecture/.github/workflows/format.yml @@ -0,0 +1,29 @@ +name: Format + +on: + push: + branches: + - main + +concurrency: + group: format-${{ github.ref }} + cancel-in-progress: true + +jobs: + swift_format: + name: swift-format + runs-on: macos-13 + steps: + - uses: actions/checkout@v4 + - name: Select Xcode 14.3 + run: sudo xcode-select -s /Applications/Xcode_14.3.app + - name: Install swift-format + run: brew install swift-format + - name: Format + run: make format + - uses: stefanzweifel/git-auto-commit-action@v4 + with: + commit_message: Run swift-format + branch: 'main' + env: + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} diff --git a/0275-shared-state-pt8/swift-composable-architecture/.github/workflows/release.yml b/0275-shared-state-pt8/swift-composable-architecture/.github/workflows/release.yml new file mode 100644 index 00000000..23a4e949 --- /dev/null +++ b/0275-shared-state-pt8/swift-composable-architecture/.github/workflows/release.yml @@ -0,0 +1,83 @@ +name: Release +on: + release: + types: [published] + workflow_dispatch: +jobs: + project-channel: + runs-on: ubuntu-latest + steps: + - name: Dump Github context + env: + GITHUB_CONTEXT: ${{ toJSON(github) }} + run: echo "$GITHUB_CONTEXT" + - name: Slack Notification on SUCCESS + if: success() + uses: tokorom/action-slack-incoming-webhook@main + env: + INCOMING_WEBHOOK_URL: ${{ secrets.SLACK_PROJECT_CHANNEL_WEBHOOK_URL }} + with: + text: swift-composable-architecture ${{ github.event.release.tag_name }} has been released. + blocks: | + [ + { + "type": "header", + "text": { + "type": "plain_text", + "text": "swift-composable-architecture ${{ github.event.release.tag_name}}" + } + }, + { + "type": "section", + "text": { + "type": "mrkdwn", + "text": ${{ toJSON(github.event.release.body) }} + } + }, + { + "type": "section", + "text": { + "type": "mrkdwn", + "text": "${{ github.event.release.html_url }}" + } + } + ] + + releases-channel: + runs-on: ubuntu-latest + steps: + - name: Dump Github context + env: + GITHUB_CONTEXT: ${{ toJSON(github) }} + run: echo "$GITHUB_CONTEXT" + - name: Slack Notification on SUCCESS + if: success() + uses: tokorom/action-slack-incoming-webhook@main + env: + INCOMING_WEBHOOK_URL: ${{ secrets.SLACK_RELEASES_WEBHOOK_URL }} + with: + text: swift-composable-architecture ${{ github.event.release.tag_name }} has been released. + blocks: | + [ + { + "type": "header", + "text": { + "type": "plain_text", + "text": "swift-composable-architecture ${{ github.event.release.tag_name}}" + } + }, + { + "type": "section", + "text": { + "type": "mrkdwn", + "text": ${{ toJSON(github.event.release.body) }} + } + }, + { + "type": "section", + "text": { + "type": "mrkdwn", + "text": "${{ github.event.release.html_url }}" + } + } + ] diff --git a/0275-shared-state-pt8/swift-composable-architecture/.github/workflows/scheduled-ci.yml b/0275-shared-state-pt8/swift-composable-architecture/.github/workflows/scheduled-ci.yml new file mode 100644 index 00000000..a270386c --- /dev/null +++ b/0275-shared-state-pt8/swift-composable-architecture/.github/workflows/scheduled-ci.yml @@ -0,0 +1,15 @@ +on: + schedule: + - cron: '30 8 * * *' + - cron: '30 20 * * *' + +jobs: + integration: + name: Integration + runs-on: macos-13 + steps: + - uses: actions/checkout@v4 + - name: Select Xcode 15.1 + run: sudo xcode-select -s /Applications/Xcode_15.1.app + - name: Run tests + run: make test-integration diff --git a/0275-shared-state-pt8/swift-composable-architecture/.gitignore b/0275-shared-state-pt8/swift-composable-architecture/.gitignore new file mode 100644 index 00000000..ac4e556f --- /dev/null +++ b/0275-shared-state-pt8/swift-composable-architecture/.gitignore @@ -0,0 +1,7 @@ +.DS_Store +/.build +/.swiftpm +/Packages +/*.swiftinterface +/*.xcodeproj +xcuserdata/ diff --git a/0275-shared-state-pt8/swift-composable-architecture/.spi.yml b/0275-shared-state-pt8/swift-composable-architecture/.spi.yml new file mode 100644 index 00000000..0a78973c --- /dev/null +++ b/0275-shared-state-pt8/swift-composable-architecture/.spi.yml @@ -0,0 +1,12 @@ +version: 1 +builder: + configs: + - platform: ios + scheme: ComposableArchitecture + - platform: macos-xcodebuild + scheme: ComposableArchitecture + - platform: tvos + scheme: ComposableArchitecture + - platform: watchos + scheme: ComposableArchitecture + - documentation_targets: [ComposableArchitecture] diff --git a/0275-shared-state-pt8/swift-composable-architecture/ComposableArchitecture.xcworkspace/contents.xcworkspacedata b/0275-shared-state-pt8/swift-composable-architecture/ComposableArchitecture.xcworkspace/contents.xcworkspacedata new file mode 100644 index 00000000..f562e7d0 --- /dev/null +++ b/0275-shared-state-pt8/swift-composable-architecture/ComposableArchitecture.xcworkspace/contents.xcworkspacedata @@ -0,0 +1,31 @@ + + + + + + + + + + + + + + + + + + + + + diff --git a/0275-shared-state-pt8/swift-composable-architecture/ComposableArchitecture.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist b/0275-shared-state-pt8/swift-composable-architecture/ComposableArchitecture.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist new file mode 100644 index 00000000..18d98100 --- /dev/null +++ b/0275-shared-state-pt8/swift-composable-architecture/ComposableArchitecture.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist @@ -0,0 +1,8 @@ + + + + + IDEDidComputeMac32BitWarning + + + diff --git a/0275-shared-state-pt8/swift-composable-architecture/ComposableArchitecture.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings b/0275-shared-state-pt8/swift-composable-architecture/ComposableArchitecture.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings new file mode 100644 index 00000000..08de0be8 --- /dev/null +++ b/0275-shared-state-pt8/swift-composable-architecture/ComposableArchitecture.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings @@ -0,0 +1,8 @@ + + + + + IDEWorkspaceSharedSettings_AutocreateContextsIfNeeded + + + diff --git a/0275-shared-state-pt8/swift-composable-architecture/ComposableArchitecture.xcworkspace/xcshareddata/xcschemes/ComposableArchitecture.xcscheme b/0275-shared-state-pt8/swift-composable-architecture/ComposableArchitecture.xcworkspace/xcshareddata/xcschemes/ComposableArchitecture.xcscheme new file mode 100644 index 00000000..6008215b --- /dev/null +++ b/0275-shared-state-pt8/swift-composable-architecture/ComposableArchitecture.xcworkspace/xcshareddata/xcschemes/ComposableArchitecture.xcscheme @@ -0,0 +1,95 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/0275-shared-state-pt8/swift-composable-architecture/ComposableArchitecture.xcworkspace/xcshareddata/xcschemes/swift-composable-architecture-benchmark.xcscheme b/0275-shared-state-pt8/swift-composable-architecture/ComposableArchitecture.xcworkspace/xcshareddata/xcschemes/swift-composable-architecture-benchmark.xcscheme new file mode 100644 index 00000000..781d50f3 --- /dev/null +++ b/0275-shared-state-pt8/swift-composable-architecture/ComposableArchitecture.xcworkspace/xcshareddata/xcschemes/swift-composable-architecture-benchmark.xcscheme @@ -0,0 +1,88 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/0275-shared-state-pt8/swift-composable-architecture/Examples/.swiftpm/xcode/package.xcworkspace/contents.xcworkspacedata b/0275-shared-state-pt8/swift-composable-architecture/Examples/.swiftpm/xcode/package.xcworkspace/contents.xcworkspacedata new file mode 100644 index 00000000..919434a6 --- /dev/null +++ b/0275-shared-state-pt8/swift-composable-architecture/Examples/.swiftpm/xcode/package.xcworkspace/contents.xcworkspacedata @@ -0,0 +1,7 @@ + + + + + diff --git a/0275-shared-state-pt8/swift-composable-architecture/Examples/CaseStudies/CaseStudies.xcodeproj/project.pbxproj b/0275-shared-state-pt8/swift-composable-architecture/Examples/CaseStudies/CaseStudies.xcodeproj/project.pbxproj new file mode 100644 index 00000000..9d8194c9 --- /dev/null +++ b/0275-shared-state-pt8/swift-composable-architecture/Examples/CaseStudies/CaseStudies.xcodeproj/project.pbxproj @@ -0,0 +1,1262 @@ +// !$*UTF8*$! +{ + archiveVersion = 1; + classes = { + }; + objectVersion = 54; + objects = { + +/* Begin PBXBuildFile section */ + 2AA49B752B97AAC600F3690E /* SignUpFlowTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = 2AA49B742B97AAC600F3690E /* SignUpFlowTests.swift */; }; + 433B8B762A49C9AF0035DEE4 /* 03-Navigation-Multiple-Destinations.swift in Sources */ = {isa = PBXBuildFile; fileRef = 433B8B752A49C9AF0035DEE4 /* 03-Navigation-Multiple-Destinations.swift */; }; + 4BF4745D2B7D75F000A388C0 /* SignUpFlow.swift in Sources */ = {isa = PBXBuildFile; fileRef = 4BF4745C2B7D75F000A388C0 /* SignUpFlow.swift */; }; + 4F5AC11F24ECC7E4009DC50B /* 01-GettingStarted-SharedStateTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = 4F5AC11E24ECC7E4009DC50B /* 01-GettingStarted-SharedStateTests.swift */; }; + CA0C51FB245389CC00A04EAB /* 04-HigherOrderReducers-ReusableOfflineDownloadsTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = CA0C51FA245389CC00A04EAB /* 04-HigherOrderReducers-ReusableOfflineDownloadsTests.swift */; }; + CA25E5D224463AD700DA666A /* 01-GettingStarted-Bindings-Basics.swift in Sources */ = {isa = PBXBuildFile; fileRef = CA25E5D124463AD700DA666A /* 01-GettingStarted-Bindings-Basics.swift */; }; + CA34170824A4E89500FAF950 /* 01-GettingStarted-AnimationsTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = CA34170724A4E89500FAF950 /* 01-GettingStarted-AnimationsTests.swift */; }; + CA3E421F26B8337500581ABC /* 01-GettingStarted-FocusState.swift in Sources */ = {isa = PBXBuildFile; fileRef = CA3E421E26B8337500581ABC /* 01-GettingStarted-FocusState.swift */; }; + CA410EE0247A15FE00E41798 /* 02-Effects-WebSocket.swift in Sources */ = {isa = PBXBuildFile; fileRef = CA410EDF247A15FE00E41798 /* 02-Effects-WebSocket.swift */; }; + CA410EE2247C73B400E41798 /* 02-Effects-WebSocketTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = CA410EE1247C73B400E41798 /* 02-Effects-WebSocketTests.swift */; }; + CA50BE6024A8F46500FE7DBA /* 01-GettingStarted-AlertsAndConfirmationDialogsTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = CA50BE5F24A8F46500FE7DBA /* 01-GettingStarted-AlertsAndConfirmationDialogsTests.swift */; }; + CA5ECF92267A79F0002067FF /* FactClient.swift in Sources */ = {isa = PBXBuildFile; fileRef = CA5ECF91267A79F0002067FF /* FactClient.swift */; }; + CA6AC2642451135C00C71CB3 /* ReusableComponents-Download.swift in Sources */ = {isa = PBXBuildFile; fileRef = CA6AC2602451135C00C71CB3 /* ReusableComponents-Download.swift */; }; + CA6AC2652451135C00C71CB3 /* CircularProgressView.swift in Sources */ = {isa = PBXBuildFile; fileRef = CA6AC2612451135C00C71CB3 /* CircularProgressView.swift */; }; + CA6AC2662451135C00C71CB3 /* DownloadComponent.swift in Sources */ = {isa = PBXBuildFile; fileRef = CA6AC2622451135C00C71CB3 /* DownloadComponent.swift */; }; + CA6AC2672451135C00C71CB3 /* DownloadClient.swift in Sources */ = {isa = PBXBuildFile; fileRef = CA6AC2632451135C00C71CB3 /* DownloadClient.swift */; }; + CA78F0CD28DA47D70026C4AD /* 04-HigherOrderReducers-RecursionTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = CA78F0CC28DA47D70026C4AD /* 04-HigherOrderReducers-RecursionTests.swift */; }; + CA7BC8EE245CCFE4001FB69F /* 01-GettingStarted-SharedState.swift in Sources */ = {isa = PBXBuildFile; fileRef = CA7BC8ED245CCFE4001FB69F /* 01-GettingStarted-SharedState.swift */; }; + CAA9ADC22446587C0003A984 /* 02-Effects-Basics.swift in Sources */ = {isa = PBXBuildFile; fileRef = CAA9ADC12446587C0003A984 /* 02-Effects-Basics.swift */; }; + CAA9ADC424465AB00003A984 /* 02-Effects-BasicsTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = CAA9ADC324465AB00003A984 /* 02-Effects-BasicsTests.swift */; }; + CAA9ADC624465C810003A984 /* 02-Effects-Cancellation.swift in Sources */ = {isa = PBXBuildFile; fileRef = CAA9ADC524465C810003A984 /* 02-Effects-Cancellation.swift */; }; + CAA9ADC824465D950003A984 /* 02-Effects-CancellationTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = CAA9ADC724465D950003A984 /* 02-Effects-CancellationTests.swift */; }; + CAA9ADCA2446605B0003A984 /* 02-Effects-LongLiving.swift in Sources */ = {isa = PBXBuildFile; fileRef = CAA9ADC92446605B0003A984 /* 02-Effects-LongLiving.swift */; }; + CAA9ADCC2446615B0003A984 /* 02-Effects-LongLivingTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = CAA9ADCB2446615B0003A984 /* 02-Effects-LongLivingTests.swift */; }; + CABC4F3926AEE00C00D5FA2C /* 02-Effects-Refreshable.swift in Sources */ = {isa = PBXBuildFile; fileRef = CABC4F3826AEE00C00D5FA2C /* 02-Effects-Refreshable.swift */; }; + CABC4F3B26AEE20200D5FA2C /* 02-Effects-RefreshableTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = CABC4F3A26AEE20200D5FA2C /* 02-Effects-RefreshableTests.swift */; }; + CAE962FD24A7F7BE00EFC025 /* 01-GettingStarted-AlertsAndConfirmationDialogs.swift in Sources */ = {isa = PBXBuildFile; fileRef = CAE962FC24A7F7BE00EFC025 /* 01-GettingStarted-AlertsAndConfirmationDialogs.swift */; }; + CAF88E7324B8E26D00539345 /* AppDelegate.swift in Sources */ = {isa = PBXBuildFile; fileRef = CAF88E7224B8E26D00539345 /* AppDelegate.swift */; }; + CAF88E7524B8E26D00539345 /* RootView.swift in Sources */ = {isa = PBXBuildFile; fileRef = CAF88E7424B8E26D00539345 /* RootView.swift */; }; + CAF88E7724B8E26E00539345 /* Assets.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = CAF88E7624B8E26E00539345 /* Assets.xcassets */; }; + CAF88E8824B8E26E00539345 /* FocusTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = CAF88E8724B8E26E00539345 /* FocusTests.swift */; }; + CAF88E9124B8E3AF00539345 /* ComposableArchitecture in Frameworks */ = {isa = PBXBuildFile; productRef = CAF88E9024B8E3AF00539345 /* ComposableArchitecture */; }; + CAF88E9324B8E3D000539345 /* Core.swift in Sources */ = {isa = PBXBuildFile; fileRef = CAF88E9224B8E3D000539345 /* Core.swift */; }; + CAF88E9524B8E4D500539345 /* FocusView.swift in Sources */ = {isa = PBXBuildFile; fileRef = CAF88E9424B8E4D500539345 /* FocusView.swift */; }; + DC07231724465D1E003A8B65 /* 02-Effects-TimersTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = DC07231624465D1E003A8B65 /* 02-Effects-TimersTests.swift */; }; + DC072322244663B1003A8B65 /* 03-Navigation-Sheet-LoadThenPresent.swift in Sources */ = {isa = PBXBuildFile; fileRef = DC072321244663B1003A8B65 /* 03-Navigation-Sheet-LoadThenPresent.swift */; }; + DC13940E2469E25C00EE1157 /* ComposableArchitecture in Frameworks */ = {isa = PBXBuildFile; productRef = DC13940D2469E25C00EE1157 /* ComposableArchitecture */; }; + DC1394102469E27300EE1157 /* ComposableArchitecture in Frameworks */ = {isa = PBXBuildFile; productRef = DC13940F2469E27300EE1157 /* ComposableArchitecture */; }; + DC25DC5F2450F13200082E81 /* IfLetStoreController.swift in Sources */ = {isa = PBXBuildFile; fileRef = DC25DC5E2450F13200082E81 /* IfLetStoreController.swift */; }; + DC25DC612450F2B000082E81 /* LoadThenNavigate.swift in Sources */ = {isa = PBXBuildFile; fileRef = DC25DC602450F2B000082E81 /* LoadThenNavigate.swift */; }; + DC25DC642450F2DF00082E81 /* ActivityIndicatorViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = DC25DC632450F2DF00082E81 /* ActivityIndicatorViewController.swift */; }; + DC27215625BF84FC00D9C8DB /* 01-GettingStarted-BindingBasicsTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = DC27215525BF84FC00D9C8DB /* 01-GettingStarted-BindingBasicsTests.swift */; }; + DC3C87B029A48C4D004D9104 /* 03-NavigationStack.swift in Sources */ = {isa = PBXBuildFile; fileRef = DC3C87AF29A48C4D004D9104 /* 03-NavigationStack.swift */; }; + DC4C6EAC2450DD380066A05D /* SceneDelegate.swift in Sources */ = {isa = PBXBuildFile; fileRef = DC4C6EAB2450DD380066A05D /* SceneDelegate.swift */; }; + DC4C6EAE2450DD380066A05D /* RootViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = DC4C6EAD2450DD380066A05D /* RootViewController.swift */; }; + DC4C6EB02450DD380066A05D /* Assets.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = DC4C6EAF2450DD380066A05D /* Assets.xcassets */; }; + DC4C6EB32450DD380066A05D /* Preview Assets.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = DC4C6EB22450DD380066A05D /* Preview Assets.xcassets */; }; + DC4C6EB62450DD380066A05D /* LaunchScreen.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = DC4C6EB42450DD380066A05D /* LaunchScreen.storyboard */; }; + DC4C6EC12450DD390066A05D /* UIKitCaseStudiesTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = DC4C6EC02450DD390066A05D /* UIKitCaseStudiesTests.swift */; }; + DC4C6ED62450E1050066A05D /* CounterViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = DC4C6ED52450E1050066A05D /* CounterViewController.swift */; }; + DC4C6EDA2450E6050066A05D /* NavigateAndLoad.swift in Sources */ = {isa = PBXBuildFile; fileRef = DC4C6ED92450E6050066A05D /* NavigateAndLoad.swift */; }; + DC5B505125C86EBC000D8DFD /* 01-GettingStarted-Bindings-Forms.swift in Sources */ = {isa = PBXBuildFile; fileRef = DC5B505025C86EBC000D8DFD /* 01-GettingStarted-Bindings-Forms.swift */; }; + DC630FDA2451016B00BAECBA /* ListsOfState.swift in Sources */ = {isa = PBXBuildFile; fileRef = DC630FD92451016B00BAECBA /* ListsOfState.swift */; }; + DC634B252448D15B00DAA016 /* 04-HigherOrderReducers-ReusableFavoritingTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = DC634B242448D15B00DAA016 /* 04-HigherOrderReducers-ReusableFavoritingTests.swift */; }; + DC85EBC3285A731E00431CF3 /* ResignFirstResponder.swift in Sources */ = {isa = PBXBuildFile; fileRef = DC85EBC2285A731E00431CF3 /* ResignFirstResponder.swift */; }; + DC88D8A6245341EC0077F427 /* 01-GettingStarted-Animations.swift in Sources */ = {isa = PBXBuildFile; fileRef = DC88D8A5245341EC0077F427 /* 01-GettingStarted-Animations.swift */; }; + DC89C41B24460F95006900B9 /* 00-RootView.swift in Sources */ = {isa = PBXBuildFile; fileRef = DC89C41A24460F95006900B9 /* 00-RootView.swift */; }; + DC89C41D24460F96006900B9 /* Assets.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = DC89C41C24460F96006900B9 /* Assets.xcassets */; }; + DC89C4442446111B006900B9 /* 01-GettingStarted-Counter.swift in Sources */ = {isa = PBXBuildFile; fileRef = DC89C4432446111B006900B9 /* 01-GettingStarted-Counter.swift */; }; + DC89C44D244621A5006900B9 /* 03-Navigation-NavigateAndLoad.swift in Sources */ = {isa = PBXBuildFile; fileRef = DC89C44C244621A5006900B9 /* 03-Navigation-NavigateAndLoad.swift */; }; + DC89C45324465452006900B9 /* 03-Navigation-Lists-NavigateAndLoad.swift in Sources */ = {isa = PBXBuildFile; fileRef = DC89C45224465451006900B9 /* 03-Navigation-Lists-NavigateAndLoad.swift */; }; + DC89C45524465C44006900B9 /* 02-Effects-Timers.swift in Sources */ = {isa = PBXBuildFile; fileRef = DC89C45424465C44006900B9 /* 02-Effects-Timers.swift */; }; + DC9EB4172450CBD2005F413B /* UIViewRepresented.swift in Sources */ = {isa = PBXBuildFile; fileRef = DC9EB4162450CBD2005F413B /* UIViewRepresented.swift */; }; + DCC68EAB244666AF0037F998 /* 03-Navigation-Sheet-PresentAndLoad.swift in Sources */ = {isa = PBXBuildFile; fileRef = DCC68EAA244666AF0037F998 /* 03-Navigation-Sheet-PresentAndLoad.swift */; }; + DCC68EDD2447A5B00037F998 /* 01-GettingStarted-OptionalState.swift in Sources */ = {isa = PBXBuildFile; fileRef = DCC68EDC2447A5B00037F998 /* 01-GettingStarted-OptionalState.swift */; }; + DCC68EDF2447BC810037F998 /* TemplateText.swift in Sources */ = {isa = PBXBuildFile; fileRef = DCC68EDE2447BC810037F998 /* TemplateText.swift */; }; + DCC68EE12447C4630037F998 /* 01-GettingStarted-Composition-TwoCounters.swift in Sources */ = {isa = PBXBuildFile; fileRef = DCC68EE02447C4630037F998 /* 01-GettingStarted-Composition-TwoCounters.swift */; }; + DCC68EE32447C8540037F998 /* 04-HigherOrderReducers-ReusableFavoriting.swift in Sources */ = {isa = PBXBuildFile; fileRef = DCC68EE22447C8540037F998 /* 04-HigherOrderReducers-ReusableFavoriting.swift */; }; + DCD442C6286CA91F008B4EA7 /* AboutView.swift in Sources */ = {isa = PBXBuildFile; fileRef = DCD442C5286CA91F008B4EA7 /* AboutView.swift */; }; + DCE63B71245CC0B90080A23D /* 04-HigherOrderReducers-Recursion.swift in Sources */ = {isa = PBXBuildFile; fileRef = DCE63B70245CC0B90080A23D /* 04-HigherOrderReducers-Recursion.swift */; }; + DCFE1960278DBF0600C14CCF /* CaseStudiesApp.swift in Sources */ = {isa = PBXBuildFile; fileRef = DCFE195F278DBF0600C14CCF /* CaseStudiesApp.swift */; }; +/* End PBXBuildFile section */ + +/* Begin PBXContainerItemProxy section */ + CAF88E8424B8E26E00539345 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = DC89C40B24460F95006900B9 /* Project object */; + proxyType = 1; + remoteGlobalIDString = CAF88E6F24B8E26D00539345; + remoteInfo = tvOSCaseStudies; + }; + DC4C6EBD2450DD390066A05D /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = DC89C40B24460F95006900B9 /* Project object */; + proxyType = 1; + remoteGlobalIDString = DC4C6EA62450DD380066A05D; + remoteInfo = UIKitCaseStudies; + }; + DC89C42A24460F96006900B9 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = DC89C40B24460F95006900B9 /* Project object */; + proxyType = 1; + remoteGlobalIDString = DC89C41224460F95006900B9; + remoteInfo = CaseStudies; + }; +/* End PBXContainerItemProxy section */ + +/* Begin PBXCopyFilesBuildPhase section */ + DC4C6ECD2450E0B30066A05D /* Embed Frameworks */ = { + isa = PBXCopyFilesBuildPhase; + buildActionMask = 2147483647; + dstPath = ""; + dstSubfolderSpec = 10; + files = ( + ); + name = "Embed Frameworks"; + runOnlyForDeploymentPostprocessing = 0; + }; + DC4C6ED32450E0BA0066A05D /* Embed Frameworks */ = { + isa = PBXCopyFilesBuildPhase; + buildActionMask = 2147483647; + dstPath = ""; + dstSubfolderSpec = 10; + files = ( + ); + name = "Embed Frameworks"; + runOnlyForDeploymentPostprocessing = 0; + }; + DC89C43D2446106D006900B9 /* Embed Frameworks */ = { + isa = PBXCopyFilesBuildPhase; + buildActionMask = 2147483647; + dstPath = ""; + dstSubfolderSpec = 10; + files = ( + ); + name = "Embed Frameworks"; + runOnlyForDeploymentPostprocessing = 0; + }; + DC89C44124461077006900B9 /* Embed Frameworks */ = { + isa = PBXCopyFilesBuildPhase; + buildActionMask = 2147483647; + dstPath = ""; + dstSubfolderSpec = 10; + files = ( + ); + name = "Embed Frameworks"; + runOnlyForDeploymentPostprocessing = 0; + }; +/* End PBXCopyFilesBuildPhase section */ + +/* Begin PBXFileReference section */ + 2AA49B742B97AAC600F3690E /* SignUpFlowTests.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = SignUpFlowTests.swift; sourceTree = ""; }; + 433B8B752A49C9AF0035DEE4 /* 03-Navigation-Multiple-Destinations.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "03-Navigation-Multiple-Destinations.swift"; sourceTree = ""; }; + 4BF4745C2B7D75F000A388C0 /* SignUpFlow.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = SignUpFlow.swift; sourceTree = ""; }; + 4F5AC11E24ECC7E4009DC50B /* 01-GettingStarted-SharedStateTests.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "01-GettingStarted-SharedStateTests.swift"; sourceTree = ""; }; + CA0C51FA245389CC00A04EAB /* 04-HigherOrderReducers-ReusableOfflineDownloadsTests.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "04-HigherOrderReducers-ReusableOfflineDownloadsTests.swift"; sourceTree = ""; }; + CA25E5D124463AD700DA666A /* 01-GettingStarted-Bindings-Basics.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "01-GettingStarted-Bindings-Basics.swift"; sourceTree = ""; }; + CA34170724A4E89500FAF950 /* 01-GettingStarted-AnimationsTests.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "01-GettingStarted-AnimationsTests.swift"; sourceTree = ""; }; + CA3E421E26B8337500581ABC /* 01-GettingStarted-FocusState.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "01-GettingStarted-FocusState.swift"; sourceTree = ""; }; + CA410EDF247A15FE00E41798 /* 02-Effects-WebSocket.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "02-Effects-WebSocket.swift"; sourceTree = ""; }; + CA410EE1247C73B400E41798 /* 02-Effects-WebSocketTests.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "02-Effects-WebSocketTests.swift"; sourceTree = ""; }; + CA50BE5F24A8F46500FE7DBA /* 01-GettingStarted-AlertsAndConfirmationDialogsTests.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "01-GettingStarted-AlertsAndConfirmationDialogsTests.swift"; sourceTree = ""; }; + CA5ECF91267A79F0002067FF /* FactClient.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = FactClient.swift; sourceTree = ""; }; + CA6AC2602451135C00C71CB3 /* ReusableComponents-Download.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = "ReusableComponents-Download.swift"; sourceTree = ""; }; + CA6AC2612451135C00C71CB3 /* CircularProgressView.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = CircularProgressView.swift; sourceTree = ""; }; + CA6AC2622451135C00C71CB3 /* DownloadComponent.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = DownloadComponent.swift; sourceTree = ""; }; + CA6AC2632451135C00C71CB3 /* DownloadClient.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = DownloadClient.swift; sourceTree = ""; }; + CA78F0CC28DA47D70026C4AD /* 04-HigherOrderReducers-RecursionTests.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "04-HigherOrderReducers-RecursionTests.swift"; sourceTree = ""; }; + CA7BC8ED245CCFE4001FB69F /* 01-GettingStarted-SharedState.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "01-GettingStarted-SharedState.swift"; sourceTree = ""; }; + CAA9ADC12446587C0003A984 /* 02-Effects-Basics.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "02-Effects-Basics.swift"; sourceTree = ""; }; + CAA9ADC324465AB00003A984 /* 02-Effects-BasicsTests.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "02-Effects-BasicsTests.swift"; sourceTree = ""; }; + CAA9ADC524465C810003A984 /* 02-Effects-Cancellation.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "02-Effects-Cancellation.swift"; sourceTree = ""; }; + CAA9ADC724465D950003A984 /* 02-Effects-CancellationTests.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "02-Effects-CancellationTests.swift"; sourceTree = ""; }; + CAA9ADC92446605B0003A984 /* 02-Effects-LongLiving.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "02-Effects-LongLiving.swift"; sourceTree = ""; }; + CAA9ADCB2446615B0003A984 /* 02-Effects-LongLivingTests.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "02-Effects-LongLivingTests.swift"; sourceTree = ""; }; + CABC4F3826AEE00C00D5FA2C /* 02-Effects-Refreshable.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "02-Effects-Refreshable.swift"; sourceTree = ""; }; + CABC4F3A26AEE20200D5FA2C /* 02-Effects-RefreshableTests.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "02-Effects-RefreshableTests.swift"; sourceTree = ""; }; + CAE962FC24A7F7BE00EFC025 /* 01-GettingStarted-AlertsAndConfirmationDialogs.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "01-GettingStarted-AlertsAndConfirmationDialogs.swift"; sourceTree = ""; }; + CAF88E7024B8E26D00539345 /* tvOSCaseStudies.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = tvOSCaseStudies.app; sourceTree = BUILT_PRODUCTS_DIR; }; + CAF88E7224B8E26D00539345 /* AppDelegate.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = AppDelegate.swift; sourceTree = ""; }; + CAF88E7424B8E26D00539345 /* RootView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = RootView.swift; sourceTree = ""; }; + CAF88E7624B8E26E00539345 /* Assets.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; path = Assets.xcassets; sourceTree = ""; }; + CAF88E7E24B8E26E00539345 /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = ""; }; + CAF88E8324B8E26E00539345 /* tvOSCaseStudiesTests.xctest */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = tvOSCaseStudiesTests.xctest; sourceTree = BUILT_PRODUCTS_DIR; }; + CAF88E8724B8E26E00539345 /* FocusTests.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = FocusTests.swift; sourceTree = ""; }; + CAF88E9224B8E3D000539345 /* Core.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = Core.swift; sourceTree = ""; }; + CAF88E9424B8E4D500539345 /* FocusView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = FocusView.swift; sourceTree = ""; }; + DC07231624465D1E003A8B65 /* 02-Effects-TimersTests.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "02-Effects-TimersTests.swift"; sourceTree = ""; }; + DC072321244663B1003A8B65 /* 03-Navigation-Sheet-LoadThenPresent.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "03-Navigation-Sheet-LoadThenPresent.swift"; sourceTree = ""; }; + DC25DC5E2450F13200082E81 /* IfLetStoreController.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = IfLetStoreController.swift; sourceTree = ""; }; + DC25DC602450F2B000082E81 /* LoadThenNavigate.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = LoadThenNavigate.swift; sourceTree = ""; }; + DC25DC632450F2DF00082E81 /* ActivityIndicatorViewController.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ActivityIndicatorViewController.swift; sourceTree = ""; }; + DC27215525BF84FC00D9C8DB /* 01-GettingStarted-BindingBasicsTests.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "01-GettingStarted-BindingBasicsTests.swift"; sourceTree = ""; }; + DC3C87AF29A48C4D004D9104 /* 03-NavigationStack.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "03-NavigationStack.swift"; sourceTree = ""; }; + DC4C6EA72450DD380066A05D /* UIKitCaseStudies.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = UIKitCaseStudies.app; sourceTree = BUILT_PRODUCTS_DIR; }; + DC4C6EAB2450DD380066A05D /* SceneDelegate.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = SceneDelegate.swift; sourceTree = ""; }; + DC4C6EAD2450DD380066A05D /* RootViewController.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = RootViewController.swift; sourceTree = ""; }; + DC4C6EAF2450DD380066A05D /* Assets.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; path = Assets.xcassets; sourceTree = ""; }; + DC4C6EB22450DD380066A05D /* Preview Assets.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; path = "Preview Assets.xcassets"; sourceTree = ""; }; + DC4C6EB52450DD380066A05D /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.storyboard; name = Base; path = Base.lproj/LaunchScreen.storyboard; sourceTree = ""; }; + DC4C6EB72450DD380066A05D /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = ""; }; + DC4C6EBC2450DD390066A05D /* UIKitCaseStudiesTests.xctest */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = UIKitCaseStudiesTests.xctest; sourceTree = BUILT_PRODUCTS_DIR; }; + DC4C6EC02450DD390066A05D /* UIKitCaseStudiesTests.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = UIKitCaseStudiesTests.swift; sourceTree = ""; }; + DC4C6EC22450DD390066A05D /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = ""; }; + DC4C6ED52450E1050066A05D /* CounterViewController.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = CounterViewController.swift; sourceTree = ""; }; + DC4C6ED92450E6050066A05D /* NavigateAndLoad.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = NavigateAndLoad.swift; sourceTree = ""; }; + DC5B505025C86EBC000D8DFD /* 01-GettingStarted-Bindings-Forms.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "01-GettingStarted-Bindings-Forms.swift"; sourceTree = ""; }; + DC630FD92451016B00BAECBA /* ListsOfState.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ListsOfState.swift; sourceTree = ""; }; + DC634B242448D15B00DAA016 /* 04-HigherOrderReducers-ReusableFavoritingTests.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "04-HigherOrderReducers-ReusableFavoritingTests.swift"; sourceTree = ""; }; + DC85EBC2285A731E00431CF3 /* ResignFirstResponder.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ResignFirstResponder.swift; sourceTree = ""; }; + DC88D8A5245341EC0077F427 /* 01-GettingStarted-Animations.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "01-GettingStarted-Animations.swift"; sourceTree = ""; }; + DC89C41324460F95006900B9 /* SwiftUICaseStudies.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = SwiftUICaseStudies.app; sourceTree = BUILT_PRODUCTS_DIR; }; + DC89C41A24460F95006900B9 /* 00-RootView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "00-RootView.swift"; sourceTree = ""; }; + DC89C41C24460F96006900B9 /* Assets.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; path = Assets.xcassets; sourceTree = ""; }; + DC89C42424460F96006900B9 /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = ""; }; + DC89C42924460F96006900B9 /* SwiftUICaseStudiesTests.xctest */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = SwiftUICaseStudiesTests.xctest; sourceTree = BUILT_PRODUCTS_DIR; }; + DC89C43824460FC7006900B9 /* swift-composable-architecture */ = {isa = PBXFileReference; lastKnownFileType = folder; name = "swift-composable-architecture"; path = ../..; sourceTree = ""; }; + DC89C43924460FFF006900B9 /* README.md */ = {isa = PBXFileReference; lastKnownFileType = net.daringfireball.markdown; path = README.md; sourceTree = ""; }; + DC89C4432446111B006900B9 /* 01-GettingStarted-Counter.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "01-GettingStarted-Counter.swift"; sourceTree = ""; }; + DC89C44C244621A5006900B9 /* 03-Navigation-NavigateAndLoad.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "03-Navigation-NavigateAndLoad.swift"; sourceTree = ""; }; + DC89C45224465451006900B9 /* 03-Navigation-Lists-NavigateAndLoad.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "03-Navigation-Lists-NavigateAndLoad.swift"; sourceTree = ""; }; + DC89C45424465C44006900B9 /* 02-Effects-Timers.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "02-Effects-Timers.swift"; sourceTree = ""; }; + DC9EB4162450CBD2005F413B /* UIViewRepresented.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = UIViewRepresented.swift; sourceTree = ""; }; + DCC68EAA244666AF0037F998 /* 03-Navigation-Sheet-PresentAndLoad.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "03-Navigation-Sheet-PresentAndLoad.swift"; sourceTree = ""; }; + DCC68EDC2447A5B00037F998 /* 01-GettingStarted-OptionalState.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "01-GettingStarted-OptionalState.swift"; sourceTree = ""; }; + DCC68EDE2447BC810037F998 /* TemplateText.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = TemplateText.swift; sourceTree = ""; }; + DCC68EE02447C4630037F998 /* 01-GettingStarted-Composition-TwoCounters.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "01-GettingStarted-Composition-TwoCounters.swift"; sourceTree = ""; }; + DCC68EE22447C8540037F998 /* 04-HigherOrderReducers-ReusableFavoriting.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "04-HigherOrderReducers-ReusableFavoriting.swift"; sourceTree = ""; }; + DCD442C5286CA91F008B4EA7 /* AboutView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = AboutView.swift; sourceTree = ""; }; + DCE63B70245CC0B90080A23D /* 04-HigherOrderReducers-Recursion.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "04-HigherOrderReducers-Recursion.swift"; sourceTree = ""; }; + DCFE195F278DBF0600C14CCF /* CaseStudiesApp.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = CaseStudiesApp.swift; sourceTree = ""; }; +/* End PBXFileReference section */ + +/* Begin PBXFrameworksBuildPhase section */ + CAF88E6D24B8E26D00539345 /* Frameworks */ = { + isa = PBXFrameworksBuildPhase; + buildActionMask = 2147483647; + files = ( + CAF88E9124B8E3AF00539345 /* ComposableArchitecture in Frameworks */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + CAF88E8024B8E26E00539345 /* Frameworks */ = { + isa = PBXFrameworksBuildPhase; + buildActionMask = 2147483647; + files = ( + ); + runOnlyForDeploymentPostprocessing = 0; + }; + DC4C6EA42450DD380066A05D /* Frameworks */ = { + isa = PBXFrameworksBuildPhase; + buildActionMask = 2147483647; + files = ( + DC1394102469E27300EE1157 /* ComposableArchitecture in Frameworks */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + DC4C6EB92450DD390066A05D /* Frameworks */ = { + isa = PBXFrameworksBuildPhase; + buildActionMask = 2147483647; + files = ( + ); + runOnlyForDeploymentPostprocessing = 0; + }; + DC89C41024460F95006900B9 /* Frameworks */ = { + isa = PBXFrameworksBuildPhase; + buildActionMask = 2147483647; + files = ( + DC13940E2469E25C00EE1157 /* ComposableArchitecture in Frameworks */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + DC89C42624460F96006900B9 /* Frameworks */ = { + isa = PBXFrameworksBuildPhase; + buildActionMask = 2147483647; + files = ( + ); + runOnlyForDeploymentPostprocessing = 0; + }; +/* End PBXFrameworksBuildPhase section */ + +/* Begin PBXGroup section */ + CA6AC25F2451131C00C71CB3 /* 04-HigherOrderReducers-ResuableOfflineDownloads */ = { + isa = PBXGroup; + children = ( + CA6AC2632451135C00C71CB3 /* DownloadClient.swift */, + CA6AC2622451135C00C71CB3 /* DownloadComponent.swift */, + CA6AC2602451135C00C71CB3 /* ReusableComponents-Download.swift */, + ); + path = "04-HigherOrderReducers-ResuableOfflineDownloads"; + sourceTree = ""; + }; + CAF88E7124B8E26D00539345 /* tvOSCaseStudies */ = { + isa = PBXGroup; + children = ( + CAF88E7E24B8E26E00539345 /* Info.plist */, + CAF88E7224B8E26D00539345 /* AppDelegate.swift */, + CAF88E9424B8E4D500539345 /* FocusView.swift */, + CAF88E9224B8E3D000539345 /* Core.swift */, + CAF88E7424B8E26D00539345 /* RootView.swift */, + CAF88E7624B8E26E00539345 /* Assets.xcassets */, + ); + path = tvOSCaseStudies; + sourceTree = ""; + }; + CAF88E8624B8E26E00539345 /* tvOSCaseStudiesTests */ = { + isa = PBXGroup; + children = ( + CAF88E8724B8E26E00539345 /* FocusTests.swift */, + ); + path = tvOSCaseStudiesTests; + sourceTree = ""; + }; + DC25DC622450F2D100082E81 /* Internal */ = { + isa = PBXGroup; + children = ( + DC25DC632450F2DF00082E81 /* ActivityIndicatorViewController.swift */, + DC25DC5E2450F13200082E81 /* IfLetStoreController.swift */, + ); + path = Internal; + sourceTree = ""; + }; + DC4C6EA82450DD380066A05D /* UIKitCaseStudies */ = { + isa = PBXGroup; + children = ( + DC4C6EAB2450DD380066A05D /* SceneDelegate.swift */, + DC4C6EAD2450DD380066A05D /* RootViewController.swift */, + DC4C6ED52450E1050066A05D /* CounterViewController.swift */, + DC630FD92451016B00BAECBA /* ListsOfState.swift */, + DC4C6ED92450E6050066A05D /* NavigateAndLoad.swift */, + DC25DC602450F2B000082E81 /* LoadThenNavigate.swift */, + DC25DC622450F2D100082E81 /* Internal */, + DC4C6EAF2450DD380066A05D /* Assets.xcassets */, + DC4C6EB42450DD380066A05D /* LaunchScreen.storyboard */, + DC4C6EB72450DD380066A05D /* Info.plist */, + DC4C6EB12450DD380066A05D /* Preview Content */, + ); + path = UIKitCaseStudies; + sourceTree = ""; + }; + DC4C6EB12450DD380066A05D /* Preview Content */ = { + isa = PBXGroup; + children = ( + DC4C6EB22450DD380066A05D /* Preview Assets.xcassets */, + ); + path = "Preview Content"; + sourceTree = ""; + }; + DC4C6EBF2450DD390066A05D /* UIKitCaseStudiesTests */ = { + isa = PBXGroup; + children = ( + DC4C6EC02450DD390066A05D /* UIKitCaseStudiesTests.swift */, + DC4C6EC22450DD390066A05D /* Info.plist */, + ); + path = UIKitCaseStudiesTests; + sourceTree = ""; + }; + DC89C40A24460F95006900B9 = { + isa = PBXGroup; + children = ( + DC89C43824460FC7006900B9 /* swift-composable-architecture */, + DC89C43924460FFF006900B9 /* README.md */, + DC89C41424460F95006900B9 /* Products */, + DC89C41524460F95006900B9 /* SwiftUICaseStudies */, + DC89C42C24460F96006900B9 /* SwiftUICaseStudiesTests */, + CAF88E7124B8E26D00539345 /* tvOSCaseStudies */, + CAF88E8624B8E26E00539345 /* tvOSCaseStudiesTests */, + DC4C6EA82450DD380066A05D /* UIKitCaseStudies */, + DC4C6EBF2450DD390066A05D /* UIKitCaseStudiesTests */, + ); + sourceTree = ""; + }; + DC89C41424460F95006900B9 /* Products */ = { + isa = PBXGroup; + children = ( + DC89C41324460F95006900B9 /* SwiftUICaseStudies.app */, + DC89C42924460F96006900B9 /* SwiftUICaseStudiesTests.xctest */, + DC4C6EA72450DD380066A05D /* UIKitCaseStudies.app */, + DC4C6EBC2450DD390066A05D /* UIKitCaseStudiesTests.xctest */, + CAF88E7024B8E26D00539345 /* tvOSCaseStudies.app */, + CAF88E8324B8E26E00539345 /* tvOSCaseStudiesTests.xctest */, + ); + name = Products; + sourceTree = ""; + }; + DC89C41524460F95006900B9 /* SwiftUICaseStudies */ = { + isa = PBXGroup; + children = ( + DC89C42424460F96006900B9 /* Info.plist */, + 4BF4745C2B7D75F000A388C0 /* SignUpFlow.swift */, + DC89C41A24460F95006900B9 /* 00-RootView.swift */, + CAE962FC24A7F7BE00EFC025 /* 01-GettingStarted-AlertsAndConfirmationDialogs.swift */, + DC88D8A5245341EC0077F427 /* 01-GettingStarted-Animations.swift */, + CA25E5D124463AD700DA666A /* 01-GettingStarted-Bindings-Basics.swift */, + DC5B505025C86EBC000D8DFD /* 01-GettingStarted-Bindings-Forms.swift */, + DCC68EE02447C4630037F998 /* 01-GettingStarted-Composition-TwoCounters.swift */, + DC89C4432446111B006900B9 /* 01-GettingStarted-Counter.swift */, + CA3E421E26B8337500581ABC /* 01-GettingStarted-FocusState.swift */, + DCC68EDC2447A5B00037F998 /* 01-GettingStarted-OptionalState.swift */, + CA7BC8ED245CCFE4001FB69F /* 01-GettingStarted-SharedState.swift */, + CAA9ADC12446587C0003A984 /* 02-Effects-Basics.swift */, + CAA9ADC524465C810003A984 /* 02-Effects-Cancellation.swift */, + CAA9ADC92446605B0003A984 /* 02-Effects-LongLiving.swift */, + CABC4F3826AEE00C00D5FA2C /* 02-Effects-Refreshable.swift */, + DC89C45424465C44006900B9 /* 02-Effects-Timers.swift */, + CA410EDF247A15FE00E41798 /* 02-Effects-WebSocket.swift */, + DC89C45224465451006900B9 /* 03-Navigation-Lists-NavigateAndLoad.swift */, + DC89C44C244621A5006900B9 /* 03-Navigation-NavigateAndLoad.swift */, + DC072321244663B1003A8B65 /* 03-Navigation-Sheet-LoadThenPresent.swift */, + DCC68EAA244666AF0037F998 /* 03-Navigation-Sheet-PresentAndLoad.swift */, + 433B8B752A49C9AF0035DEE4 /* 03-Navigation-Multiple-Destinations.swift */, + DC3C87AF29A48C4D004D9104 /* 03-NavigationStack.swift */, + DCE63B70245CC0B90080A23D /* 04-HigherOrderReducers-Recursion.swift */, + DCC68EE22447C8540037F998 /* 04-HigherOrderReducers-ReusableFavoriting.swift */, + DCFE195F278DBF0600C14CCF /* CaseStudiesApp.swift */, + CA5ECF91267A79F0002067FF /* FactClient.swift */, + DC89C41C24460F96006900B9 /* Assets.xcassets */, + CA6AC25F2451131C00C71CB3 /* 04-HigherOrderReducers-ResuableOfflineDownloads */, + DC89C44524461416006900B9 /* Internal */, + ); + path = SwiftUICaseStudies; + sourceTree = ""; + }; + DC89C42C24460F96006900B9 /* SwiftUICaseStudiesTests */ = { + isa = PBXGroup; + children = ( + CA50BE5F24A8F46500FE7DBA /* 01-GettingStarted-AlertsAndConfirmationDialogsTests.swift */, + CA34170724A4E89500FAF950 /* 01-GettingStarted-AnimationsTests.swift */, + DC27215525BF84FC00D9C8DB /* 01-GettingStarted-BindingBasicsTests.swift */, + 4F5AC11E24ECC7E4009DC50B /* 01-GettingStarted-SharedStateTests.swift */, + 2AA49B742B97AAC600F3690E /* SignUpFlowTests.swift */, + CAA9ADC324465AB00003A984 /* 02-Effects-BasicsTests.swift */, + CAA9ADC724465D950003A984 /* 02-Effects-CancellationTests.swift */, + CAA9ADCB2446615B0003A984 /* 02-Effects-LongLivingTests.swift */, + CABC4F3A26AEE20200D5FA2C /* 02-Effects-RefreshableTests.swift */, + DC07231624465D1E003A8B65 /* 02-Effects-TimersTests.swift */, + CA410EE1247C73B400E41798 /* 02-Effects-WebSocketTests.swift */, + CA78F0CC28DA47D70026C4AD /* 04-HigherOrderReducers-RecursionTests.swift */, + DC634B242448D15B00DAA016 /* 04-HigherOrderReducers-ReusableFavoritingTests.swift */, + CA0C51FA245389CC00A04EAB /* 04-HigherOrderReducers-ReusableOfflineDownloadsTests.swift */, + ); + path = SwiftUICaseStudiesTests; + sourceTree = ""; + }; + DC89C44524461416006900B9 /* Internal */ = { + isa = PBXGroup; + children = ( + CA6AC2612451135C00C71CB3 /* CircularProgressView.swift */, + DC85EBC2285A731E00431CF3 /* ResignFirstResponder.swift */, + DCC68EDE2447BC810037F998 /* TemplateText.swift */, + DC9EB4162450CBD2005F413B /* UIViewRepresented.swift */, + DCD442C5286CA91F008B4EA7 /* AboutView.swift */, + ); + path = Internal; + sourceTree = ""; + }; +/* End PBXGroup section */ + +/* Begin PBXNativeTarget section */ + CAF88E6F24B8E26D00539345 /* tvOSCaseStudies */ = { + isa = PBXNativeTarget; + buildConfigurationList = CAF88E8E24B8E26E00539345 /* Build configuration list for PBXNativeTarget "tvOSCaseStudies" */; + buildPhases = ( + CAF88E6C24B8E26D00539345 /* Sources */, + CAF88E6D24B8E26D00539345 /* Frameworks */, + CAF88E6E24B8E26D00539345 /* Resources */, + ); + buildRules = ( + ); + dependencies = ( + ); + name = tvOSCaseStudies; + packageProductDependencies = ( + CAF88E9024B8E3AF00539345 /* ComposableArchitecture */, + ); + productName = tvOSCaseStudies; + productReference = CAF88E7024B8E26D00539345 /* tvOSCaseStudies.app */; + productType = "com.apple.product-type.application"; + }; + CAF88E8224B8E26E00539345 /* tvOSCaseStudiesTests */ = { + isa = PBXNativeTarget; + buildConfigurationList = CAF88E8F24B8E26E00539345 /* Build configuration list for PBXNativeTarget "tvOSCaseStudiesTests" */; + buildPhases = ( + CAF88E7F24B8E26E00539345 /* Sources */, + CAF88E8024B8E26E00539345 /* Frameworks */, + CAF88E8124B8E26E00539345 /* Resources */, + ); + buildRules = ( + ); + dependencies = ( + CAF88E8524B8E26E00539345 /* PBXTargetDependency */, + ); + name = tvOSCaseStudiesTests; + productName = tvOSCaseStudiesTests; + productReference = CAF88E8324B8E26E00539345 /* tvOSCaseStudiesTests.xctest */; + productType = "com.apple.product-type.bundle.unit-test"; + }; + DC4C6EA62450DD380066A05D /* UIKitCaseStudies */ = { + isa = PBXNativeTarget; + buildConfigurationList = DC4C6EC32450DD390066A05D /* Build configuration list for PBXNativeTarget "UIKitCaseStudies" */; + buildPhases = ( + DC4C6EA32450DD380066A05D /* Sources */, + DC4C6EA42450DD380066A05D /* Frameworks */, + DC4C6EA52450DD380066A05D /* Resources */, + DC4C6ECD2450E0B30066A05D /* Embed Frameworks */, + ); + buildRules = ( + ); + dependencies = ( + ); + name = UIKitCaseStudies; + packageProductDependencies = ( + DC13940F2469E27300EE1157 /* ComposableArchitecture */, + ); + productName = UIKitCaseStudies; + productReference = DC4C6EA72450DD380066A05D /* UIKitCaseStudies.app */; + productType = "com.apple.product-type.application"; + }; + DC4C6EBB2450DD390066A05D /* UIKitCaseStudiesTests */ = { + isa = PBXNativeTarget; + buildConfigurationList = DC4C6EC62450DD390066A05D /* Build configuration list for PBXNativeTarget "UIKitCaseStudiesTests" */; + buildPhases = ( + DC4C6EB82450DD390066A05D /* Sources */, + DC4C6EB92450DD390066A05D /* Frameworks */, + DC4C6EBA2450DD390066A05D /* Resources */, + DC4C6ED32450E0BA0066A05D /* Embed Frameworks */, + ); + buildRules = ( + ); + dependencies = ( + DC4C6EBE2450DD390066A05D /* PBXTargetDependency */, + ); + name = UIKitCaseStudiesTests; + packageProductDependencies = ( + ); + productName = UIKitCaseStudiesTests; + productReference = DC4C6EBC2450DD390066A05D /* UIKitCaseStudiesTests.xctest */; + productType = "com.apple.product-type.bundle.unit-test"; + }; + DC89C41224460F95006900B9 /* SwiftUICaseStudies */ = { + isa = PBXNativeTarget; + buildConfigurationList = DC89C43224460F96006900B9 /* Build configuration list for PBXNativeTarget "SwiftUICaseStudies" */; + buildPhases = ( + DC89C40F24460F95006900B9 /* Sources */, + DC89C41024460F95006900B9 /* Frameworks */, + DC89C41124460F95006900B9 /* Resources */, + DC89C43D2446106D006900B9 /* Embed Frameworks */, + ); + buildRules = ( + ); + dependencies = ( + ); + name = SwiftUICaseStudies; + packageProductDependencies = ( + DC13940D2469E25C00EE1157 /* ComposableArchitecture */, + ); + productName = CaseStudies; + productReference = DC89C41324460F95006900B9 /* SwiftUICaseStudies.app */; + productType = "com.apple.product-type.application"; + }; + DC89C42824460F96006900B9 /* SwiftUICaseStudiesTests */ = { + isa = PBXNativeTarget; + buildConfigurationList = DC89C43524460F96006900B9 /* Build configuration list for PBXNativeTarget "SwiftUICaseStudiesTests" */; + buildPhases = ( + DC89C42524460F96006900B9 /* Sources */, + DC89C42624460F96006900B9 /* Frameworks */, + DC89C42724460F96006900B9 /* Resources */, + DC89C44124461077006900B9 /* Embed Frameworks */, + ); + buildRules = ( + ); + dependencies = ( + DC89C42B24460F96006900B9 /* PBXTargetDependency */, + ); + name = SwiftUICaseStudiesTests; + packageProductDependencies = ( + ); + productName = CaseStudiesTests; + productReference = DC89C42924460F96006900B9 /* SwiftUICaseStudiesTests.xctest */; + productType = "com.apple.product-type.bundle.unit-test"; + }; +/* End PBXNativeTarget section */ + +/* Begin PBXProject section */ + DC89C40B24460F95006900B9 /* Project object */ = { + isa = PBXProject; + attributes = { + BuildIndependentTargetsInParallel = YES; + LastSwiftUpdateCheck = 1150; + LastUpgradeCheck = 1520; + ORGANIZATIONNAME = "Point-Free"; + TargetAttributes = { + CAF88E6F24B8E26D00539345 = { + CreatedOnToolsVersion = 11.5; + }; + CAF88E8224B8E26E00539345 = { + CreatedOnToolsVersion = 11.5; + TestTargetID = CAF88E6F24B8E26D00539345; + }; + DC4C6EA62450DD380066A05D = { + CreatedOnToolsVersion = 11.4.1; + }; + DC4C6EBB2450DD390066A05D = { + CreatedOnToolsVersion = 11.4.1; + TestTargetID = DC4C6EA62450DD380066A05D; + }; + DC89C41224460F95006900B9 = { + CreatedOnToolsVersion = 11.4; + }; + DC89C42824460F96006900B9 = { + CreatedOnToolsVersion = 11.4; + TestTargetID = DC89C41224460F95006900B9; + }; + }; + }; + buildConfigurationList = DC89C40E24460F95006900B9 /* Build configuration list for PBXProject "CaseStudies" */; + compatibilityVersion = "Xcode 9.3"; + developmentRegion = en; + hasScannedForEncodings = 0; + knownRegions = ( + en, + Base, + ); + mainGroup = DC89C40A24460F95006900B9; + productRefGroup = DC89C41424460F95006900B9 /* Products */; + projectDirPath = ""; + projectRoot = ""; + targets = ( + DC89C41224460F95006900B9 /* SwiftUICaseStudies */, + DC89C42824460F96006900B9 /* SwiftUICaseStudiesTests */, + DC4C6EA62450DD380066A05D /* UIKitCaseStudies */, + DC4C6EBB2450DD390066A05D /* UIKitCaseStudiesTests */, + CAF88E6F24B8E26D00539345 /* tvOSCaseStudies */, + CAF88E8224B8E26E00539345 /* tvOSCaseStudiesTests */, + ); + }; +/* End PBXProject section */ + +/* Begin PBXResourcesBuildPhase section */ + CAF88E6E24B8E26D00539345 /* Resources */ = { + isa = PBXResourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + CAF88E7724B8E26E00539345 /* Assets.xcassets in Resources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + CAF88E8124B8E26E00539345 /* Resources */ = { + isa = PBXResourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + ); + runOnlyForDeploymentPostprocessing = 0; + }; + DC4C6EA52450DD380066A05D /* Resources */ = { + isa = PBXResourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + DC4C6EB62450DD380066A05D /* LaunchScreen.storyboard in Resources */, + DC4C6EB32450DD380066A05D /* Preview Assets.xcassets in Resources */, + DC4C6EB02450DD380066A05D /* Assets.xcassets in Resources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + DC4C6EBA2450DD390066A05D /* Resources */ = { + isa = PBXResourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + ); + runOnlyForDeploymentPostprocessing = 0; + }; + DC89C41124460F95006900B9 /* Resources */ = { + isa = PBXResourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + DC89C41D24460F96006900B9 /* Assets.xcassets in Resources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + DC89C42724460F96006900B9 /* Resources */ = { + isa = PBXResourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + ); + runOnlyForDeploymentPostprocessing = 0; + }; +/* End PBXResourcesBuildPhase section */ + +/* Begin PBXSourcesBuildPhase section */ + CAF88E6C24B8E26D00539345 /* Sources */ = { + isa = PBXSourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + CAF88E9324B8E3D000539345 /* Core.swift in Sources */, + CAF88E9524B8E4D500539345 /* FocusView.swift in Sources */, + CAF88E7524B8E26D00539345 /* RootView.swift in Sources */, + CAF88E7324B8E26D00539345 /* AppDelegate.swift in Sources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + CAF88E7F24B8E26E00539345 /* Sources */ = { + isa = PBXSourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + CAF88E8824B8E26E00539345 /* FocusTests.swift in Sources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + DC4C6EA32450DD380066A05D /* Sources */ = { + isa = PBXSourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + DC25DC642450F2DF00082E81 /* ActivityIndicatorViewController.swift in Sources */, + DC4C6ED62450E1050066A05D /* CounterViewController.swift in Sources */, + DC4C6EDA2450E6050066A05D /* NavigateAndLoad.swift in Sources */, + DC4C6EAC2450DD380066A05D /* SceneDelegate.swift in Sources */, + DC25DC612450F2B000082E81 /* LoadThenNavigate.swift in Sources */, + DC25DC5F2450F13200082E81 /* IfLetStoreController.swift in Sources */, + DC4C6EAE2450DD380066A05D /* RootViewController.swift in Sources */, + DC630FDA2451016B00BAECBA /* ListsOfState.swift in Sources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + DC4C6EB82450DD390066A05D /* Sources */ = { + isa = PBXSourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + DC4C6EC12450DD390066A05D /* UIKitCaseStudiesTests.swift in Sources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + DC89C40F24460F95006900B9 /* Sources */ = { + isa = PBXSourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + 4BF4745D2B7D75F000A388C0 /* SignUpFlow.swift in Sources */, + DC3C87B029A48C4D004D9104 /* 03-NavigationStack.swift in Sources */, + DCC68EE12447C4630037F998 /* 01-GettingStarted-Composition-TwoCounters.swift in Sources */, + DC072322244663B1003A8B65 /* 03-Navigation-Sheet-LoadThenPresent.swift in Sources */, + DC89C45324465452006900B9 /* 03-Navigation-Lists-NavigateAndLoad.swift in Sources */, + DCC68EE32447C8540037F998 /* 04-HigherOrderReducers-ReusableFavoriting.swift in Sources */, + CA3E421F26B8337500581ABC /* 01-GettingStarted-FocusState.swift in Sources */, + DCC68EDF2447BC810037F998 /* TemplateText.swift in Sources */, + CA6AC2672451135C00C71CB3 /* DownloadClient.swift in Sources */, + CAA9ADC624465C810003A984 /* 02-Effects-Cancellation.swift in Sources */, + CA5ECF92267A79F0002067FF /* FactClient.swift in Sources */, + DC9EB4172450CBD2005F413B /* UIViewRepresented.swift in Sources */, + CA6AC2652451135C00C71CB3 /* CircularProgressView.swift in Sources */, + CA6AC2642451135C00C71CB3 /* ReusableComponents-Download.swift in Sources */, + DCFE1960278DBF0600C14CCF /* CaseStudiesApp.swift in Sources */, + DCD442C6286CA91F008B4EA7 /* AboutView.swift in Sources */, + CA6AC2662451135C00C71CB3 /* DownloadComponent.swift in Sources */, + DC5B505125C86EBC000D8DFD /* 01-GettingStarted-Bindings-Forms.swift in Sources */, + CAA9ADC22446587C0003A984 /* 02-Effects-Basics.swift in Sources */, + DC89C41B24460F95006900B9 /* 00-RootView.swift in Sources */, + DCC68EDD2447A5B00037F998 /* 01-GettingStarted-OptionalState.swift in Sources */, + CABC4F3926AEE00C00D5FA2C /* 02-Effects-Refreshable.swift in Sources */, + DC85EBC3285A731E00431CF3 /* ResignFirstResponder.swift in Sources */, + DCC68EAB244666AF0037F998 /* 03-Navigation-Sheet-PresentAndLoad.swift in Sources */, + 433B8B762A49C9AF0035DEE4 /* 03-Navigation-Multiple-Destinations.swift in Sources */, + CAE962FD24A7F7BE00EFC025 /* 01-GettingStarted-AlertsAndConfirmationDialogs.swift in Sources */, + CA25E5D224463AD700DA666A /* 01-GettingStarted-Bindings-Basics.swift in Sources */, + DC88D8A6245341EC0077F427 /* 01-GettingStarted-Animations.swift in Sources */, + DC89C44D244621A5006900B9 /* 03-Navigation-NavigateAndLoad.swift in Sources */, + DC89C4442446111B006900B9 /* 01-GettingStarted-Counter.swift in Sources */, + DCE63B71245CC0B90080A23D /* 04-HigherOrderReducers-Recursion.swift in Sources */, + CAA9ADCA2446605B0003A984 /* 02-Effects-LongLiving.swift in Sources */, + DC89C45524465C44006900B9 /* 02-Effects-Timers.swift in Sources */, + CA410EE0247A15FE00E41798 /* 02-Effects-WebSocket.swift in Sources */, + CA7BC8EE245CCFE4001FB69F /* 01-GettingStarted-SharedState.swift in Sources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + DC89C42524460F96006900B9 /* Sources */ = { + isa = PBXSourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + DC27215625BF84FC00D9C8DB /* 01-GettingStarted-BindingBasicsTests.swift in Sources */, + 2AA49B752B97AAC600F3690E /* SignUpFlowTests.swift in Sources */, + CA0C51FB245389CC00A04EAB /* 04-HigherOrderReducers-ReusableOfflineDownloadsTests.swift in Sources */, + DC634B252448D15B00DAA016 /* 04-HigherOrderReducers-ReusableFavoritingTests.swift in Sources */, + CAA9ADC824465D950003A984 /* 02-Effects-CancellationTests.swift in Sources */, + CA410EE2247C73B400E41798 /* 02-Effects-WebSocketTests.swift in Sources */, + CABC4F3B26AEE20200D5FA2C /* 02-Effects-RefreshableTests.swift in Sources */, + CA34170824A4E89500FAF950 /* 01-GettingStarted-AnimationsTests.swift in Sources */, + DC07231724465D1E003A8B65 /* 02-Effects-TimersTests.swift in Sources */, + CA50BE6024A8F46500FE7DBA /* 01-GettingStarted-AlertsAndConfirmationDialogsTests.swift in Sources */, + CAA9ADC424465AB00003A984 /* 02-Effects-BasicsTests.swift in Sources */, + CA78F0CD28DA47D70026C4AD /* 04-HigherOrderReducers-RecursionTests.swift in Sources */, + 4F5AC11F24ECC7E4009DC50B /* 01-GettingStarted-SharedStateTests.swift in Sources */, + CAA9ADCC2446615B0003A984 /* 02-Effects-LongLivingTests.swift in Sources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; +/* End PBXSourcesBuildPhase section */ + +/* Begin PBXTargetDependency section */ + CAF88E8524B8E26E00539345 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + target = CAF88E6F24B8E26D00539345 /* tvOSCaseStudies */; + targetProxy = CAF88E8424B8E26E00539345 /* PBXContainerItemProxy */; + }; + DC4C6EBE2450DD390066A05D /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + target = DC4C6EA62450DD380066A05D /* UIKitCaseStudies */; + targetProxy = DC4C6EBD2450DD390066A05D /* PBXContainerItemProxy */; + }; + DC89C42B24460F96006900B9 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + target = DC89C41224460F95006900B9 /* SwiftUICaseStudies */; + targetProxy = DC89C42A24460F96006900B9 /* PBXContainerItemProxy */; + }; +/* End PBXTargetDependency section */ + +/* Begin PBXVariantGroup section */ + DC4C6EB42450DD380066A05D /* LaunchScreen.storyboard */ = { + isa = PBXVariantGroup; + children = ( + DC4C6EB52450DD380066A05D /* Base */, + ); + name = LaunchScreen.storyboard; + sourceTree = ""; + }; +/* End PBXVariantGroup section */ + +/* Begin XCBuildConfiguration section */ + CAF88E8A24B8E26E00539345 /* Debug */ = { + isa = XCBuildConfiguration; + buildSettings = { + ASSETCATALOG_COMPILER_APPICON_NAME = "App Icon & Top Shelf Image"; + CODE_SIGN_STYLE = Automatic; + ENABLE_PREVIEWS = YES; + INFOPLIST_FILE = tvOSCaseStudies/Info.plist; + LD_RUNPATH_SEARCH_PATHS = ( + "$(inherited)", + "@executable_path/Frameworks", + ); + PRODUCT_BUNDLE_IDENTIFIER = co.pointfree.tvOSCaseStudies; + PRODUCT_NAME = "$(TARGET_NAME)"; + SDKROOT = appletvos; + SWIFT_VERSION = 5.0; + TARGETED_DEVICE_FAMILY = 3; + }; + name = Debug; + }; + CAF88E8B24B8E26E00539345 /* Release */ = { + isa = XCBuildConfiguration; + buildSettings = { + ASSETCATALOG_COMPILER_APPICON_NAME = "App Icon & Top Shelf Image"; + CODE_SIGN_STYLE = Automatic; + ENABLE_PREVIEWS = YES; + INFOPLIST_FILE = tvOSCaseStudies/Info.plist; + LD_RUNPATH_SEARCH_PATHS = ( + "$(inherited)", + "@executable_path/Frameworks", + ); + PRODUCT_BUNDLE_IDENTIFIER = co.pointfree.tvOSCaseStudies; + PRODUCT_NAME = "$(TARGET_NAME)"; + SDKROOT = appletvos; + SWIFT_VERSION = 5.0; + TARGETED_DEVICE_FAMILY = 3; + }; + name = Release; + }; + CAF88E8C24B8E26E00539345 /* Debug */ = { + isa = XCBuildConfiguration; + buildSettings = { + ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = YES; + BUNDLE_LOADER = "$(TEST_HOST)"; + CODE_SIGN_STYLE = Automatic; + INFOPLIST_FILE = tvOSCaseStudies/Info.plist; + LD_RUNPATH_SEARCH_PATHS = ( + "$(inherited)", + "@executable_path/Frameworks", + "@loader_path/Frameworks", + ); + PRODUCT_BUNDLE_IDENTIFIER = co.pointfree.tvOSCaseStudiesTests; + PRODUCT_NAME = "$(TARGET_NAME)"; + SDKROOT = appletvos; + SWIFT_VERSION = 5.0; + TARGETED_DEVICE_FAMILY = 3; + TEST_HOST = "$(BUILT_PRODUCTS_DIR)/tvOSCaseStudies.app/tvOSCaseStudies"; + }; + name = Debug; + }; + CAF88E8D24B8E26E00539345 /* Release */ = { + isa = XCBuildConfiguration; + buildSettings = { + ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = YES; + BUNDLE_LOADER = "$(TEST_HOST)"; + CODE_SIGN_STYLE = Automatic; + INFOPLIST_FILE = tvOSCaseStudies/Info.plist; + LD_RUNPATH_SEARCH_PATHS = ( + "$(inherited)", + "@executable_path/Frameworks", + "@loader_path/Frameworks", + ); + PRODUCT_BUNDLE_IDENTIFIER = co.pointfree.tvOSCaseStudiesTests; + PRODUCT_NAME = "$(TARGET_NAME)"; + SDKROOT = appletvos; + SWIFT_VERSION = 5.0; + TARGETED_DEVICE_FAMILY = 3; + TEST_HOST = "$(BUILT_PRODUCTS_DIR)/tvOSCaseStudies.app/tvOSCaseStudies"; + }; + name = Release; + }; + DC4C6EC42450DD390066A05D /* Debug */ = { + isa = XCBuildConfiguration; + buildSettings = { + ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; + CODE_SIGN_STYLE = Automatic; + DEVELOPMENT_ASSET_PATHS = "\"UIKitCaseStudies/Preview Content\""; + ENABLE_PREVIEWS = YES; + INFOPLIST_FILE = UIKitCaseStudies/Info.plist; + LD_RUNPATH_SEARCH_PATHS = ( + "$(inherited)", + "@executable_path/Frameworks", + ); + PRODUCT_BUNDLE_IDENTIFIER = co.pointfree.UIKitCaseStudies; + PRODUCT_NAME = "$(TARGET_NAME)"; + SWIFT_VERSION = 5.0; + TARGETED_DEVICE_FAMILY = "1,2"; + }; + name = Debug; + }; + DC4C6EC52450DD390066A05D /* Release */ = { + isa = XCBuildConfiguration; + buildSettings = { + ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; + CODE_SIGN_STYLE = Automatic; + DEVELOPMENT_ASSET_PATHS = "\"UIKitCaseStudies/Preview Content\""; + ENABLE_PREVIEWS = YES; + INFOPLIST_FILE = UIKitCaseStudies/Info.plist; + LD_RUNPATH_SEARCH_PATHS = ( + "$(inherited)", + "@executable_path/Frameworks", + ); + PRODUCT_BUNDLE_IDENTIFIER = co.pointfree.UIKitCaseStudies; + PRODUCT_NAME = "$(TARGET_NAME)"; + SWIFT_VERSION = 5.0; + TARGETED_DEVICE_FAMILY = "1,2"; + }; + name = Release; + }; + DC4C6EC72450DD390066A05D /* Debug */ = { + isa = XCBuildConfiguration; + buildSettings = { + ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = YES; + BUNDLE_LOADER = "$(TEST_HOST)"; + CODE_SIGN_STYLE = Automatic; + INFOPLIST_FILE = UIKitCaseStudies/Info.plist; + LD_RUNPATH_SEARCH_PATHS = ( + "$(inherited)", + "@executable_path/Frameworks", + "@loader_path/Frameworks", + ); + PRODUCT_BUNDLE_IDENTIFIER = co.pointfree.UIKitCaseStudiesTests; + PRODUCT_NAME = "$(TARGET_NAME)"; + SWIFT_VERSION = 5.0; + TARGETED_DEVICE_FAMILY = "1,2"; + TEST_HOST = "$(BUILT_PRODUCTS_DIR)/UIKitCaseStudies.app/UIKitCaseStudies"; + }; + name = Debug; + }; + DC4C6EC82450DD390066A05D /* Release */ = { + isa = XCBuildConfiguration; + buildSettings = { + ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = YES; + BUNDLE_LOADER = "$(TEST_HOST)"; + CODE_SIGN_STYLE = Automatic; + INFOPLIST_FILE = UIKitCaseStudies/Info.plist; + LD_RUNPATH_SEARCH_PATHS = ( + "$(inherited)", + "@executable_path/Frameworks", + "@loader_path/Frameworks", + ); + PRODUCT_BUNDLE_IDENTIFIER = co.pointfree.UIKitCaseStudiesTests; + PRODUCT_NAME = "$(TARGET_NAME)"; + SWIFT_VERSION = 5.0; + TARGETED_DEVICE_FAMILY = "1,2"; + TEST_HOST = "$(BUILT_PRODUCTS_DIR)/UIKitCaseStudies.app/UIKitCaseStudies"; + }; + name = Release; + }; + DC89C43024460F96006900B9 /* Debug */ = { + isa = XCBuildConfiguration; + buildSettings = { + ALWAYS_SEARCH_USER_PATHS = NO; + CLANG_ANALYZER_NONNULL = YES; + CLANG_ANALYZER_NUMBER_OBJECT_CONVERSION = YES_AGGRESSIVE; + CLANG_CXX_LANGUAGE_STANDARD = "gnu++14"; + CLANG_CXX_LIBRARY = "libc++"; + CLANG_ENABLE_MODULES = YES; + CLANG_ENABLE_OBJC_ARC = YES; + CLANG_ENABLE_OBJC_WEAK = YES; + CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES; + CLANG_WARN_BOOL_CONVERSION = YES; + CLANG_WARN_COMMA = YES; + CLANG_WARN_CONSTANT_CONVERSION = YES; + CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES; + CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR; + CLANG_WARN_DOCUMENTATION_COMMENTS = YES; + CLANG_WARN_EMPTY_BODY = YES; + CLANG_WARN_ENUM_CONVERSION = YES; + CLANG_WARN_INFINITE_RECURSION = YES; + CLANG_WARN_INT_CONVERSION = YES; + CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES; + CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES; + CLANG_WARN_OBJC_LITERAL_CONVERSION = YES; + CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR; + CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = YES; + CLANG_WARN_RANGE_LOOP_ANALYSIS = YES; + CLANG_WARN_STRICT_PROTOTYPES = YES; + CLANG_WARN_SUSPICIOUS_MOVE = YES; + CLANG_WARN_UNGUARDED_AVAILABILITY = YES_AGGRESSIVE; + CLANG_WARN_UNREACHABLE_CODE = YES; + CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; + COPY_PHASE_STRIP = NO; + DEBUG_INFORMATION_FORMAT = dwarf; + ENABLE_STRICT_OBJC_MSGSEND = YES; + ENABLE_TESTABILITY = YES; + ENABLE_USER_SCRIPT_SANDBOXING = YES; + GCC_C_LANGUAGE_STANDARD = gnu11; + GCC_DYNAMIC_NO_PIC = NO; + GCC_NO_COMMON_BLOCKS = YES; + GCC_OPTIMIZATION_LEVEL = 0; + GCC_PREPROCESSOR_DEFINITIONS = ( + "DEBUG=1", + "$(inherited)", + ); + GCC_WARN_64_TO_32_BIT_CONVERSION = YES; + GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR; + GCC_WARN_UNDECLARED_SELECTOR = YES; + GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE; + GCC_WARN_UNUSED_FUNCTION = YES; + GCC_WARN_UNUSED_VARIABLE = YES; + MTL_ENABLE_DEBUG_INFO = INCLUDE_SOURCE; + MTL_FAST_MATH = YES; + ONLY_ACTIVE_ARCH = YES; + SDKROOT = iphoneos; + SWIFT_ACTIVE_COMPILATION_CONDITIONS = DEBUG; + SWIFT_OPTIMIZATION_LEVEL = "-Onone"; + SWIFT_STRICT_CONCURRENCY = minimal; + }; + name = Debug; + }; + DC89C43124460F96006900B9 /* Release */ = { + isa = XCBuildConfiguration; + buildSettings = { + ALWAYS_SEARCH_USER_PATHS = NO; + CLANG_ANALYZER_NONNULL = YES; + CLANG_ANALYZER_NUMBER_OBJECT_CONVERSION = YES_AGGRESSIVE; + CLANG_CXX_LANGUAGE_STANDARD = "gnu++14"; + CLANG_CXX_LIBRARY = "libc++"; + CLANG_ENABLE_MODULES = YES; + CLANG_ENABLE_OBJC_ARC = YES; + CLANG_ENABLE_OBJC_WEAK = YES; + CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES; + CLANG_WARN_BOOL_CONVERSION = YES; + CLANG_WARN_COMMA = YES; + CLANG_WARN_CONSTANT_CONVERSION = YES; + CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES; + CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR; + CLANG_WARN_DOCUMENTATION_COMMENTS = YES; + CLANG_WARN_EMPTY_BODY = YES; + CLANG_WARN_ENUM_CONVERSION = YES; + CLANG_WARN_INFINITE_RECURSION = YES; + CLANG_WARN_INT_CONVERSION = YES; + CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES; + CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES; + CLANG_WARN_OBJC_LITERAL_CONVERSION = YES; + CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR; + CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = YES; + CLANG_WARN_RANGE_LOOP_ANALYSIS = YES; + CLANG_WARN_STRICT_PROTOTYPES = YES; + CLANG_WARN_SUSPICIOUS_MOVE = YES; + CLANG_WARN_UNGUARDED_AVAILABILITY = YES_AGGRESSIVE; + CLANG_WARN_UNREACHABLE_CODE = YES; + CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; + COPY_PHASE_STRIP = NO; + DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym"; + ENABLE_NS_ASSERTIONS = NO; + ENABLE_STRICT_OBJC_MSGSEND = YES; + ENABLE_USER_SCRIPT_SANDBOXING = YES; + GCC_C_LANGUAGE_STANDARD = gnu11; + GCC_NO_COMMON_BLOCKS = YES; + GCC_WARN_64_TO_32_BIT_CONVERSION = YES; + GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR; + GCC_WARN_UNDECLARED_SELECTOR = YES; + GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE; + GCC_WARN_UNUSED_FUNCTION = YES; + GCC_WARN_UNUSED_VARIABLE = YES; + MTL_ENABLE_DEBUG_INFO = NO; + MTL_FAST_MATH = YES; + SDKROOT = iphoneos; + SWIFT_COMPILATION_MODE = wholemodule; + SWIFT_OPTIMIZATION_LEVEL = "-O"; + SWIFT_STRICT_CONCURRENCY = minimal; + VALIDATE_PRODUCT = YES; + }; + name = Release; + }; + DC89C43324460F96006900B9 /* Debug */ = { + isa = XCBuildConfiguration; + buildSettings = { + ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; + CODE_SIGN_STYLE = Automatic; + ENABLE_PREVIEWS = YES; + INFOPLIST_FILE = SwiftUICaseStudies/Info.plist; + LD_RUNPATH_SEARCH_PATHS = ( + "$(inherited)", + "@executable_path/Frameworks", + ); + PRODUCT_BUNDLE_IDENTIFIER = co.pointfree.SwiftUICaseStudies; + PRODUCT_NAME = "$(TARGET_NAME)"; + SWIFT_VERSION = 5.0; + TARGETED_DEVICE_FAMILY = "1,2"; + }; + name = Debug; + }; + DC89C43424460F96006900B9 /* Release */ = { + isa = XCBuildConfiguration; + buildSettings = { + ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; + CODE_SIGN_STYLE = Automatic; + ENABLE_PREVIEWS = YES; + INFOPLIST_FILE = SwiftUICaseStudies/Info.plist; + LD_RUNPATH_SEARCH_PATHS = ( + "$(inherited)", + "@executable_path/Frameworks", + ); + PRODUCT_BUNDLE_IDENTIFIER = co.pointfree.SwiftUICaseStudies; + PRODUCT_NAME = "$(TARGET_NAME)"; + SWIFT_VERSION = 5.0; + TARGETED_DEVICE_FAMILY = "1,2"; + }; + name = Release; + }; + DC89C43624460F96006900B9 /* Debug */ = { + isa = XCBuildConfiguration; + buildSettings = { + ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = YES; + BUNDLE_LOADER = "$(TEST_HOST)"; + CODE_SIGN_STYLE = Automatic; + INFOPLIST_FILE = SwiftUICaseStudies/Info.plist; + LD_RUNPATH_SEARCH_PATHS = ( + "$(inherited)", + "@executable_path/Frameworks", + "@loader_path/Frameworks", + ); + PRODUCT_BUNDLE_IDENTIFIER = co.pointfree.SwiftUICaseStudiesTests; + PRODUCT_NAME = "$(TARGET_NAME)"; + SWIFT_VERSION = 5.0; + TARGETED_DEVICE_FAMILY = "1,2"; + TEST_HOST = "$(BUILT_PRODUCTS_DIR)/SwiftUICaseStudies.app/SwiftUICaseStudies"; + }; + name = Debug; + }; + DC89C43724460F96006900B9 /* Release */ = { + isa = XCBuildConfiguration; + buildSettings = { + ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = YES; + BUNDLE_LOADER = "$(TEST_HOST)"; + CODE_SIGN_STYLE = Automatic; + INFOPLIST_FILE = SwiftUICaseStudies/Info.plist; + LD_RUNPATH_SEARCH_PATHS = ( + "$(inherited)", + "@executable_path/Frameworks", + "@loader_path/Frameworks", + ); + PRODUCT_BUNDLE_IDENTIFIER = co.pointfree.SwiftUICaseStudiesTests; + PRODUCT_NAME = "$(TARGET_NAME)"; + SWIFT_VERSION = 5.0; + TARGETED_DEVICE_FAMILY = "1,2"; + TEST_HOST = "$(BUILT_PRODUCTS_DIR)/SwiftUICaseStudies.app/SwiftUICaseStudies"; + }; + name = Release; + }; +/* End XCBuildConfiguration section */ + +/* Begin XCConfigurationList section */ + CAF88E8E24B8E26E00539345 /* Build configuration list for PBXNativeTarget "tvOSCaseStudies" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + CAF88E8A24B8E26E00539345 /* Debug */, + CAF88E8B24B8E26E00539345 /* Release */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Release; + }; + CAF88E8F24B8E26E00539345 /* Build configuration list for PBXNativeTarget "tvOSCaseStudiesTests" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + CAF88E8C24B8E26E00539345 /* Debug */, + CAF88E8D24B8E26E00539345 /* Release */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Release; + }; + DC4C6EC32450DD390066A05D /* Build configuration list for PBXNativeTarget "UIKitCaseStudies" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + DC4C6EC42450DD390066A05D /* Debug */, + DC4C6EC52450DD390066A05D /* Release */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Release; + }; + DC4C6EC62450DD390066A05D /* Build configuration list for PBXNativeTarget "UIKitCaseStudiesTests" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + DC4C6EC72450DD390066A05D /* Debug */, + DC4C6EC82450DD390066A05D /* Release */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Release; + }; + DC89C40E24460F95006900B9 /* Build configuration list for PBXProject "CaseStudies" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + DC89C43024460F96006900B9 /* Debug */, + DC89C43124460F96006900B9 /* Release */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Release; + }; + DC89C43224460F96006900B9 /* Build configuration list for PBXNativeTarget "SwiftUICaseStudies" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + DC89C43324460F96006900B9 /* Debug */, + DC89C43424460F96006900B9 /* Release */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Release; + }; + DC89C43524460F96006900B9 /* Build configuration list for PBXNativeTarget "SwiftUICaseStudiesTests" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + DC89C43624460F96006900B9 /* Debug */, + DC89C43724460F96006900B9 /* Release */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Release; + }; +/* End XCConfigurationList section */ + +/* Begin XCSwiftPackageProductDependency section */ + CAF88E9024B8E3AF00539345 /* ComposableArchitecture */ = { + isa = XCSwiftPackageProductDependency; + productName = ComposableArchitecture; + }; + DC13940D2469E25C00EE1157 /* ComposableArchitecture */ = { + isa = XCSwiftPackageProductDependency; + productName = ComposableArchitecture; + }; + DC13940F2469E27300EE1157 /* ComposableArchitecture */ = { + isa = XCSwiftPackageProductDependency; + productName = ComposableArchitecture; + }; +/* End XCSwiftPackageProductDependency section */ + }; + rootObject = DC89C40B24460F95006900B9 /* Project object */; +} diff --git a/0275-shared-state-pt8/swift-composable-architecture/Examples/CaseStudies/CaseStudies.xcodeproj/project.xcworkspace/contents.xcworkspacedata b/0275-shared-state-pt8/swift-composable-architecture/Examples/CaseStudies/CaseStudies.xcodeproj/project.xcworkspace/contents.xcworkspacedata new file mode 100644 index 00000000..919434a6 --- /dev/null +++ b/0275-shared-state-pt8/swift-composable-architecture/Examples/CaseStudies/CaseStudies.xcodeproj/project.xcworkspace/contents.xcworkspacedata @@ -0,0 +1,7 @@ + + + + + diff --git a/0275-shared-state-pt8/swift-composable-architecture/Examples/CaseStudies/CaseStudies.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist b/0275-shared-state-pt8/swift-composable-architecture/Examples/CaseStudies/CaseStudies.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist new file mode 100644 index 00000000..18d98100 --- /dev/null +++ b/0275-shared-state-pt8/swift-composable-architecture/Examples/CaseStudies/CaseStudies.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist @@ -0,0 +1,8 @@ + + + + + IDEDidComputeMac32BitWarning + + + diff --git a/0275-shared-state-pt8/swift-composable-architecture/Examples/CaseStudies/CaseStudies.xcodeproj/xcshareddata/xcschemes/CaseStudies (SwiftUI).xcscheme b/0275-shared-state-pt8/swift-composable-architecture/Examples/CaseStudies/CaseStudies.xcodeproj/xcshareddata/xcschemes/CaseStudies (SwiftUI).xcscheme new file mode 100644 index 00000000..8687c796 --- /dev/null +++ b/0275-shared-state-pt8/swift-composable-architecture/Examples/CaseStudies/CaseStudies.xcodeproj/xcshareddata/xcschemes/CaseStudies (SwiftUI).xcscheme @@ -0,0 +1,88 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/0275-shared-state-pt8/swift-composable-architecture/Examples/CaseStudies/CaseStudies.xcodeproj/xcshareddata/xcschemes/CaseStudies (UIKit).xcscheme b/0275-shared-state-pt8/swift-composable-architecture/Examples/CaseStudies/CaseStudies.xcodeproj/xcshareddata/xcschemes/CaseStudies (UIKit).xcscheme new file mode 100644 index 00000000..239fb4a5 --- /dev/null +++ b/0275-shared-state-pt8/swift-composable-architecture/Examples/CaseStudies/CaseStudies.xcodeproj/xcshareddata/xcschemes/CaseStudies (UIKit).xcscheme @@ -0,0 +1,88 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/0275-shared-state-pt8/swift-composable-architecture/Examples/CaseStudies/CaseStudies.xcodeproj/xcshareddata/xcschemes/tvOSCaseStudies.xcscheme b/0275-shared-state-pt8/swift-composable-architecture/Examples/CaseStudies/CaseStudies.xcodeproj/xcshareddata/xcschemes/tvOSCaseStudies.xcscheme new file mode 100644 index 00000000..9aa73601 --- /dev/null +++ b/0275-shared-state-pt8/swift-composable-architecture/Examples/CaseStudies/CaseStudies.xcodeproj/xcshareddata/xcschemes/tvOSCaseStudies.xcscheme @@ -0,0 +1,88 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/0275-shared-state-pt8/swift-composable-architecture/Examples/CaseStudies/README.md b/0275-shared-state-pt8/swift-composable-architecture/Examples/CaseStudies/README.md new file mode 100644 index 00000000..0468b9f7 --- /dev/null +++ b/0275-shared-state-pt8/swift-composable-architecture/Examples/CaseStudies/README.md @@ -0,0 +1,3 @@ +# Composable Architecture Case Studies + +This project includes a number of digestible examples of how to solve common problems using the Composable Architecture. diff --git a/0275-shared-state-pt8/swift-composable-architecture/Examples/CaseStudies/SwiftUICaseStudies/00-RootView.swift b/0275-shared-state-pt8/swift-composable-architecture/Examples/CaseStudies/SwiftUICaseStudies/00-RootView.swift new file mode 100644 index 00000000..04cf9d45 --- /dev/null +++ b/0275-shared-state-pt8/swift-composable-architecture/Examples/CaseStudies/SwiftUICaseStudies/00-RootView.swift @@ -0,0 +1,197 @@ +import ComposableArchitecture +import SwiftUI + +struct RootView: View { + @State var isNavigationStackCaseStudyPresented = false + + var body: some View { + NavigationStack { + Form { + Section { + NavigationLink("Basics") { + Demo(store: Store(initialState: Counter.State()) { Counter() }) { store in + CounterDemoView(store: store) + } + } + NavigationLink("Combining reducers") { + Demo(store: Store(initialState: TwoCounters.State()) { TwoCounters() }) { store in + TwoCountersView(store: store) + } + } + NavigationLink("Bindings") { + Demo(store: Store(initialState: BindingBasics.State()) { BindingBasics() }) { store in + BindingBasicsView(store: store) + } + } + NavigationLink("Form bindings") { + Demo(store: Store(initialState: BindingForm.State()) { BindingForm() }) { store in + BindingFormView(store: store) + } + } + NavigationLink("Optional state") { + Demo(store: Store(initialState: OptionalBasics.State()) { OptionalBasics() }) { store in + OptionalBasicsView(store: store) + } + } + NavigationLink("Shared state") { + Demo(store: Store(initialState: SharedState.State()) { SharedState() }) { store in + SharedStateView(store: store) + } + } + NavigationLink("Alerts and Confirmation Dialogs") { + Demo( + store: Store(initialState: AlertAndConfirmationDialog.State()) { + AlertAndConfirmationDialog() + } + ) { store in + AlertAndConfirmationDialogView(store: store) + } + } + NavigationLink("Focus State") { + Demo(store: Store(initialState: FocusDemo.State()) { FocusDemo() }) { store in + FocusDemoView(store: store) + } + } + NavigationLink("Animations") { + Demo(store: Store(initialState: Animations.State()) { Animations() }) { store in + AnimationsView(store: store) + } + } + } header: { + Text("Getting started") + } + + Section { + NavigationLink("Basics") { + Demo(store: Store(initialState: EffectsBasics.State()) { EffectsBasics() }) { store in + EffectsBasicsView(store: store) + } + } + NavigationLink("Cancellation") { + Demo( + store: Store(initialState: EffectsCancellation.State()) { EffectsCancellation() } + ) { store in + EffectsCancellationView(store: store) + } + } + NavigationLink("Long-living effects") { + Demo( + store: Store(initialState: LongLivingEffects.State()) { LongLivingEffects() } + ) { store in + LongLivingEffectsView(store: store) + } + } + NavigationLink("Refreshable") { + Demo(store: Store(initialState: Refreshable.State()) { Refreshable() }) { store in + RefreshableView(store: store) + } + } + NavigationLink("Timers") { + Demo(store: Store(initialState: Timers.State()) { Timers() }) { store in + TimersView(store: store) + } + } + NavigationLink("Web socket") { + Demo(store: Store(initialState: WebSocket.State()) { WebSocket() }) { store in + WebSocketView(store: store) + } + } + } header: { + Text("Effects") + } + + Section { + Button("Stack") { + self.isNavigationStackCaseStudyPresented = true + } + .buttonStyle(.plain) + + NavigationLink("Navigate and load data") { + Demo( + store: Store(initialState: NavigateAndLoad.State()) { NavigateAndLoad() } + ) { store in + NavigateAndLoadView(store: store) + } + } + + NavigationLink("Lists: Navigate and load data") { + Demo( + store: Store(initialState: NavigateAndLoadList.State()) { NavigateAndLoadList() } + ) { store in + NavigateAndLoadListView(store: store) + } + } + NavigationLink("Sheets: Present and load data") { + Demo(store: Store(initialState: PresentAndLoad.State()) { PresentAndLoad() }) { store in + PresentAndLoadView(store: store) + } + } + NavigationLink("Sheets: Load data then present") { + Demo( + store: Store(initialState: LoadThenPresent.State()) { LoadThenPresent() } + ) { store in + LoadThenPresentView(store: store) + } + } + NavigationLink("Multiple destinations") { + Demo( + store: Store(initialState: MultipleDestinations.State()) { MultipleDestinations() } + ) { store in + MultipleDestinationsView(store: store) + } + } + } header: { + Text("Navigation") + } + + Section { + NavigationLink("Reusable favoriting component") { + Demo(store: Store(initialState: Episodes.State()) { Episodes() }) { store in + EpisodesView(store: store) + } + } + NavigationLink("Reusable offline download component") { + Demo(store: Store(initialState: MapApp.State()) { MapApp() }) { store in + CitiesView(store: store) + } + } + NavigationLink("Recursive state and actions") { + Demo(store: Store(initialState: Nested.State()) { Nested() }) { store in + NestedView(store: store) + } + } + } header: { + Text("Higher-order reducers") + } + } + .navigationTitle("Case Studies") + .sheet(isPresented: self.$isNavigationStackCaseStudyPresented) { + Demo(store: Store(initialState: NavigationDemo.State()) { NavigationDemo() }) { store in + NavigationDemoView(store: store) + } + } + } + } +} + +/// This wrapper provides an "entry" point into an individual demo that can own a store. +struct Demo: View { + @SwiftUI.State var store: Store + let content: (Store) -> Content + + init( + store: Store, + @ViewBuilder content: @escaping (Store) -> Content + ) { + self.store = store + self.content = content + } + + var body: some View { + self.content(self.store) + } +} + +#Preview { + RootView() +} diff --git a/0275-shared-state-pt8/swift-composable-architecture/Examples/CaseStudies/SwiftUICaseStudies/01-GettingStarted-AlertsAndConfirmationDialogs.swift b/0275-shared-state-pt8/swift-composable-architecture/Examples/CaseStudies/SwiftUICaseStudies/01-GettingStarted-AlertsAndConfirmationDialogs.swift new file mode 100644 index 00000000..19db2136 --- /dev/null +++ b/0275-shared-state-pt8/swift-composable-architecture/Examples/CaseStudies/SwiftUICaseStudies/01-GettingStarted-AlertsAndConfirmationDialogs.swift @@ -0,0 +1,129 @@ +import ComposableArchitecture +import SwiftUI + +private let readMe = """ + This demonstrates how to best handle alerts and confirmation dialogs in the Composable \ + Architecture. + + The library comes with two types, `AlertState` and `ConfirmationDialogState`, which are data \ + descriptions of the state and actions of an alert or dialog. These types can be constructed in \ + reducers to control whether or not an alert or confirmation dialog is displayed, and \ + corresponding view modifiers, `alert(_:)` and `confirmationDialog(_:)`, can be handed bindings \ + to a store focused on an alert or dialog domain so that the alert or dialog can be displayed in \ + the view. + + The benefit of using these types is that you can get full test coverage on how a user interacts \ + with alerts and dialogs in your application + """ + +@Reducer +struct AlertAndConfirmationDialog { + @ObservableState + struct State: Equatable { + @Presents var alert: AlertState? + @Presents var confirmationDialog: ConfirmationDialogState? + var count = 0 + } + + enum Action { + case alert(PresentationAction) + case alertButtonTapped + case confirmationDialog(PresentationAction) + case confirmationDialogButtonTapped + + enum Alert { + case incrementButtonTapped + } + enum ConfirmationDialog { + case incrementButtonTapped + case decrementButtonTapped + } + } + + var body: some Reducer { + Reduce { state, action in + switch action { + case .alert(.presented(.incrementButtonTapped)), + .confirmationDialog(.presented(.incrementButtonTapped)): + state.alert = AlertState { TextState("Incremented!") } + state.count += 1 + return .none + + case .alert: + return .none + + case .alertButtonTapped: + state.alert = AlertState { + TextState("Alert!") + } actions: { + ButtonState(role: .cancel) { + TextState("Cancel") + } + ButtonState(action: .incrementButtonTapped) { + TextState("Increment") + } + } message: { + TextState("This is an alert") + } + return .none + + case .confirmationDialog(.presented(.decrementButtonTapped)): + state.alert = AlertState { TextState("Decremented!") } + state.count -= 1 + return .none + + case .confirmationDialog: + return .none + + case .confirmationDialogButtonTapped: + state.confirmationDialog = ConfirmationDialogState { + TextState("Confirmation dialog") + } actions: { + ButtonState(role: .cancel) { + TextState("Cancel") + } + ButtonState(action: .incrementButtonTapped) { + TextState("Increment") + } + ButtonState(action: .decrementButtonTapped) { + TextState("Decrement") + } + } message: { + TextState("This is a confirmation dialog.") + } + return .none + } + } + .ifLet(\.$alert, action: \.alert) + .ifLet(\.$confirmationDialog, action: \.confirmationDialog) + } +} + +struct AlertAndConfirmationDialogView: View { + @Bindable var store: StoreOf + + var body: some View { + Form { + Section { + AboutView(readMe: readMe) + } + + Text("Count: \(store.count)") + Button("Alert") { store.send(.alertButtonTapped) } + Button("Confirmation Dialog") { store.send(.confirmationDialogButtonTapped) } + } + .navigationTitle("Alerts & Dialogs") + .alert($store.scope(state: \.alert, action: \.alert)) + .confirmationDialog($store.scope(state: \.confirmationDialog, action: \.confirmationDialog)) + } +} + +#Preview { + NavigationStack { + AlertAndConfirmationDialogView( + store: Store(initialState: AlertAndConfirmationDialog.State()) { + AlertAndConfirmationDialog() + } + ) + } +} diff --git a/0275-shared-state-pt8/swift-composable-architecture/Examples/CaseStudies/SwiftUICaseStudies/01-GettingStarted-Animations.swift b/0275-shared-state-pt8/swift-composable-architecture/Examples/CaseStudies/SwiftUICaseStudies/01-GettingStarted-Animations.swift new file mode 100644 index 00000000..b428f28d --- /dev/null +++ b/0275-shared-state-pt8/swift-composable-architecture/Examples/CaseStudies/SwiftUICaseStudies/01-GettingStarted-Animations.swift @@ -0,0 +1,168 @@ +import ComposableArchitecture +import SwiftUI + +private let readMe = """ + This screen demonstrates how changes to application state can drive animations. Because the \ + `Store` processes actions sent to it synchronously you can typically perform animations in the \ + Composable Architecture just as you would in regular SwiftUI. + + To animate the changes made to state when an action is sent to the store, you can also pass \ + along an explicit animation, or you can call `store.send` in a `withAnimation` block. + + To animate changes made to state through a binding, you can call the `animation` method on \ + `Binding`. + + To animate asynchronous changes made to state via effects, use the `Effect.run` style of \ + effects, which allows you to send actions with animations. + + Try out the demo by tapping or dragging anywhere on the screen to move the dot, and by flipping \ + the toggle at the bottom of the screen. + """ + +@Reducer +struct Animations { + @ObservableState + struct State: Equatable { + @Presents var alert: AlertState? + var circleCenter: CGPoint? + var circleColor = Color.black + var isCircleScaled = false + } + + enum Action: Sendable { + case alert(PresentationAction) + case circleScaleToggleChanged(Bool) + case rainbowButtonTapped + case resetButtonTapped + case setColor(Color) + case tapped(CGPoint) + + enum Alert: Sendable { + case resetConfirmationButtonTapped + } + } + + @Dependency(\.continuousClock) var clock + + private enum CancelID { case rainbow } + + var body: some Reducer { + Reduce { state, action in + switch action { + case .alert(.presented(.resetConfirmationButtonTapped)): + state = State() + return .cancel(id: CancelID.rainbow) + + case .alert: + return .none + + case let .circleScaleToggleChanged(isScaled): + state.isCircleScaled = isScaled + return .none + + case .rainbowButtonTapped: + return .run { send in + for color in [Color.red, .blue, .green, .orange, .pink, .purple, .yellow, .black] { + await send(.setColor(color), animation: .linear) + try await self.clock.sleep(for: .seconds(1)) + } + } + .cancellable(id: CancelID.rainbow) + + case .resetButtonTapped: + state.alert = AlertState { + TextState("Reset state?") + } actions: { + ButtonState( + role: .destructive, + action: .send(.resetConfirmationButtonTapped, animation: .default) + ) { + TextState("Reset") + } + ButtonState(role: .cancel) { + TextState("Cancel") + } + } + return .none + + case let .setColor(color): + state.circleColor = color + return .none + + case let .tapped(point): + state.circleCenter = point + return .none + } + } + .ifLet(\.$alert, action: \.alert) + } +} + +struct AnimationsView: View { + @Bindable var store: StoreOf + + var body: some View { + VStack(alignment: .leading) { + Text(template: readMe, .body) + .padding() + .gesture( + DragGesture(minimumDistance: 0).onChanged { gesture in + store.send( + .tapped(gesture.location), + animation: .interactiveSpring(response: 0.25, dampingFraction: 0.1) + ) + } + ) + .overlay { + GeometryReader { proxy in + Circle() + .fill(store.circleColor) + .colorInvert() + .blendMode(.difference) + .frame(width: 50, height: 50) + .scaleEffect(store.isCircleScaled ? 2 : 1) + .position( + x: store.circleCenter?.x ?? proxy.size.width / 2, + y: store.circleCenter?.y ?? proxy.size.height / 2 + ) + .offset(y: store.circleCenter == nil ? 0 : -44) + } + .allowsHitTesting(false) + } + Toggle( + "Big mode", + isOn: + $store.isCircleScaled.sending(\.circleScaleToggleChanged) + .animation(.interactiveSpring(response: 0.25, dampingFraction: 0.1)) + ) + .padding() + Button("Rainbow") { store.send(.rainbowButtonTapped, animation: .linear) } + .padding([.horizontal, .bottom]) + Button("Reset") { store.send(.resetButtonTapped) } + .padding([.horizontal, .bottom]) + } + .alert($store.scope(state: \.alert, action: \.alert)) + .navigationBarTitleDisplayMode(.inline) + } +} + +#Preview { + NavigationStack { + AnimationsView( + store: Store(initialState: Animations.State()) { + Animations() + } + ) + } +} + +#Preview("Dark mode") { + NavigationStack { + AnimationsView( + store: Store(initialState: Animations.State()) { + Animations() + } + ) + } + .environment(\.colorScheme, .dark) +} diff --git a/0275-shared-state-pt8/swift-composable-architecture/Examples/CaseStudies/SwiftUICaseStudies/01-GettingStarted-Bindings-Basics.swift b/0275-shared-state-pt8/swift-composable-architecture/Examples/CaseStudies/SwiftUICaseStudies/01-GettingStarted-Bindings-Basics.swift new file mode 100644 index 00000000..64228127 --- /dev/null +++ b/0275-shared-state-pt8/swift-composable-architecture/Examples/CaseStudies/SwiftUICaseStudies/01-GettingStarted-Bindings-Basics.swift @@ -0,0 +1,126 @@ +import ComposableArchitecture +import SwiftUI + +private let readMe = """ + This file demonstrates how to handle two-way bindings in the Composable Architecture. + + Two-way bindings in SwiftUI are powerful, but also go against the grain of the "unidirectional \ + data flow" of the Composable Architecture. This is because anything can mutate the value \ + whenever it wants. + + On the other hand, the Composable Architecture demands that mutations can only happen by sending \ + actions to the store, and this means there is only ever one place to see how the state of our \ + feature evolves, which is the reducer. + + Any SwiftUI component that requires a binding to do its job can be used in the Composable \ + Architecture. You can derive a binding from a store by taking a bindable store, chaining into a \ + property of state that renders the component, and calling the `sending` method with a key path \ + to an action to send when the component changes, which means you can keep using a unidirectional \ + style for your feature. + """ + +@Reducer +struct BindingBasics { + @ObservableState + struct State: Equatable { + var sliderValue = 5.0 + var stepCount = 10 + var text = "" + var toggleIsOn = false + } + + enum Action { + case sliderValueChanged(Double) + case stepCountChanged(Int) + case textChanged(String) + case toggleChanged(isOn: Bool) + } + + var body: some Reducer { + Reduce { state, action in + switch action { + case let .sliderValueChanged(value): + state.sliderValue = value + return .none + + case let .stepCountChanged(count): + state.sliderValue = .minimum(state.sliderValue, Double(count)) + state.stepCount = count + return .none + + case let .textChanged(text): + state.text = text + return .none + + case let .toggleChanged(isOn): + state.toggleIsOn = isOn + return .none + } + } + } +} + +struct BindingBasicsView: View { + @Bindable var store: StoreOf + + var body: some View { + Form { + Section { + AboutView(readMe: readMe) + } + + HStack { + TextField("Type here", text: $store.text.sending(\.textChanged)) + .disableAutocorrection(true) + .foregroundStyle(store.toggleIsOn ? Color.secondary : .primary) + Text(alternate(store.text)) + } + .disabled(store.toggleIsOn) + + Toggle( + "Disable other controls", + isOn: $store.toggleIsOn.sending(\.toggleChanged).resignFirstResponder() + ) + + Stepper( + "Max slider value: \(store.stepCount)", + value: $store.stepCount.sending(\.stepCountChanged), + in: 0...100 + ) + .disabled(store.toggleIsOn) + + HStack { + Text("Slider value: \(Int(store.sliderValue))") + Slider( + value: $store.sliderValue.sending(\.sliderValueChanged), + in: 0...Double(store.stepCount) + ) + .tint(.accentColor) + } + .disabled(store.toggleIsOn) + } + .monospacedDigit() + .navigationTitle("Bindings basics") + } +} + +private func alternate(_ string: String) -> String { + string + .enumerated() + .map { idx, char in + idx.isMultiple(of: 2) + ? char.uppercased() + : char.lowercased() + } + .joined() +} + +#Preview { + NavigationStack { + BindingBasicsView( + store: Store(initialState: BindingBasics.State()) { + BindingBasics() + } + ) + } +} diff --git a/0275-shared-state-pt8/swift-composable-architecture/Examples/CaseStudies/SwiftUICaseStudies/01-GettingStarted-Bindings-Forms.swift b/0275-shared-state-pt8/swift-composable-architecture/Examples/CaseStudies/SwiftUICaseStudies/01-GettingStarted-Bindings-Forms.swift new file mode 100644 index 00000000..5a087dcb --- /dev/null +++ b/0275-shared-state-pt8/swift-composable-architecture/Examples/CaseStudies/SwiftUICaseStudies/01-GettingStarted-Bindings-Forms.swift @@ -0,0 +1,112 @@ +import ComposableArchitecture +import SwiftUI + +private let readMe = """ + This file demonstrates how to handle two-way bindings in the Composable Architecture using \ + bindable actions and binding reducers. + + Bindable actions allow you to safely eliminate the boilerplate caused by needing to have a \ + unique action for every UI control. Instead, all UI bindings can be consolidated into a single \ + `binding` action, which the `BindingReducer` can automatically apply to state. + + It is instructive to compare this case study to the "Binding Basics" case study. + """ + +@Reducer +struct BindingForm { + @ObservableState + struct State: Equatable { + var sliderValue = 5.0 + var stepCount = 10 + var text = "" + var toggleIsOn = false + } + + enum Action: BindableAction { + case binding(BindingAction) + case resetButtonTapped + } + + var body: some Reducer { + BindingReducer() + Reduce { state, action in + switch action { + case .binding(\.stepCount): + state.sliderValue = .minimum(state.sliderValue, Double(state.stepCount)) + return .none + + case .binding: + return .none + + case .resetButtonTapped: + state = State() + return .none + } + } + } +} + +struct BindingFormView: View { + @Bindable var store: StoreOf + + var body: some View { + Form { + Section { + AboutView(readMe: readMe) + } + + HStack { + TextField("Type here", text: $store.text) + .disableAutocorrection(true) + .foregroundStyle(store.toggleIsOn ? Color.secondary : .primary) + Text(alternate(store.text)) + } + .disabled(store.toggleIsOn) + + Toggle("Disable other controls", isOn: $store.toggleIsOn.resignFirstResponder()) + + Stepper( + "Max slider value: \(store.stepCount)", + value: $store.stepCount, + in: 0...100 + ) + .disabled(store.toggleIsOn) + + HStack { + Text("Slider value: \(Int(store.sliderValue))") + + Slider(value: $store.sliderValue, in: 0...Double(store.stepCount)) + .tint(.accentColor) + } + .disabled(store.toggleIsOn) + + Button("Reset") { + store.send(.resetButtonTapped) + } + .tint(.red) + } + .monospacedDigit() + .navigationTitle("Bindings form") + } +} + +private func alternate(_ string: String) -> String { + string + .enumerated() + .map { idx, char in + idx.isMultiple(of: 2) + ? char.uppercased() + : char.lowercased() + } + .joined() +} + +#Preview { + NavigationStack { + BindingFormView( + store: Store(initialState: BindingForm.State()) { + BindingForm() + } + ) + } +} diff --git a/0275-shared-state-pt8/swift-composable-architecture/Examples/CaseStudies/SwiftUICaseStudies/01-GettingStarted-Composition-TwoCounters.swift b/0275-shared-state-pt8/swift-composable-architecture/Examples/CaseStudies/SwiftUICaseStudies/01-GettingStarted-Composition-TwoCounters.swift new file mode 100644 index 00000000..acc69491 --- /dev/null +++ b/0275-shared-state-pt8/swift-composable-architecture/Examples/CaseStudies/SwiftUICaseStudies/01-GettingStarted-Composition-TwoCounters.swift @@ -0,0 +1,68 @@ +import ComposableArchitecture +import SwiftUI + +private let readMe = """ + This screen demonstrates how to take small features and compose them into bigger ones using \ + reducer builders and the `Scope` reducer, as well as the `scope` operator on stores. + + It reuses the domain of the counter screen and embeds it, twice, in a larger domain. + """ + +@Reducer +struct TwoCounters { + @ObservableState + struct State: Equatable { + var counter1 = Counter.State() + var counter2 = Counter.State() + } + + enum Action { + case counter1(Counter.Action) + case counter2(Counter.Action) + } + + var body: some Reducer { + Scope(state: \.counter1, action: \.counter1) { + Counter() + } + Scope(state: \.counter2, action: \.counter2) { + Counter() + } + } +} + +struct TwoCountersView: View { + let store: StoreOf + + var body: some View { + Form { + Section { + AboutView(readMe: readMe) + } + + HStack { + Text("Counter 1") + Spacer() + CounterView(store: store.scope(state: \.counter1, action: \.counter1)) + } + + HStack { + Text("Counter 2") + Spacer() + CounterView(store: store.scope(state: \.counter2, action: \.counter2)) + } + } + .buttonStyle(.borderless) + .navigationTitle("Two counters demo") + } +} + +#Preview { + NavigationStack { + TwoCountersView( + store: Store(initialState: TwoCounters.State()) { + TwoCounters() + } + ) + } +} diff --git a/0275-shared-state-pt8/swift-composable-architecture/Examples/CaseStudies/SwiftUICaseStudies/01-GettingStarted-Counter.swift b/0275-shared-state-pt8/swift-composable-architecture/Examples/CaseStudies/SwiftUICaseStudies/01-GettingStarted-Counter.swift new file mode 100644 index 00000000..f94d4f64 --- /dev/null +++ b/0275-shared-state-pt8/swift-composable-architecture/Examples/CaseStudies/SwiftUICaseStudies/01-GettingStarted-Counter.swift @@ -0,0 +1,88 @@ +import ComposableArchitecture +import SwiftUI + +private let readMe = """ + This screen demonstrates the basics of the Composable Architecture in an archetypal counter \ + application. + + The domain of the application is modeled using simple data types that correspond to the mutable \ + state of the application and any actions that can affect that state or the outside world. + """ + +@Reducer +struct Counter { + @ObservableState + struct State: Equatable { + var count = 0 + } + + enum Action { + case decrementButtonTapped + case incrementButtonTapped + } + + var body: some Reducer { + Reduce { state, action in + switch action { + case .decrementButtonTapped: + state.count -= 1 + return .none + case .incrementButtonTapped: + state.count += 1 + return .none + } + } + } +} + +struct CounterView: View { + let store: StoreOf + + var body: some View { + HStack { + Button { + store.send(.decrementButtonTapped) + } label: { + Image(systemName: "minus") + } + + Text("\(store.count)") + .monospacedDigit() + + Button { + store.send(.incrementButtonTapped) + } label: { + Image(systemName: "plus") + } + } + } +} + +struct CounterDemoView: View { + let store: StoreOf + + var body: some View { + Form { + Section { + AboutView(readMe: readMe) + } + + Section { + CounterView(store: store) + .frame(maxWidth: .infinity) + } + } + .buttonStyle(.borderless) + .navigationTitle("Counter demo") + } +} + +#Preview { + NavigationStack { + CounterDemoView( + store: Store(initialState: Counter.State()) { + Counter() + } + ) + } +} diff --git a/0275-shared-state-pt8/swift-composable-architecture/Examples/CaseStudies/SwiftUICaseStudies/01-GettingStarted-FocusState.swift b/0275-shared-state-pt8/swift-composable-architecture/Examples/CaseStudies/SwiftUICaseStudies/01-GettingStarted-FocusState.swift new file mode 100644 index 00000000..3338701b --- /dev/null +++ b/0275-shared-state-pt8/swift-composable-architecture/Examples/CaseStudies/SwiftUICaseStudies/01-GettingStarted-FocusState.swift @@ -0,0 +1,81 @@ +import ComposableArchitecture +import SwiftUI + +private let readMe = """ + This demonstrates how to make use of SwiftUI's `@FocusState` in the Composable Architecture with \ + the library's `bind` view modifier. If you tap the "Sign in" button while a field is empty, the \ + focus will be changed to the first empty field. + """ + +@Reducer +struct FocusDemo { + @ObservableState + struct State: Equatable { + var focusedField: Field? + var password: String = "" + var username: String = "" + + enum Field: String, Hashable { + case username, password + } + } + + enum Action: BindableAction { + case binding(BindingAction) + case signInButtonTapped + } + + var body: some Reducer { + BindingReducer() + Reduce { state, action in + switch action { + case .binding: + return .none + + case .signInButtonTapped: + if state.username.isEmpty { + state.focusedField = .username + } else if state.password.isEmpty { + state.focusedField = .password + } + return .none + } + } + } +} + +struct FocusDemoView: View { + @Bindable var store: StoreOf + @FocusState var focusedField: FocusDemo.State.Field? + + var body: some View { + Form { + AboutView(readMe: readMe) + + VStack { + TextField("Username", text: $store.username) + .focused($focusedField, equals: .username) + SecureField("Password", text: $store.password) + .focused($focusedField, equals: .password) + Button("Sign In") { + store.send(.signInButtonTapped) + } + .buttonStyle(.borderedProminent) + } + .textFieldStyle(.roundedBorder) + } + // Synchronize store focus state and local focus state. + .bind($store.focusedField, to: $focusedField) + .navigationTitle("Focus demo") + } +} + +#Preview { + NavigationStack { + FocusDemoView( + store: Store(initialState: FocusDemo.State()) { + FocusDemo() + } + ) + } +} diff --git a/0275-shared-state-pt8/swift-composable-architecture/Examples/CaseStudies/SwiftUICaseStudies/01-GettingStarted-OptionalState.swift b/0275-shared-state-pt8/swift-composable-architecture/Examples/CaseStudies/SwiftUICaseStudies/01-GettingStarted-OptionalState.swift new file mode 100644 index 00000000..c2b8c778 --- /dev/null +++ b/0275-shared-state-pt8/swift-composable-architecture/Examples/CaseStudies/SwiftUICaseStudies/01-GettingStarted-OptionalState.swift @@ -0,0 +1,96 @@ +import ComposableArchitecture +import SwiftUI + +private let readMe = """ + This screen demonstrates how to show and hide views based on the presence of some optional child \ + state. + + The parent state holds a `Counter.State?` value. When it is `nil` we will default to a plain \ + text view. But when it is non-`nil` we will show a view fragment for a counter that operates on \ + the non-optional counter state. + + Tapping "Toggle counter state" will flip between the `nil` and non-`nil` counter states. + """ + +@Reducer +struct OptionalBasics { + @ObservableState + struct State: Equatable { + var optionalCounter: Counter.State? + } + + enum Action { + case optionalCounter(Counter.Action) + case toggleCounterButtonTapped + } + + var body: some Reducer { + Reduce { state, action in + switch action { + case .toggleCounterButtonTapped: + state.optionalCounter = + state.optionalCounter == nil + ? Counter.State() + : nil + return .none + case .optionalCounter: + return .none + } + } + .ifLet(\.optionalCounter, action: \.optionalCounter) { + Counter() + } + } +} + +struct OptionalBasicsView: View { + let store: StoreOf + + var body: some View { + Form { + Section { + AboutView(readMe: readMe) + } + + Button("Toggle counter state") { + store.send(.toggleCounterButtonTapped) + } + + if let store = store.scope(state: \.optionalCounter, action: \.optionalCounter) { + Text(template: "`Counter.State` is non-`nil`") + CounterView(store: store) + .buttonStyle(.borderless) + .frame(maxWidth: .infinity) + } else { + Text(template: "`Counter.State` is `nil`") + } + } + .navigationTitle("Optional state") + } +} + +#Preview { + NavigationStack { + OptionalBasicsView( + store: Store(initialState: OptionalBasics.State()) { + OptionalBasics() + } + ) + } +} + +#Preview("Deep-linked") { + NavigationStack { + OptionalBasicsView( + store: Store( + initialState: OptionalBasics.State( + optionalCounter: Counter.State( + count: 42 + ) + ) + ) { + OptionalBasics() + } + ) + } +} diff --git a/0275-shared-state-pt8/swift-composable-architecture/Examples/CaseStudies/SwiftUICaseStudies/01-GettingStarted-SharedState.swift b/0275-shared-state-pt8/swift-composable-architecture/Examples/CaseStudies/SwiftUICaseStudies/01-GettingStarted-SharedState.swift new file mode 100644 index 00000000..03eb6175 --- /dev/null +++ b/0275-shared-state-pt8/swift-composable-architecture/Examples/CaseStudies/SwiftUICaseStudies/01-GettingStarted-SharedState.swift @@ -0,0 +1,321 @@ +import ComposableArchitecture +import SwiftUI + +private let readMe = """ + This screen demonstrates how multiple independent screens can share state in the Composable \ + Architecture. Each tab manages its own state, and could be in separate modules, but changes in \ + one tab are immediately reflected in the other. + + This tab has its own state, consisting of a count value that can be incremented and decremented, \ + as well as an alert value that is set when asking if the current count is prime. + + Internally, it is also keeping track of various stats, such as min and max counts and total \ + number of count events that occurred. Those states are viewable in the other tab, and the stats \ + can be reset from the other tab. + """ + +extension PersistenceKey where Self == FileStorageKey { + static var stats: Self { + .fileStorage(.stats) + } +} +extension PersistenceKey where Self == AppStorageKey { + static var isOn: Self { + .appStorage("isOn") + } +} + +@Reducer +struct CounterTab { + @ObservableState + struct State: Equatable { + @Presents var alert: AlertState? + @Shared(.stats) var stats = Stats() + @Shared(.isOn) var isOn = false + } + + enum Action { + case alert(PresentationAction) + case decrementButtonTapped + case incrementButtonTapped + case isPrimeButtonTapped + case toggledIsOn(Bool) + + enum Alert: Equatable {} + } + + var body: some Reducer { + Reduce { state, action in + switch action { + case .alert: + return .none + + case .decrementButtonTapped: + state.stats.decrement() + return .none + + case .incrementButtonTapped: + state.stats.increment() + return .none + + case .isPrimeButtonTapped: + state.alert = AlertState { + TextState( + isPrime(state.stats.count) + ? "👍 The number \(state.stats.count) is prime!" + : "👎 The number \(state.stats.count) is not prime :(" + ) + } + return .none + + case let .toggledIsOn(isOn): + state.isOn = isOn + return .none + } + } + .ifLet(\.$alert, action: \.alert) + } +} + +@Observable +class CounterModel { + @ObservationIgnored + @AppStorage("isOn") var isOn = false +} + +struct CounterTabView: View { + @Bindable var store: StoreOf + @AppStorage("isOn") var isOn = false + @State var model = CounterModel() + + var body: some View { + Form { + // Text(template: readMe, .caption) + + VStack(spacing: 16) { + HStack { + Button { + store.send(.decrementButtonTapped) + } label: { + Image(systemName: "minus") + } + + Text("\(store.stats.count)") + .monospacedDigit() + + Button { + store.send(.incrementButtonTapped) + } label: { + Image(systemName: "plus") + } + } + + Button("Is this prime?") { store.send(.isPrimeButtonTapped) } + } + + Section { + Toggle(isOn: $isOn) { + Text("@AppStorage isOn: \(isOn.description)") + } + Toggle(isOn: $store.isOn.sending(\.toggledIsOn)) { + Text("Store.isOn: \(store.isOn.description)") + } +// Toggle(isOn: $model.isOn) { +// Text("@Observable @AppStorage isOn: \(model.isOn.description)") +// } + Button("Toggle user defaults directly") { + UserDefaults.standard.setValue( + !UserDefaults.standard.bool(forKey: "isOn"), + forKey: "isOn" + ) + } + } + } + .buttonStyle(.borderless) + .navigationTitle("Shared State Demo") + .alert($store.scope(state: \.alert, action: \.alert)) + } +} + +@Reducer +struct ProfileTab { + @ObservableState + struct State: Equatable { + @Shared(.stats) var stats = Stats() + @Shared(.isOn) var isOn = false + } + + enum Action { + case resetStatsButtonTapped + } + + var body: some Reducer { + Reduce { state, action in + switch action { + case .resetStatsButtonTapped: + state.stats.reset() + return .none + } + } + } +} + +struct ProfileTabView: View { + let store: StoreOf + + var body: some View { + Form { + Text( + template: """ + This tab shows state from the previous tab, and it is capable of reseting all of the \ + state back to 0. + + This shows that it is possible for each screen to model its state in the way that makes \ + the most sense for it, while still allowing the state and mutations to be shared \ + across independent screens. + """, + .caption + ) + + VStack(spacing: 16) { + Text("Current count: \(store.stats.count)") + Text("Max count: \(store.stats.maxCount)") + Text("Min count: \(store.stats.minCount)") + Text("Total number of count events: \(store.stats.numberOfCounts)") + Button("Reset") { store.send(.resetStatsButtonTapped) } + } + + Section { + Text("Is on: \(store.isOn.description)") + } + } + .buttonStyle(.borderless) + .navigationTitle("Profile") + } +} + +@Reducer +struct SharedState { + enum Tab { case counter, profile } + + @ObservableState + struct State: Equatable { + var currentTab = Tab.counter + var counter = CounterTab.State() + var profile = ProfileTab.State() + @Shared(.stats) var stats = Stats() + } + + enum Action { + case counter(CounterTab.Action) + case profile(ProfileTab.Action) + case selectTab(Tab) + } + + var body: some Reducer { + Scope(state: \.counter, action: \.counter) { + CounterTab() + } +// .onChange(of: \.counter.stats) { _, stats in +// Reduce { state, _ in +// state.profile.stats = stats +// return .none +// } +// } + + Scope(state: \.profile, action: \.profile) { + ProfileTab() + } +// .onChange(of: \.profile.stats) { _, stats in +// Reduce { state, _ in +// state.counter.stats = stats +// return .none +// } +// } + + Reduce { state, action in + switch action { + case .counter, .profile: + return .none + case let .selectTab(tab): + state.currentTab = tab + state.stats.increment() + return .none + } + } + } +} + +struct SharedStateView: View { + @Bindable var store: StoreOf + + var body: some View { + TabView(selection: $store.currentTab.sending(\.selectTab)) { + NavigationStack { + let _ = print( + CounterTabView( + store: self.store.scope(state: \.counter, action: \.counter) + ) + .defaultAppStorage(UserDefaults(suiteName: "pointfree")!) + ) + CounterTabView( + store: self.store.scope(state: \.counter, action: \.counter) + ) + .defaultAppStorage(UserDefaults(suiteName: "pointfree")!) + } + .tag(SharedState.Tab.counter) + .tabItem { Text("Counter") } + + NavigationStack { + ProfileTabView( + store: self.store.scope(state: \.profile, action: \.profile) + ) + } + .tag(SharedState.Tab.profile) + .tabItem { Text("Profile") } + } + } +} + +extension URL { + static let stats = URL.documentsDirectory.appending(path: "stats.json") +} + +struct Stats: Codable, Equatable { + private(set) var count = 0 + private(set) var maxCount = 0 + private(set) var minCount = 0 + private(set) var numberOfCounts = 0 + mutating func increment() { + count += 1 + numberOfCounts += 1 + maxCount = max(maxCount, count) + } + mutating func decrement() { + count -= 1 + numberOfCounts += 1 + minCount = min(minCount, count) + } + mutating func reset() { + self = Self() + } +} + +/// Checks if a number is prime or not. +private func isPrime(_ p: Int) -> Bool { + if p <= 1 { return false } + if p <= 3 { return true } + for i in 2...Int(sqrtf(Float(p))) { + if p % i == 0 { return false } + } + return true +} + +#Preview { + SharedStateView( + store: Store(initialState: SharedState.State()) { + SharedState() + ._printChanges() + } + ) +} diff --git a/0275-shared-state-pt8/swift-composable-architecture/Examples/CaseStudies/SwiftUICaseStudies/02-Effects-Basics.swift b/0275-shared-state-pt8/swift-composable-architecture/Examples/CaseStudies/SwiftUICaseStudies/02-Effects-Basics.swift new file mode 100644 index 00000000..f1c2497f --- /dev/null +++ b/0275-shared-state-pt8/swift-composable-architecture/Examples/CaseStudies/SwiftUICaseStudies/02-Effects-Basics.swift @@ -0,0 +1,159 @@ +import ComposableArchitecture +import SwiftUI + +private let readMe = """ + This screen demonstrates how to introduce side effects into a feature built with the \ + Composable Architecture. + + A side effect is a unit of work that needs to be performed in the outside world. For example, an \ + API request needs to reach an external service over HTTP, which brings with it lots of \ + uncertainty and complexity. + + Many things we do in our applications involve side effects, such as timers, database requests, \ + file access, socket connections, and anytime a clock is involved (such as debouncing, \ + throttling, and delaying), and they are typically difficult to test. + + This application has a simple side effect: tapping "Number fact" will trigger an API request to \ + load a piece of trivia about that number. This effect is handled by the reducer, and a full test \ + suite is written to confirm that the effect behaves in the way we expect. + """ + +@Reducer +struct EffectsBasics { + @ObservableState + struct State: Equatable { + var count = 0 + var isNumberFactRequestInFlight = false + var numberFact: String? + } + + enum Action { + case decrementButtonTapped + case decrementDelayResponse + case incrementButtonTapped + case numberFactButtonTapped + case numberFactResponse(Result) + } + + @Dependency(\.continuousClock) var clock + @Dependency(\.factClient) var factClient + private enum CancelID { case delay } + + var body: some Reducer { + Reduce { state, action in + switch action { + case .decrementButtonTapped: + state.count -= 1 + state.numberFact = nil + // Return an effect that re-increments the count after 1 second if the count is negative + return state.count >= 0 + ? .none + : .run { send in + try await self.clock.sleep(for: .seconds(1)) + await send(.decrementDelayResponse) + } + .cancellable(id: CancelID.delay) + + case .decrementDelayResponse: + if state.count < 0 { + state.count += 1 + } + return .none + + case .incrementButtonTapped: + state.count += 1 + state.numberFact = nil + return state.count >= 0 + ? .cancel(id: CancelID.delay) + : .none + + case .numberFactButtonTapped: + state.isNumberFactRequestInFlight = true + state.numberFact = nil + // Return an effect that fetches a number fact from the API and returns the + // value back to the reducer's `numberFactResponse` action. + return .run { [count = state.count] send in + await send(.numberFactResponse(Result { try await self.factClient.fetch(count) })) + } + + case let .numberFactResponse(.success(response)): + state.isNumberFactRequestInFlight = false + state.numberFact = response + return .none + + case .numberFactResponse(.failure): + // NB: This is where we could handle the error is some way, such as showing an alert. + state.isNumberFactRequestInFlight = false + return .none + } + } + } +} + +struct EffectsBasicsView: View { + let store: StoreOf + @Environment(\.openURL) var openURL + + var body: some View { + Form { + Section { + AboutView(readMe: readMe) + } + + Section { + HStack { + Button { + store.send(.decrementButtonTapped) + } label: { + Image(systemName: "minus") + } + + Text("\(store.count)") + .monospacedDigit() + + Button { + store.send(.incrementButtonTapped) + } label: { + Image(systemName: "plus") + } + } + .frame(maxWidth: .infinity) + + Button("Number fact") { store.send(.numberFactButtonTapped) } + .frame(maxWidth: .infinity) + + if store.isNumberFactRequestInFlight { + ProgressView() + .frame(maxWidth: .infinity) + // NB: There seems to be a bug in SwiftUI where the progress view does not show + // a second time unless it is given a new identity. + .id(UUID()) + } + + if let numberFact = store.numberFact { + Text(numberFact) + } + } + + Section { + Button("Number facts provided by numbersapi.com") { + openURL(URL(string: "http://numbersapi.com")!) + } + .foregroundStyle(.secondary) + .frame(maxWidth: .infinity) + } + } + .buttonStyle(.borderless) + .navigationTitle("Effects") + } +} + +#Preview { + NavigationStack { + EffectsBasicsView( + store: Store(initialState: EffectsBasics.State()) { + EffectsBasics() + } + ) + } +} diff --git a/0275-shared-state-pt8/swift-composable-architecture/Examples/CaseStudies/SwiftUICaseStudies/02-Effects-Cancellation.swift b/0275-shared-state-pt8/swift-composable-architecture/Examples/CaseStudies/SwiftUICaseStudies/02-Effects-Cancellation.swift new file mode 100644 index 00000000..ce8a24fa --- /dev/null +++ b/0275-shared-state-pt8/swift-composable-architecture/Examples/CaseStudies/SwiftUICaseStudies/02-Effects-Cancellation.swift @@ -0,0 +1,122 @@ +import ComposableArchitecture +import SwiftUI + +private let readMe = """ + This screen demonstrates how one can cancel in-flight effects in the Composable Architecture. + + Use the stepper to count to a number, and then tap the "Number fact" button to fetch \ + a random fact about that number using an API. + + While the API request is in-flight, you can tap "Cancel" to cancel the effect and prevent \ + it from feeding data back into the application. Interacting with the stepper while a \ + request is in-flight will also cancel it. + """ + +@Reducer +struct EffectsCancellation { + @ObservableState + struct State: Equatable { + var count = 0 + var currentFact: String? + var isFactRequestInFlight = false + } + + enum Action { + case cancelButtonTapped + case stepperChanged(Int) + case factButtonTapped + case factResponse(Result) + } + + @Dependency(\.factClient) var factClient + private enum CancelID { case factRequest } + + var body: some Reducer { + Reduce { state, action in + switch action { + case .cancelButtonTapped: + state.isFactRequestInFlight = false + return .cancel(id: CancelID.factRequest) + + case let .stepperChanged(value): + state.count = value + state.currentFact = nil + state.isFactRequestInFlight = false + return .cancel(id: CancelID.factRequest) + + case .factButtonTapped: + state.currentFact = nil + state.isFactRequestInFlight = true + + return .run { [count = state.count] send in + await send(.factResponse(Result { try await self.factClient.fetch(count) })) + } + .cancellable(id: CancelID.factRequest) + + case let .factResponse(.success(response)): + state.isFactRequestInFlight = false + state.currentFact = response + return .none + + case .factResponse(.failure): + state.isFactRequestInFlight = false + return .none + } + } + } +} + +struct EffectsCancellationView: View { + @Bindable var store: StoreOf + @Environment(\.openURL) var openURL + + var body: some View { + Form { + Section { + AboutView(readMe: readMe) + } + + Section { + Stepper("\(store.count)", value: $store.count.sending(\.stepperChanged)) + + if store.isFactRequestInFlight { + HStack { + Button("Cancel") { store.send(.cancelButtonTapped) } + Spacer() + ProgressView() + // NB: There seems to be a bug in SwiftUI where the progress view does not show + // a second time unless it is given a new identity. + .id(UUID()) + } + } else { + Button("Number fact") { store.send(.factButtonTapped) } + .disabled(store.isFactRequestInFlight) + } + + if let fact = store.currentFact { + Text(fact).padding(.vertical, 8) + } + } + + Section { + Button("Number facts provided by numbersapi.com") { + self.openURL(URL(string: "http://numbersapi.com")!) + } + .foregroundStyle(.secondary) + .frame(maxWidth: .infinity) + } + } + .buttonStyle(.borderless) + .navigationTitle("Effect cancellation") + } +} + +#Preview { + NavigationStack { + EffectsCancellationView( + store: Store(initialState: EffectsCancellation.State()) { + EffectsCancellation() + } + ) + } +} diff --git a/0275-shared-state-pt8/swift-composable-architecture/Examples/CaseStudies/SwiftUICaseStudies/02-Effects-LongLiving.swift b/0275-shared-state-pt8/swift-composable-architecture/Examples/CaseStudies/SwiftUICaseStudies/02-Effects-LongLiving.swift new file mode 100644 index 00000000..586b8e03 --- /dev/null +++ b/0275-shared-state-pt8/swift-composable-architecture/Examples/CaseStudies/SwiftUICaseStudies/02-Effects-LongLiving.swift @@ -0,0 +1,111 @@ +import ComposableArchitecture +import SwiftUI + +private let readMe = """ + This application demonstrates how to handle long-living effects, for example notifications from \ + Notification Center, and how to tie an effect's lifetime to the lifetime of the view. + + Run this application in the simulator, and take a few screenshots by going to \ + *Device › Screenshot* in the menu, and observe that the UI counts the number of times that \ + happens. + + Then, navigate to another screen and take screenshots there, and observe that this screen does \ + *not* count those screenshots. The notifications effect is automatically cancelled when leaving \ + the screen, and restarted when entering the screen. + """ + +@Reducer +struct LongLivingEffects { + @ObservableState + struct State: Equatable { + var screenshotCount = 0 + } + + enum Action { + case task + case userDidTakeScreenshotNotification + } + + @Dependency(\.screenshots) var screenshots + + var body: some Reducer { + Reduce { state, action in + switch action { + case .task: + // When the view appears, start the effect that emits when screenshots are taken. + return .run { send in + for await _ in await self.screenshots() { + await send(.userDidTakeScreenshotNotification) + } + } + + case .userDidTakeScreenshotNotification: + state.screenshotCount += 1 + return .none + } + } + } +} + +extension DependencyValues { + var screenshots: @Sendable () async -> AsyncStream { + get { self[ScreenshotsKey.self] } + set { self[ScreenshotsKey.self] = newValue } + } +} + +private enum ScreenshotsKey: DependencyKey { + static let liveValue: @Sendable () async -> AsyncStream = { + await AsyncStream( + NotificationCenter.default + .notifications(named: UIApplication.userDidTakeScreenshotNotification) + .map { _ in } + ) + } +} + +struct LongLivingEffectsView: View { + let store: StoreOf + + var body: some View { + Form { + Section { + AboutView(readMe: readMe) + } + + Text("A screenshot of this screen has been taken \(store.screenshotCount) times.") + .font(.headline) + + Section { + NavigationLink { + detailView + } label: { + Text("Navigate to another screen") + } + } + } + .navigationTitle("Long-living effects") + .task { await store.send(.task).finish() } + } + + var detailView: some View { + Text( + """ + Take a screenshot of this screen a few times, and then go back to the previous screen to see \ + that those screenshots were not counted. + """ + ) + .padding(.horizontal, 64) + .navigationBarTitleDisplayMode(.inline) + } +} + +#Preview { + NavigationStack { + LongLivingEffectsView( + store: Store(initialState: LongLivingEffects.State()) { + LongLivingEffects() + } + ) + } +} diff --git a/0275-shared-state-pt8/swift-composable-architecture/Examples/CaseStudies/SwiftUICaseStudies/02-Effects-Refreshable.swift b/0275-shared-state-pt8/swift-composable-architecture/Examples/CaseStudies/SwiftUICaseStudies/02-Effects-Refreshable.swift new file mode 100644 index 00000000..46271c04 --- /dev/null +++ b/0275-shared-state-pt8/swift-composable-architecture/Examples/CaseStudies/SwiftUICaseStudies/02-Effects-Refreshable.swift @@ -0,0 +1,123 @@ +import ComposableArchitecture +import SwiftUI + +private let readMe = """ + This application demonstrates how to make use of SwiftUI's `refreshable` API in the Composable \ + Architecture. Use the "-" and "+" buttons to count up and down, and then pull down to request \ + a fact about that number. + + There is a discardable task that is returned from the store's `.send` method representing any \ + effects kicked off by the reducer. You can `await` this task using its `.finish` method, which \ + will suspend while the effects remain in flight. This suspension communicates to SwiftUI that \ + you are currently fetching data so that it knows to continue showing the loading indicator. + """ + +@Reducer +struct Refreshable { + @ObservableState + struct State: Equatable { + var count = 0 + var fact: String? + } + + enum Action { + case cancelButtonTapped + case decrementButtonTapped + case factResponse(Result) + case incrementButtonTapped + case refresh + } + + @Dependency(\.factClient) var factClient + private enum CancelID { case factRequest } + + var body: some Reducer { + Reduce { state, action in + switch action { + case .cancelButtonTapped: + return .cancel(id: CancelID.factRequest) + + case .decrementButtonTapped: + state.count -= 1 + return .none + + case let .factResponse(.success(fact)): + state.fact = fact + return .none + + case .factResponse(.failure): + // NB: This is where you could do some error handling. + return .none + + case .incrementButtonTapped: + state.count += 1 + return .none + + case .refresh: + state.fact = nil + return .run { [count = state.count] send in + await send( + .factResponse(Result { try await self.factClient.fetch(count) }), + animation: .default + ) + } + .cancellable(id: CancelID.factRequest) + } + } + } +} + +struct RefreshableView: View { + let store: StoreOf + @State var isLoading = false + + var body: some View { + List { + Section { + AboutView(readMe: readMe) + } + + HStack { + Button { + store.send(.decrementButtonTapped) + } label: { + Image(systemName: "minus") + } + + Text("\(store.count)") + .monospacedDigit() + + Button { + store.send(.incrementButtonTapped) + } label: { + Image(systemName: "plus") + } + } + .frame(maxWidth: .infinity) + .buttonStyle(.borderless) + + if let fact = store.fact { + Text(fact) + .bold() + } + if self.isLoading { + Button("Cancel") { + store.send(.cancelButtonTapped, animation: .default) + } + } + } + .refreshable { + isLoading = true + defer { isLoading = false } + await store.send(.refresh).finish() + } + } +} + +#Preview { + RefreshableView( + store: Store(initialState: Refreshable.State()) { + Refreshable() + } + ) +} diff --git a/0275-shared-state-pt8/swift-composable-architecture/Examples/CaseStudies/SwiftUICaseStudies/02-Effects-SystemEnvironment.swift b/0275-shared-state-pt8/swift-composable-architecture/Examples/CaseStudies/SwiftUICaseStudies/02-Effects-SystemEnvironment.swift new file mode 100644 index 00000000..294498ba --- /dev/null +++ b/0275-shared-state-pt8/swift-composable-architecture/Examples/CaseStudies/SwiftUICaseStudies/02-Effects-SystemEnvironment.swift @@ -0,0 +1,243 @@ +import ComposableArchitecture +import Foundation +import SwiftUI + +private let readMe = """ + This screen demonstrates how one can share system-wide dependencies across many features with \ + very little work. The idea is to create a `SystemEnvironment` generic type that wraps an \ + environment, and then implement dynamic member lookup so that you can seamlessly use the \ + dependencies in both environments. + + Then, throughout your application you can wrap your environments in the `SystemEnvironment` \ + to get instant access to all of the shared dependencies. Some good candidates for dependencies \ + to share are things like date initializers, schedulers (especially `DispatchQueue.main`), `UUID` \ + initializers, and any other dependency in your application that you want every reducer to have \ + access to. + """ + +struct MultipleDependenciesState: Equatable { + var alert: AlertState? + var dateString: String? + var fetchedNumberString: String? + var isFetchInFlight = false + var uuidString: String? +} + +enum MultipleDependenciesAction: Equatable { + case alertButtonTapped + case alertDelayReceived + case alertDismissed + case dateButtonTapped + case fetchNumberButtonTapped + case fetchNumberResponse(Int) + case uuidButtonTapped +} + +struct MultipleDependenciesEnvironment { + var fetchNumber: @Sendable () async throws -> Int +} + +let multipleDependenciesReducer = Reducer< + MultipleDependenciesState, + MultipleDependenciesAction, + SystemEnvironment +> { state, action, environment in + + switch action { + case .alertButtonTapped: + return .task { + try await environment.mainQueue.sleep(for: 1) + return .alertDelayReceived + } + + case .alertDelayReceived: + state.alert = AlertState(title: TextState("Here's an alert after a delay!")) + return .none + + case .alertDismissed: + state.alert = nil + return .none + + case .dateButtonTapped: + state.dateString = "\(environment.date())" + return .none + + case .fetchNumberButtonTapped: + state.isFetchInFlight = true + return .task { .fetchNumberResponse(try await environment.fetchNumber()) } + + case let .fetchNumberResponse(number): + state.isFetchInFlight = false + state.fetchedNumberString = "\(number)" + return .none + + case .uuidButtonTapped: + state.uuidString = "\(environment.uuid())" + return .none + } +} + +struct MultipleDependenciesView: View { + let store: Store + + var body: some View { + WithViewStore(self.store, observe: { $0 }) { viewStore in + Form { + AboutView(readMe: readMe) + + Section { + HStack { + Button("Date") { viewStore.send(.dateButtonTapped) } + if let dateString = viewStore.dateString { + Spacer() + Text(dateString) + } + } + + HStack { + Button("UUID") { viewStore.send(.uuidButtonTapped) } + if let uuidString = viewStore.uuidString { + Spacer() + Text(uuidString) + .minimumScaleFactor(0.5) + .lineLimit(1) + } + } + + Button("Delayed Alert") { viewStore.send(.alertButtonTapped) } + .alert(self.store.scope(state: \.alert), dismiss: .alertDismissed) + } header: { + Text( + template: """ + The actions below make use of the dependencies in the `SystemEnvironment`. + """, .caption + ) + .textCase(.none) + } + + Section { + HStack { + Button("Fetch Number") { viewStore.send(.fetchNumberButtonTapped) } + .disabled(viewStore.isFetchInFlight) + Spacer() + + if viewStore.isFetchInFlight { + ProgressView() + } else if let fetchedNumberString = viewStore.fetchedNumberString { + Text(fetchedNumberString) + } + } + } header: { + Text( + template: """ + The actions below make use of the custom environment for this screen, which holds a \ + dependency for fetching a random number. + """, .caption + ) + .textCase(.none) + } + + } + .buttonStyle(.borderless) + } + .navigationTitle("System Environment") + } +} + +struct MultipleDependenciesView_Previews: PreviewProvider { + static var previews: some View { + NavigationView { + MultipleDependenciesView( + store: Store( + initialState: MultipleDependenciesState(), + reducer: multipleDependenciesReducer, + environment: .live( + environment: MultipleDependenciesEnvironment( + fetchNumber: { + try await Task.sleep(nanoseconds: NSEC_PER_SEC) + return Int.random(in: 1...1_000) + } + ) + ) + ) + ) + } + } +} + +@dynamicMemberLookup +struct SystemEnvironment { + var date: @Sendable () -> Date + var environment: Environment + var mainQueue: AnySchedulerOf + var uuid: @Sendable () -> UUID + + subscript( + dynamicMember keyPath: WritableKeyPath + ) -> Dependency { + get { self.environment[keyPath: keyPath] } + set { self.environment[keyPath: keyPath] = newValue } + } + + /// Creates a live system environment with the wrapped environment provided. + /// + /// - Parameter environment: An environment to be wrapped in the system environment. + /// - Returns: A new system environment. + static func live(environment: Environment) -> Self { + Self( + date: { Date() }, + environment: environment, + mainQueue: .main, + uuid: { UUID() } + ) + } + + /// Transforms the underlying wrapped environment. + func map( + _ transform: @escaping (Environment) -> NewEnvironment + ) -> SystemEnvironment { + .init( + date: self.date, + environment: transform(self.environment), + mainQueue: self.mainQueue, + uuid: self.uuid + ) + } +} + +extension SystemEnvironment: Sendable where Environment: Sendable {} + +#if DEBUG + import XCTestDynamicOverlay + + extension SystemEnvironment { + static func unimplemented( + date: @escaping @Sendable () -> Date = XCTUnimplemented( + "\(Self.self).date", placeholder: Date() + ), + environment: Environment, + mainQueue: AnySchedulerOf = .unimplemented, + uuid: @escaping @Sendable () -> UUID = XCTUnimplemented( + "\(Self.self).uuid", placeholder: UUID() + ) + ) -> Self { + Self( + date: date, + environment: environment, + mainQueue: mainQueue, + uuid: uuid + ) + } + } +#endif + +extension UUID { + /// A deterministic, auto-incrementing "UUID" generator for testing. + static var incrementing: () -> UUID { + var uuid = 0 + return { + defer { uuid += 1 } + return UUID(uuidString: "00000000-0000-0000-0000-\(String(format: "%012x", uuid))")! + } + } +} diff --git a/0275-shared-state-pt8/swift-composable-architecture/Examples/CaseStudies/SwiftUICaseStudies/02-Effects-Timers.swift b/0275-shared-state-pt8/swift-composable-architecture/Examples/CaseStudies/SwiftUICaseStudies/02-Effects-Timers.swift new file mode 100644 index 00000000..7b143f60 --- /dev/null +++ b/0275-shared-state-pt8/swift-composable-architecture/Examples/CaseStudies/SwiftUICaseStudies/02-Effects-Timers.swift @@ -0,0 +1,123 @@ +import ComposableArchitecture +import SwiftUI + +private let readMe = """ + This application demonstrates how to work with timers in the Composable Architecture. + + It makes use of the `.timer` method on clocks, which is a helper provided by the Swift Clocks \ + library included with this library. The helper provides an `AsyncSequence`-friendly API for \ + dealing with times in asynchronous code. + """ + +@Reducer +struct Timers { + @ObservableState + struct State: Equatable { + var isTimerActive = false + var secondsElapsed = 0 + } + + enum Action { + case onDisappear + case timerTicked + case toggleTimerButtonTapped + } + + @Dependency(\.continuousClock) var clock + private enum CancelID { case timer } + + var body: some Reducer { + Reduce { state, action in + switch action { + case .onDisappear: + return .cancel(id: CancelID.timer) + + case .timerTicked: + state.secondsElapsed += 1 + return .none + + case .toggleTimerButtonTapped: + state.isTimerActive.toggle() + return .run { [isTimerActive = state.isTimerActive] send in + guard isTimerActive else { return } + for await _ in self.clock.timer(interval: .seconds(1)) { + await send(.timerTicked, animation: .interpolatingSpring(stiffness: 3000, damping: 40)) + } + } + .cancellable(id: CancelID.timer, cancelInFlight: true) + } + } + } +} + +struct TimersView: View { + var store: StoreOf + + var body: some View { + Form { + AboutView(readMe: readMe) + + ZStack { + Circle() + .fill( + AngularGradient( + gradient: Gradient( + colors: [ + .blue.opacity(0.3), + .blue, + .blue, + .green, + .green, + .yellow, + .yellow, + .red, + .red, + .purple, + .purple, + .purple.opacity(0.3), + ] + ), + center: .center + ) + ) + .rotationEffect(.degrees(-90)) + GeometryReader { proxy in + Path { path in + path.move(to: CGPoint(x: proxy.size.width / 2, y: proxy.size.height / 2)) + path.addLine(to: CGPoint(x: proxy.size.width / 2, y: 0)) + } + .stroke(.primary, lineWidth: 3) + .rotationEffect(.degrees(Double(store.secondsElapsed) * 360 / 60)) + } + } + .aspectRatio(1, contentMode: .fit) + .frame(maxWidth: 280) + .frame(maxWidth: .infinity) + .padding(.vertical, 16) + + Button { + store.send(.toggleTimerButtonTapped) + } label: { + Text(store.isTimerActive ? "Stop" : "Start") + .padding(8) + } + .frame(maxWidth: .infinity) + .tint(store.isTimerActive ? Color.red : .accentColor) + .buttonStyle(.borderedProminent) + } + .navigationTitle("Timers") + .onDisappear { + store.send(.onDisappear) + } + } +} + +#Preview { + NavigationStack { + TimersView( + store: Store(initialState: Timers.State()) { + Timers() + } + ) + } +} diff --git a/0275-shared-state-pt8/swift-composable-architecture/Examples/CaseStudies/SwiftUICaseStudies/02-Effects-WebSocket.swift b/0275-shared-state-pt8/swift-composable-architecture/Examples/CaseStudies/SwiftUICaseStudies/02-Effects-WebSocket.swift new file mode 100644 index 00000000..07f867e4 --- /dev/null +++ b/0275-shared-state-pt8/swift-composable-architecture/Examples/CaseStudies/SwiftUICaseStudies/02-Effects-WebSocket.swift @@ -0,0 +1,360 @@ +import ComposableArchitecture +import SwiftUI + +private let readMe = """ + This application demonstrates how to work with a web socket in the Composable Architecture. + + A lightweight wrapper is made for `URLSession`'s API for web sockets so that we can send, \ + receive and ping a socket endpoint. To test, connect to the socket server, and then send a \ + message. The socket server should immediately reply with the exact message you sent in. + """ + +@Reducer +struct WebSocket { + @ObservableState + struct State: Equatable { + @Presents var alert: AlertState? + var connectivityState = ConnectivityState.disconnected + var messageToSend = "" + var receivedMessages: [String] = [] + + enum ConnectivityState: String { + case connected + case connecting + case disconnected + } + } + + enum Action { + case alert(PresentationAction) + case connectButtonTapped + case messageToSendChanged(String) + case receivedSocketMessage(Result) + case sendButtonTapped + case sendResponse(didSucceed: Bool) + case webSocket(WebSocketClient.Action) + + enum Alert: Equatable {} + } + + @Dependency(\.continuousClock) var clock + @Dependency(\.webSocket) var webSocket + + var body: some Reducer { + Reduce { state, action in + switch action { + case .alert: + return .none + + case .connectButtonTapped: + switch state.connectivityState { + case .connected, .connecting: + state.connectivityState = .disconnected + return .cancel(id: WebSocketClient.ID()) + + case .disconnected: + state.connectivityState = .connecting + return .run { send in + let actions = await self.webSocket.open( + id: WebSocketClient.ID(), + url: URL(string: "wss://echo.websocket.events")!, + protocols: [] + ) + await withThrowingTaskGroup(of: Void.self) { group in + for await action in actions { + // NB: Can't call `await send` here outside of `group.addTask` due to task local + // dependency mutation in `Effect.{task,run}`. Can maybe remove that explicit task + // local mutation (and this `addTask`?) in a world with + // `Effect(operation: .run { ... })`? + group.addTask { await send(.webSocket(action)) } + switch action { + case .didOpen: + group.addTask { + while !Task.isCancelled { + try await self.clock.sleep(for: .seconds(10)) + try? await self.webSocket.sendPing(id: WebSocketClient.ID()) + } + } + group.addTask { + for await result in try await self.webSocket.receive(id: WebSocketClient.ID()) { + await send(.receivedSocketMessage(result)) + } + } + case .didClose: + return + } + } + } + } + .cancellable(id: WebSocketClient.ID()) + } + + case let .messageToSendChanged(message): + state.messageToSend = message + return .none + + case let .receivedSocketMessage(.success(message)): + if case let .string(string) = message { + state.receivedMessages.append(string) + } + return .none + + case .receivedSocketMessage(.failure): + return .none + + case .sendButtonTapped: + let messageToSend = state.messageToSend + state.messageToSend = "" + return .run { send in + try await self.webSocket.send(id: WebSocketClient.ID(), message: .string(messageToSend)) + await send(.sendResponse(didSucceed: true)) + } catch: { _, send in + await send(.sendResponse(didSucceed: false)) + } + .cancellable(id: WebSocketClient.ID()) + + case .sendResponse(didSucceed: false): + state.alert = AlertState { + TextState("Could not send socket message. Connect to the server first, and try again.") + } + return .none + + case .sendResponse(didSucceed: true): + return .none + + case .webSocket(.didClose): + state.connectivityState = .disconnected + return .cancel(id: WebSocketClient.ID()) + + case .webSocket(.didOpen): + state.connectivityState = .connected + state.receivedMessages.removeAll() + return .none + } + } + .ifLet(\.$alert, action: \.alert) + } +} + +struct WebSocketView: View { + @Bindable var store: StoreOf + + var body: some View { + Form { + Section { + AboutView(readMe: readMe) + } + + Section { + VStack(alignment: .leading) { + Button( + store.connectivityState == .connected + ? "Disconnect" + : store.connectivityState == .disconnected + ? "Connect" + : "Connecting..." + ) { + store.send(.connectButtonTapped) + } + .buttonStyle(.bordered) + .tint(store.connectivityState == .connected ? .red : .green) + + HStack { + TextField( + "Type message here", + text: $store.messageToSend.sending(\.messageToSendChanged) + ) + .textFieldStyle(.roundedBorder) + + Button("Send") { + store.send(.sendButtonTapped) + } + .buttonStyle(.borderless) + } + } + } + + Section { + Text("Status: \(store.connectivityState.rawValue)") + .foregroundStyle(.secondary) + Text(store.receivedMessages.reversed().joined(separator: "\n")) + } header: { + Text("Received messages") + } + } + .alert($store.scope(state: \.alert, action: \.alert)) + .navigationTitle("Web Socket") + } +} + +@DependencyClient +struct WebSocketClient { + struct ID: Hashable, @unchecked Sendable { + let rawValue: AnyHashable + + init(_ rawValue: RawValue) { + self.rawValue = rawValue + } + + init() { + struct RawValue: Hashable, Sendable {} + self.rawValue = RawValue() + } + } + + @CasePathable + enum Action { + case didOpen(protocol: String?) + case didClose(code: URLSessionWebSocketTask.CloseCode, reason: Data?) + } + + @CasePathable + enum Message: Equatable { + struct Unknown: Error {} + + case data(Data) + case string(String) + + init(_ message: URLSessionWebSocketTask.Message) throws { + switch message { + case let .data(data): self = .data(data) + case let .string(string): self = .string(string) + @unknown default: throw Unknown() + } + } + } + + var open: @Sendable (_ id: ID, _ url: URL, _ protocols: [String]) async -> AsyncStream = { + _, _, _ in .finished + } + var receive: @Sendable (_ id: ID) async throws -> AsyncStream> + var send: @Sendable (_ id: ID, _ message: URLSessionWebSocketTask.Message) async throws -> Void + var sendPing: @Sendable (_ id: ID) async throws -> Void +} + +extension WebSocketClient: DependencyKey { + static var liveValue: Self { + return Self( + open: { await WebSocketActor.shared.open(id: $0, url: $1, protocols: $2) }, + receive: { try await WebSocketActor.shared.receive(id: $0) }, + send: { try await WebSocketActor.shared.send(id: $0, message: $1) }, + sendPing: { try await WebSocketActor.shared.sendPing(id: $0) } + ) + + final actor WebSocketActor: GlobalActor { + final class Delegate: NSObject, URLSessionWebSocketDelegate { + var continuation: AsyncStream.Continuation? + + func urlSession( + _: URLSession, + webSocketTask _: URLSessionWebSocketTask, + didOpenWithProtocol protocol: String? + ) { + self.continuation?.yield(.didOpen(protocol: `protocol`)) + } + + func urlSession( + _: URLSession, + webSocketTask _: URLSessionWebSocketTask, + didCloseWith closeCode: URLSessionWebSocketTask.CloseCode, + reason: Data? + ) { + self.continuation?.yield(.didClose(code: closeCode, reason: reason)) + self.continuation?.finish() + } + } + + typealias Dependencies = (socket: URLSessionWebSocketTask, delegate: Delegate) + + static let shared = WebSocketActor() + + var dependencies: [ID: Dependencies] = [:] + + func open(id: ID, url: URL, protocols: [String]) -> AsyncStream { + let delegate = Delegate() + let session = URLSession(configuration: .default, delegate: delegate, delegateQueue: nil) + let socket = session.webSocketTask(with: url, protocols: protocols) + defer { socket.resume() } + var continuation: AsyncStream.Continuation! + let stream = AsyncStream { + $0.onTermination = { _ in + socket.cancel() + Task { await self.removeDependencies(id: id) } + } + continuation = $0 + } + delegate.continuation = continuation + self.dependencies[id] = (socket, delegate) + return stream + } + + func close( + id: ID, with closeCode: URLSessionWebSocketTask.CloseCode, reason: Data? + ) async throws { + defer { self.dependencies[id] = nil } + try self.socket(id: id).cancel(with: closeCode, reason: reason) + } + + func receive(id: ID) throws -> AsyncStream> { + let socket = try self.socket(id: id) + return AsyncStream { continuation in + let task = Task { + while !Task.isCancelled { + continuation.yield(await Result { try await Message(socket.receive()) }) + } + continuation.finish() + } + continuation.onTermination = { _ in task.cancel() } + } + } + + func send(id: ID, message: URLSessionWebSocketTask.Message) async throws { + try await self.socket(id: id).send(message) + } + + func sendPing(id: ID) async throws { + let socket = try self.socket(id: id) + return try await withCheckedThrowingContinuation { continuation in + socket.sendPing { error in + if let error { + continuation.resume(throwing: error) + } else { + continuation.resume() + } + } + } + } + + private func socket(id: ID) throws -> URLSessionWebSocketTask { + guard let dependencies = self.dependencies[id]?.socket else { + struct Closed: Error {} + throw Closed() + } + return dependencies + } + + private func removeDependencies(id: ID) { + self.dependencies[id] = nil + } + } + } + + static let testValue = Self() +} + +extension DependencyValues { + var webSocket: WebSocketClient { + get { self[WebSocketClient.self] } + set { self[WebSocketClient.self] = newValue } + } +} + +#Preview { + NavigationStack { + WebSocketView( + store: Store(initialState: WebSocket.State(receivedMessages: ["Hi"])) { + WebSocket() + } + ) + } +} diff --git a/0275-shared-state-pt8/swift-composable-architecture/Examples/CaseStudies/SwiftUICaseStudies/03-Navigation-Lists-NavigateAndLoad.swift b/0275-shared-state-pt8/swift-composable-architecture/Examples/CaseStudies/SwiftUICaseStudies/03-Navigation-Lists-NavigateAndLoad.swift new file mode 100644 index 00000000..7f33b713 --- /dev/null +++ b/0275-shared-state-pt8/swift-composable-architecture/Examples/CaseStudies/SwiftUICaseStudies/03-Navigation-Lists-NavigateAndLoad.swift @@ -0,0 +1,120 @@ +import ComposableArchitecture +import SwiftUI + +private let readMe = """ + This screen demonstrates navigation that depends on loading optional state from a list element. + + Tapping a row simultaneously navigates to a screen that depends on its associated counter state \ + and fires off an effect that will load this state a second later. + """ + +@Reducer +struct NavigateAndLoadList { + struct State: Equatable { + var rows: IdentifiedArrayOf = [ + Row(count: 1, id: UUID()), + Row(count: 42, id: UUID()), + Row(count: 100, id: UUID()), + ] + var selection: Identified? + + struct Row: Equatable, Identifiable { + var count: Int + let id: UUID + } + } + + enum Action { + case counter(Counter.Action) + case setNavigation(selection: UUID?) + case setNavigationSelectionDelayCompleted + } + + @Dependency(\.continuousClock) var clock + private enum CancelID { case load } + + var body: some Reducer { + Reduce { state, action in + switch action { + case .counter: + return .none + + case let .setNavigation(selection: .some(id)): + state.selection = Identified(nil, id: id) + return .run { send in + try await self.clock.sleep(for: .seconds(1)) + await send(.setNavigationSelectionDelayCompleted) + } + .cancellable(id: CancelID.load, cancelInFlight: true) + + case .setNavigation(selection: .none): + if let selection = state.selection, let count = selection.value?.count { + state.rows[id: selection.id]?.count = count + } + state.selection = nil + return .cancel(id: CancelID.load) + + case .setNavigationSelectionDelayCompleted: + guard let id = state.selection?.id else { return .none } + state.selection?.value = Counter.State(count: state.rows[id: id]?.count ?? 0) + return .none + } + } + .ifLet(\.selection, action: \.counter) { + EmptyReducer() + .ifLet(\.value, action: \.self) { + Counter() + } + } + } +} + +struct NavigateAndLoadListView: View { + @Bindable var store: StoreOf + + var body: some View { + WithViewStore(self.store, observe: { $0 }) { viewStore in + Form { + Section { + AboutView(readMe: readMe) + } + ForEach(viewStore.rows) { row in + NavigationLink( + "Load optional counter that starts from \(row.count)", + tag: row.id, + selection: viewStore.binding( + get: \.selection?.id, + send: { .setNavigation(selection: $0) } + ) + ) { + IfLetStore(self.store.scope(state: \.selection?.value, action: \.counter)) { + CounterView(store: $0) + } else: { + ProgressView() + } + } + } + } + } + .navigationTitle("Navigate and load") + } +} + +#Preview { + NavigationView { + NavigateAndLoadListView( + store: Store( + initialState: NavigateAndLoadList.State( + rows: [ + NavigateAndLoadList.State.Row(count: 1, id: UUID()), + NavigateAndLoadList.State.Row(count: 42, id: UUID()), + NavigateAndLoadList.State.Row(count: 100, id: UUID()), + ] + ) + ) { + NavigateAndLoadList() + } + ) + } + .navigationViewStyle(.stack) +} diff --git a/0275-shared-state-pt8/swift-composable-architecture/Examples/CaseStudies/SwiftUICaseStudies/03-Navigation-Multiple-Destinations.swift b/0275-shared-state-pt8/swift-composable-architecture/Examples/CaseStudies/SwiftUICaseStudies/03-Navigation-Multiple-Destinations.swift new file mode 100644 index 00000000..f82f41a7 --- /dev/null +++ b/0275-shared-state-pt8/swift-composable-architecture/Examples/CaseStudies/SwiftUICaseStudies/03-Navigation-Multiple-Destinations.swift @@ -0,0 +1,84 @@ +import ComposableArchitecture +import SwiftUI + +private let readMe = """ + This screen demonstrates driving 3 kinds of navigation (drill down, sheet, popover) from a single + piece of enum state. + """ + +@Reducer +struct MultipleDestinations { + @Reducer(state: .equatable) + enum Destination { + case drillDown(Counter) + case popover(Counter) + case sheet(Counter) + } + + @ObservableState + struct State: Equatable { + @Presents var destination: Destination.State? + } + + enum Action { + case destination(PresentationAction) + case showDrillDown + case showPopover + case showSheet + } + + var body: some Reducer { + Reduce { state, action in + switch action { + case .showDrillDown: + state.destination = .drillDown(Counter.State()) + return .none + case .showPopover: + state.destination = .popover(Counter.State()) + return .none + case .showSheet: + state.destination = .sheet(Counter.State()) + return .none + case .destination: + return .none + } + } + .ifLet(\.$destination, action: \.destination) + } +} + +struct MultipleDestinationsView: View { + @Bindable var store: StoreOf + + var body: some View { + Form { + Section { + AboutView(readMe: readMe) + } + Button("Show drill-down") { + store.send(.showDrillDown) + } + Button("Show popover") { + store.send(.showPopover) + } + Button("Show sheet") { + store.send(.showSheet) + } + } + .navigationDestination( + item: $store.scope(state: \.destination?.drillDown, action: \.destination.drillDown) + ) { store in + CounterView(store: store) + } + .popover( + item: $store.scope(state: \.destination?.popover, action: \.destination.popover) + ) { store in + CounterView(store: store) + } + .sheet( + item: $store.scope(state: \.destination?.sheet, action: \.destination.sheet) + ) { store in + CounterView(store: store) + } + } +} diff --git a/0275-shared-state-pt8/swift-composable-architecture/Examples/CaseStudies/SwiftUICaseStudies/03-Navigation-NavigateAndLoad.swift b/0275-shared-state-pt8/swift-composable-architecture/Examples/CaseStudies/SwiftUICaseStudies/03-Navigation-NavigateAndLoad.swift new file mode 100644 index 00000000..f51a9f53 --- /dev/null +++ b/0275-shared-state-pt8/swift-composable-architecture/Examples/CaseStudies/SwiftUICaseStudies/03-Navigation-NavigateAndLoad.swift @@ -0,0 +1,90 @@ +import ComposableArchitecture +import SwiftUI + +private let readMe = """ + This screen demonstrates navigation that depends on loading optional state. + + Tapping "Load optional counter" simultaneously navigates to a screen that depends on optional \ + counter state and fires off an effect that will load this state a second later. + """ + +@Reducer +struct NavigateAndLoad { + @ObservableState + struct State: Equatable { + var isNavigationActive = false + var optionalCounter: Counter.State? + } + + enum Action { + case optionalCounter(Counter.Action) + case setNavigation(isActive: Bool) + case setNavigationIsActiveDelayCompleted + } + + @Dependency(\.continuousClock) var clock + private enum CancelID { case load } + + var body: some Reducer { + Reduce { state, action in + switch action { + case .setNavigation(isActive: true): + state.isNavigationActive = true + return .run { send in + try await self.clock.sleep(for: .seconds(1)) + await send(.setNavigationIsActiveDelayCompleted) + } + .cancellable(id: CancelID.load) + + case .setNavigation(isActive: false): + state.isNavigationActive = false + state.optionalCounter = nil + return .cancel(id: CancelID.load) + + case .setNavigationIsActiveDelayCompleted: + state.optionalCounter = Counter.State() + return .none + + case .optionalCounter: + return .none + } + } + .ifLet(\.optionalCounter, action: \.optionalCounter) { + Counter() + } + } +} + +struct NavigateAndLoadView: View { + @Bindable var store: StoreOf + + var body: some View { + Form { + Section { + AboutView(readMe: readMe) + } + NavigationLink( + "Load optional counter", + isActive: $store.isNavigationActive.sending(\.setNavigation) + ) { + if let store = store.scope(state: \.optionalCounter, action: \.optionalCounter) { + CounterView(store: store) + } else { + ProgressView() + } + } + } + .navigationTitle("Navigate and load") + } +} + +#Preview { + NavigationView { + NavigateAndLoadView( + store: Store(initialState: NavigateAndLoad.State()) { + NavigateAndLoad() + } + ) + } + .navigationViewStyle(.stack) +} diff --git a/0275-shared-state-pt8/swift-composable-architecture/Examples/CaseStudies/SwiftUICaseStudies/03-Navigation-Sheet-LoadThenPresent.swift b/0275-shared-state-pt8/swift-composable-architecture/Examples/CaseStudies/SwiftUICaseStudies/03-Navigation-Sheet-LoadThenPresent.swift new file mode 100644 index 00000000..0a970637 --- /dev/null +++ b/0275-shared-state-pt8/swift-composable-architecture/Examples/CaseStudies/SwiftUICaseStudies/03-Navigation-Sheet-LoadThenPresent.swift @@ -0,0 +1,89 @@ +import ComposableArchitecture +import SwiftUI + +private let readMe = """ + This screen demonstrates navigation that depends on loading optional data into state. + + Tapping "Load optional counter" fires off an effect that will load the counter state a second \ + later. When the counter state is present, you will be programmatically presented a sheet that \ + depends on this data. + """ + +@Reducer +struct LoadThenPresent { + @ObservableState + struct State: Equatable { + @Presents var counter: Counter.State? + var isActivityIndicatorVisible = false + } + + enum Action { + case counter(PresentationAction) + case counterButtonTapped + case counterPresentationDelayCompleted + } + + @Dependency(\.continuousClock) var clock + + var body: some Reducer { + Reduce { state, action in + switch action { + case .counter: + return .none + + case .counterButtonTapped: + state.isActivityIndicatorVisible = true + return .run { send in + try await self.clock.sleep(for: .seconds(1)) + await send(.counterPresentationDelayCompleted) + } + + case .counterPresentationDelayCompleted: + state.isActivityIndicatorVisible = false + state.counter = Counter.State() + return .none + + } + } + .ifLet(\.$counter, action: \.counter) { + Counter() + } + } +} + +struct LoadThenPresentView: View { + @Bindable var store: StoreOf + + var body: some View { + Form { + Section { + AboutView(readMe: readMe) + } + Button { + store.send(.counterButtonTapped) + } label: { + HStack { + Text("Load optional counter") + if store.isActivityIndicatorVisible { + Spacer() + ProgressView() + } + } + } + } + .sheet(item: $store.scope(state: \.counter, action: \.counter)) { store in + CounterView(store: store) + } + .navigationTitle("Load and present") + } +} + +#Preview { + NavigationStack { + LoadThenPresentView( + store: Store(initialState: LoadThenPresent.State()) { + LoadThenPresent() + } + ) + } +} diff --git a/0275-shared-state-pt8/swift-composable-architecture/Examples/CaseStudies/SwiftUICaseStudies/03-Navigation-Sheet-PresentAndLoad.swift b/0275-shared-state-pt8/swift-composable-architecture/Examples/CaseStudies/SwiftUICaseStudies/03-Navigation-Sheet-PresentAndLoad.swift new file mode 100644 index 00000000..4159de66 --- /dev/null +++ b/0275-shared-state-pt8/swift-composable-architecture/Examples/CaseStudies/SwiftUICaseStudies/03-Navigation-Sheet-PresentAndLoad.swift @@ -0,0 +1,89 @@ +import ComposableArchitecture +import SwiftUI + +private let readMe = """ + This screen demonstrates navigation that depends on loading optional data into state. + + Tapping "Load optional counter" simultaneously presents a sheet that depends on optional counter \ + state and fires off an effect that will load this state a second later. + """ + +@Reducer +struct PresentAndLoad { + @ObservableState + struct State: Equatable { + var optionalCounter: Counter.State? + var isSheetPresented = false + } + + enum Action { + case optionalCounter(Counter.Action) + case setSheet(isPresented: Bool) + case setSheetIsPresentedDelayCompleted + } + + @Dependency(\.continuousClock) var clock + private enum CancelID { case load } + + var body: some Reducer { + Reduce { state, action in + switch action { + case .setSheet(isPresented: true): + state.isSheetPresented = true + return .run { send in + try await self.clock.sleep(for: .seconds(1)) + await send(.setSheetIsPresentedDelayCompleted) + } + .cancellable(id: CancelID.load) + + case .setSheet(isPresented: false): + state.isSheetPresented = false + state.optionalCounter = nil + return .cancel(id: CancelID.load) + + case .setSheetIsPresentedDelayCompleted: + state.optionalCounter = Counter.State() + return .none + + case .optionalCounter: + return .none + } + } + .ifLet(\.optionalCounter, action: \.optionalCounter) { + Counter() + } + } +} + +struct PresentAndLoadView: View { + @Bindable var store: StoreOf + + var body: some View { + Form { + Section { + AboutView(readMe: readMe) + } + Button("Load optional counter") { + store.send(.setSheet(isPresented: true)) + } + } + .sheet(isPresented: $store.isSheetPresented.sending(\.setSheet)) { + if let store = store.scope(state: \.optionalCounter, action: \.optionalCounter) { + CounterView(store: store) + } else { + ProgressView() + } + } + .navigationTitle("Present and load") + } +} + +#Preview { + NavigationView { + PresentAndLoadView( + store: Store(initialState: PresentAndLoad.State()) { + PresentAndLoad() + } + ) + } +} diff --git a/0275-shared-state-pt8/swift-composable-architecture/Examples/CaseStudies/SwiftUICaseStudies/03-NavigationStack.swift b/0275-shared-state-pt8/swift-composable-architecture/Examples/CaseStudies/SwiftUICaseStudies/03-NavigationStack.swift new file mode 100644 index 00000000..af53ffb5 --- /dev/null +++ b/0275-shared-state-pt8/swift-composable-architecture/Examples/CaseStudies/SwiftUICaseStudies/03-NavigationStack.swift @@ -0,0 +1,454 @@ +import ComposableArchitecture +import SwiftUI + +private let readMe = """ + This screen demonstrates how to use `NavigationStack` with Composable Architecture applications. + """ + +@Reducer +struct NavigationDemo { + @Reducer(state: .equatable) + enum Path { + case screenA(ScreenA) + case screenB(ScreenB) + case screenC(ScreenC) + } + + @ObservableState + struct State: Equatable { + var path = StackState() + } + + enum Action { + case goBackToScreen(id: StackElementID) + case goToABCButtonTapped + case path(StackAction) + case popToRoot + } + + var body: some Reducer { + Reduce { state, action in + switch action { + case let .goBackToScreen(id): + state.path.pop(to: id) + return .none + + case .goToABCButtonTapped: + state.path.append(.screenA(ScreenA.State())) + state.path.append(.screenB(ScreenB.State())) + state.path.append(.screenC(ScreenC.State())) + return .none + + case let .path(action): + switch action { + case .element(id: _, action: .screenB(.screenAButtonTapped)): + state.path.append(.screenA(ScreenA.State())) + return .none + + case .element(id: _, action: .screenB(.screenBButtonTapped)): + state.path.append(.screenB(ScreenB.State())) + return .none + + case .element(id: _, action: .screenB(.screenCButtonTapped)): + state.path.append(.screenC(ScreenC.State())) + return .none + + default: + return .none + } + + case .popToRoot: + state.path.removeAll() + return .none + } + } + .forEach(\.path, action: \.path) + } +} + +struct NavigationDemoView: View { + @Bindable var store: StoreOf + + var body: some View { + NavigationStack(path: $store.scope(state: \.path, action: \.path)) { + Form { + Section { Text(template: readMe) } + + Section { + NavigationLink( + "Go to screen A", + state: NavigationDemo.Path.State.screenA(ScreenA.State()) + ) + NavigationLink( + "Go to screen B", + state: NavigationDemo.Path.State.screenB(ScreenB.State()) + ) + NavigationLink( + "Go to screen C", + state: NavigationDemo.Path.State.screenC(ScreenC.State()) + ) + } + + Section { + Button("Go to A → B → C") { + store.send(.goToABCButtonTapped) + } + } + } + .navigationTitle("Root") + } destination: { store in + switch store.case { + case let .screenA(store): + ScreenAView(store: store) + case let .screenB(store): + ScreenBView(store: store) + case let .screenC(store): + ScreenCView(store: store) + } + } + .safeAreaInset(edge: .bottom) { + FloatingMenuView(store: store) + } + .navigationTitle("Navigation Stack") + } +} + +// MARK: - Floating menu + +struct FloatingMenuView: View { + let store: StoreOf + + struct ViewState: Equatable { + struct Screen: Equatable, Identifiable { + let id: StackElementID + let name: String + } + + var currentStack: [Screen] + var total: Int + init(state: NavigationDemo.State) { + self.total = 0 + self.currentStack = [] + for (id, element) in zip(state.path.ids, state.path) { + switch element { + case let .screenA(screenAState): + self.total += screenAState.count + self.currentStack.insert(Screen(id: id, name: "Screen A"), at: 0) + case .screenB: + self.currentStack.insert(Screen(id: id, name: "Screen B"), at: 0) + case let .screenC(screenBState): + self.total += screenBState.count + self.currentStack.insert(Screen(id: id, name: "Screen C"), at: 0) + } + } + } + } + + var body: some View { + let viewState = ViewState(state: store.state) + if viewState.currentStack.count > 0 { + VStack(alignment: .center) { + Text("Total count: \(viewState.total)") + Button("Pop to root") { + store.send(.popToRoot, animation: .default) + } + Menu("Current stack") { + ForEach(viewState.currentStack) { screen in + Button("\(String(describing: screen.id))) \(screen.name)") { + store.send(.goBackToScreen(id: screen.id)) + } + .disabled(screen == viewState.currentStack.first) + } + Button("Root") { + store.send(.popToRoot, animation: .default) + } + } + } + .padding() + .background(Color(.systemBackground)) + .padding(.bottom, 1) + .transition(.opacity.animation(.default)) + .clipped() + .shadow(color: .black.opacity(0.2), radius: 5, y: 5) + } + } +} + +// MARK: - Screen A + +@Reducer +struct ScreenA { + @ObservableState + struct State: Equatable { + var count = 0 + var fact: String? + var isLoading = false + } + + enum Action { + case decrementButtonTapped + case dismissButtonTapped + case incrementButtonTapped + case factButtonTapped + case factResponse(Result) + } + + @Dependency(\.dismiss) var dismiss + @Dependency(\.factClient) var factClient + + var body: some Reducer { + Reduce { state, action in + switch action { + case .decrementButtonTapped: + state.count -= 1 + return .none + + case .dismissButtonTapped: + return .run { _ in + await self.dismiss() + } + + case .incrementButtonTapped: + state.count += 1 + return .none + + case .factButtonTapped: + state.isLoading = true + return .run { [count = state.count] send in + await send(.factResponse(Result { try await self.factClient.fetch(count) })) + } + + case let .factResponse(.success(fact)): + state.isLoading = false + state.fact = fact + return .none + + case .factResponse(.failure): + state.isLoading = false + state.fact = nil + return .none + } + } + } +} + +struct ScreenAView: View { + let store: StoreOf + + var body: some View { + Form { + Text( + """ + This screen demonstrates a basic feature hosted in a navigation stack. + + You can also have the child feature dismiss itself, which will communicate back to the \ + root stack view to pop the feature off the stack. + """ + ) + + Section { + HStack { + Text("\(store.count)") + Spacer() + Button { + store.send(.decrementButtonTapped) + } label: { + Image(systemName: "minus") + } + Button { + store.send(.incrementButtonTapped) + } label: { + Image(systemName: "plus") + } + } + .buttonStyle(.borderless) + + Button { + store.send(.factButtonTapped) + } label: { + HStack { + Text("Get fact") + if store.isLoading { + Spacer() + ProgressView() + } + } + } + + if let fact = store.fact { + Text(fact) + } + } + + Section { + Button("Dismiss") { + store.send(.dismissButtonTapped) + } + } + + Section { + NavigationLink( + "Go to screen A", + state: NavigationDemo.Path.State.screenA(ScreenA.State(count: store.count)) + ) + NavigationLink( + "Go to screen B", + state: NavigationDemo.Path.State.screenB(ScreenB.State()) + ) + NavigationLink( + "Go to screen C", + state: NavigationDemo.Path.State.screenC(ScreenC.State(count: store.count)) + ) + } + } + .navigationTitle("Screen A") + } +} + +// MARK: - Screen B + +@Reducer +struct ScreenB { + @ObservableState + struct State: Equatable {} + + enum Action { + case screenAButtonTapped + case screenBButtonTapped + case screenCButtonTapped + } + + var body: some Reducer { + Reduce { state, action in + switch action { + case .screenAButtonTapped: + return .none + case .screenBButtonTapped: + return .none + case .screenCButtonTapped: + return .none + } + } + } +} + +struct ScreenBView: View { + let store: StoreOf + + var body: some View { + Form { + Section { + Text( + """ + This screen demonstrates how to navigate to other screens without needing to compile \ + any symbols from those screens. You can send an action into the system, and allow the \ + root feature to intercept that action and push the next feature onto the stack. + """ + ) + } + Button("Decoupled navigation to screen A") { + store.send(.screenAButtonTapped) + } + Button("Decoupled navigation to screen B") { + store.send(.screenBButtonTapped) + } + Button("Decoupled navigation to screen C") { + store.send(.screenCButtonTapped) + } + } + .navigationTitle("Screen B") + } +} + +// MARK: - Screen C + +@Reducer +struct ScreenC { + @ObservableState + struct State: Equatable { + var count = 0 + var isTimerRunning = false + } + + enum Action { + case startButtonTapped + case stopButtonTapped + case timerTick + } + + @Dependency(\.mainQueue) var mainQueue + enum CancelID { case timer } + + var body: some Reducer { + Reduce { state, action in + switch action { + case .startButtonTapped: + state.isTimerRunning = true + return .run { send in + for await _ in self.mainQueue.timer(interval: 1) { + await send(.timerTick) + } + } + .cancellable(id: CancelID.timer) + .concatenate(with: .send(.stopButtonTapped)) + + case .stopButtonTapped: + state.isTimerRunning = false + return .cancel(id: CancelID.timer) + + case .timerTick: + state.count += 1 + return .none + } + } + } +} + +struct ScreenCView: View { + let store: StoreOf + + var body: some View { + Form { + Text( + """ + This screen demonstrates that if you start a long-living effects in a stack, then it \ + will automatically be torn down when the screen is dismissed. + """ + ) + Section { + Text("\(store.count)") + if store.isTimerRunning { + Button("Stop timer") { store.send(.stopButtonTapped) } + } else { + Button("Start timer") { store.send(.startButtonTapped) } + } + } + + Section { + NavigationLink( + "Go to screen A", + state: NavigationDemo.Path.State.screenA(ScreenA.State(count: store.count)) + ) + NavigationLink( + "Go to screen B", + state: NavigationDemo.Path.State.screenB(ScreenB.State()) + ) + NavigationLink( + "Go to screen C", + state: NavigationDemo.Path.State.screenC(ScreenC.State()) + ) + } + } + .navigationTitle("Screen C") + } +} + +// MARK: - Previews + +#Preview { + NavigationDemoView( + store: Store(initialState: NavigationDemo.State()) { + NavigationDemo() + } + ) +} diff --git a/0275-shared-state-pt8/swift-composable-architecture/Examples/CaseStudies/SwiftUICaseStudies/04-HigherOrderReducers-Recursion.swift b/0275-shared-state-pt8/swift-composable-architecture/Examples/CaseStudies/SwiftUICaseStudies/04-HigherOrderReducers-Recursion.swift new file mode 100644 index 00000000..495c8965 --- /dev/null +++ b/0275-shared-state-pt8/swift-composable-architecture/Examples/CaseStudies/SwiftUICaseStudies/04-HigherOrderReducers-Recursion.swift @@ -0,0 +1,122 @@ +import ComposableArchitecture +import SwiftUI + +private let readMe = """ + This screen demonstrates how `Reducer` bodies can recursively nest themselves. + + Tap "Add row" to add a row to the current screen's list. Tap the left-hand side of a row to edit \ + its name, or tap the right-hand side of a row to navigate to its own associated list of rows. + """ + +@Reducer +struct Nested { + @ObservableState + struct State: Equatable, Identifiable { + let id: UUID + var name: String = "" + var rows: IdentifiedArrayOf = [] + + init(id: UUID? = nil, name: String = "", rows: IdentifiedArrayOf = []) { + @Dependency(\.uuid) var uuid + self.id = id ?? uuid() + self.name = name + self.rows = rows + } + } + + enum Action { + case addRowButtonTapped + case nameTextFieldChanged(String) + case onDelete(IndexSet) + indirect case rows(IdentifiedActionOf) + } + + @Dependency(\.uuid) var uuid + + var body: some Reducer { + Reduce { state, action in + switch action { + case .addRowButtonTapped: + state.rows.append(State(id: self.uuid())) + return .none + + case let .nameTextFieldChanged(name): + state.name = name + return .none + + case let .onDelete(indexSet): + state.rows.remove(atOffsets: indexSet) + return .none + + case .rows: + return .none + } + } + .forEach(\.rows, action: \.rows) { + Self() + } + } +} + +struct NestedView: View { + @Bindable var store: StoreOf + + var body: some View { + Form { + Section { + AboutView(readMe: readMe) + } + + ForEach(store.scope(state: \.rows, action: \.rows)) { rowStore in + @Bindable var rowStore = rowStore + NavigationLink { + NestedView(store: rowStore) + } label: { + HStack { + TextField("Untitled", text: $rowStore.name.sending(\.nameTextFieldChanged)) + Text("Next") + .font(.callout) + .foregroundStyle(.secondary) + } + } + } + .onDelete { store.send(.onDelete($0)) } + } + .navigationTitle(store.name.isEmpty ? "Untitled" : store.name) + .toolbar { + ToolbarItem(placement: .navigationBarTrailing) { + Button("Add row") { store.send(.addRowButtonTapped) } + } + } + } +} + +#Preview { + NavigationView { + NestedView( + store: Store( + initialState: Nested.State( + name: "Foo", + rows: [ + Nested.State( + name: "Bar", + rows: [ + Nested.State() + ] + ), + Nested.State( + name: "Baz", + rows: [ + Nested.State(name: "Fizz"), + Nested.State(name: "Buzz"), + ] + ), + Nested.State(), + ] + ) + ) { + Nested() + } + ) + } +} diff --git a/0275-shared-state-pt8/swift-composable-architecture/Examples/CaseStudies/SwiftUICaseStudies/04-HigherOrderReducers-ResuableOfflineDownloads/DownloadClient.swift b/0275-shared-state-pt8/swift-composable-architecture/Examples/CaseStudies/SwiftUICaseStudies/04-HigherOrderReducers-ResuableOfflineDownloads/DownloadClient.swift new file mode 100644 index 00000000..d0395dfb --- /dev/null +++ b/0275-shared-state-pt8/swift-composable-architecture/Examples/CaseStudies/SwiftUICaseStudies/04-HigherOrderReducers-ResuableOfflineDownloads/DownloadClient.swift @@ -0,0 +1,51 @@ +import ComposableArchitecture +import Foundation + +@DependencyClient +struct DownloadClient { + var download: @Sendable (_ url: URL) -> AsyncThrowingStream = { _ in .finished() } + + @CasePathable + enum Event: Equatable { + case response(Data) + case updateProgress(Double) + } +} + +extension DependencyValues { + var downloadClient: DownloadClient { + get { self[DownloadClient.self] } + set { self[DownloadClient.self] = newValue } + } +} + +extension DownloadClient: DependencyKey { + static let liveValue = Self( + download: { url in + .init { continuation in + Task { + do { + let (bytes, response) = try await URLSession.shared.bytes(from: url) + var data = Data() + var progress = 0 + for try await byte in bytes { + data.append(byte) + let newProgress = Int( + Double(data.count) / Double(response.expectedContentLength) * 100) + if newProgress != progress { + progress = newProgress + continuation.yield(.updateProgress(Double(progress) / 100)) + } + } + continuation.yield(.response(data)) + continuation.finish() + } catch { + continuation.finish(throwing: error) + } + } + } + } + ) + + static let testValue = Self() +} diff --git a/0275-shared-state-pt8/swift-composable-architecture/Examples/CaseStudies/SwiftUICaseStudies/04-HigherOrderReducers-ResuableOfflineDownloads/DownloadComponent.swift b/0275-shared-state-pt8/swift-composable-architecture/Examples/CaseStudies/SwiftUICaseStudies/04-HigherOrderReducers-ResuableOfflineDownloads/DownloadComponent.swift new file mode 100644 index 00000000..cfbef742 --- /dev/null +++ b/0275-shared-state-pt8/swift-composable-architecture/Examples/CaseStudies/SwiftUICaseStudies/04-HigherOrderReducers-ResuableOfflineDownloads/DownloadComponent.swift @@ -0,0 +1,179 @@ +import ComposableArchitecture +import SwiftUI + +@Reducer +struct DownloadComponent { + struct State: Equatable { + @PresentationState var alert: AlertState? + let id: AnyHashable + var mode: Mode + let url: URL + } + + enum Action { + case alert(PresentationAction) + case buttonTapped + case downloadClient(Result) + + enum Alert { + case deleteButtonTapped + case stopButtonTapped + } + } + + @Dependency(\.downloadClient) var downloadClient + + var body: some Reducer { + Reduce { state, action in + switch action { + case .alert(.presented(.deleteButtonTapped)): + state.mode = .notDownloaded + return .none + + case .alert(.presented(.stopButtonTapped)): + state.mode = .notDownloaded + return .cancel(id: state.id) + + case .alert: + return .none + + case .buttonTapped: + switch state.mode { + case .downloaded: + state.alert = deleteAlert + return .none + + case .downloading: + state.alert = stopAlert + return .none + + case .notDownloaded: + state.mode = .startingToDownload + + return .run { [url = state.url] send in + for try await event in self.downloadClient.download(url: url) { + await send(.downloadClient(.success(event)), animation: .default) + } + } catch: { error, send in + await send(.downloadClient(.failure(error)), animation: .default) + } + .cancellable(id: state.id) + + case .startingToDownload: + state.alert = stopAlert + return .none + } + + case .downloadClient(.success(.response)): + state.mode = .downloaded + state.alert = nil + return .none + + case let .downloadClient(.success(.updateProgress(progress))): + state.mode = .downloading(progress: progress) + return .none + + case .downloadClient(.failure): + state.mode = .notDownloaded + state.alert = nil + return .none + } + } + .ifLet(\.$alert, action: \.alert) + } + + private var deleteAlert: AlertState { + AlertState { + TextState("Do you want to delete this map from your offline storage?") + } actions: { + ButtonState(role: .destructive, action: .send(.deleteButtonTapped, animation: .default)) { + TextState("Delete") + } + self.nevermindButton + } + } + + private var stopAlert: AlertState { + AlertState { + TextState("Do you want to stop downloading this map?") + } actions: { + ButtonState(role: .destructive, action: .send(.stopButtonTapped, animation: .default)) { + TextState("Stop") + } + self.nevermindButton + } + } + + private var nevermindButton: ButtonState { + ButtonState(role: .cancel) { + TextState("Nevermind") + } + } +} + +enum Mode: Equatable { + case downloaded + case downloading(progress: Double) + case notDownloaded + case startingToDownload + + var progress: Double { + if case let .downloading(progress) = self { return progress } + return 0 + } + + var isDownloading: Bool { + switch self { + case .downloaded, .notDownloaded: + return false + case .downloading, .startingToDownload: + return true + } + } +} + +struct DownloadComponentView: View { + let store: StoreOf + + var body: some View { + WithViewStore(self.store, observe: { $0 }) { viewStore in + Button { + viewStore.send(.buttonTapped) + } label: { + if viewStore.mode == .downloaded { + Image(systemName: "checkmark.circle") + .tint(.accentColor) + } else if viewStore.mode.progress > 0 { + ZStack { + CircularProgressView(value: viewStore.mode.progress) + .frame(width: 16, height: 16) + Rectangle() + .frame(width: 6, height: 6) + } + } else if viewStore.mode == .notDownloaded { + Image(systemName: "icloud.and.arrow.down") + } else if viewStore.mode == .startingToDownload { + ZStack { + ProgressView() + Rectangle() + .frame(width: 6, height: 6) + } + } + } + .foregroundStyle(.primary) + .alert(store: self.store.scope(state: \.$alert, action: \.alert)) + } + } +} + +#Preview { + DownloadComponentView( + store: Store( + initialState: DownloadComponent.State( + id: "deadbeef", + mode: .notDownloaded, + url: URL(fileURLWithPath: "/") + ) + ) {} + ) +} diff --git a/0275-shared-state-pt8/swift-composable-architecture/Examples/CaseStudies/SwiftUICaseStudies/04-HigherOrderReducers-ResuableOfflineDownloads/ReusableComponents-Download.swift b/0275-shared-state-pt8/swift-composable-architecture/Examples/CaseStudies/SwiftUICaseStudies/04-HigherOrderReducers-ResuableOfflineDownloads/ReusableComponents-Download.swift new file mode 100644 index 00000000..2a556d37 --- /dev/null +++ b/0275-shared-state-pt8/swift-composable-architecture/Examples/CaseStudies/SwiftUICaseStudies/04-HigherOrderReducers-ResuableOfflineDownloads/ReusableComponents-Download.swift @@ -0,0 +1,268 @@ +import ComposableArchitecture +import SwiftUI + +private let readMe = """ + This screen demonstrates how one can create reusable components in the Composable Architecture. + + The "download component" is a component that can be added to any view to enhance it with the \ + concept of downloading offline content. It facilitates downloading the data, displaying a \ + progress view while downloading, canceling an active download, and deleting previously \ + downloaded data. + + Tap the download icon to start a download, and tap again to cancel an in-flight download or to \ + remove a finished download. While a file is downloading you can tap a row to go to another \ + screen to see that the state is carried over. + """ + +@Reducer +struct CityMap { + struct State: Equatable, Identifiable { + var download: Download + var downloadAlert: AlertState? + var downloadMode: Mode + + var id: UUID { self.download.id } + + var downloadComponent: DownloadComponent.State { + get { + DownloadComponent.State( + alert: self.downloadAlert, + id: self.download.id, + mode: self.downloadMode, + url: self.download.downloadVideoUrl + ) + } + set { + self.downloadAlert = newValue.alert + self.downloadMode = newValue.mode + } + } + + struct Download: Equatable, Identifiable { + var blurb: String + var downloadVideoUrl: URL + let id: UUID + var title: String + } + } + + enum Action { + case downloadComponent(DownloadComponent.Action) + } + + struct CityMapEnvironment { + var downloadClient: DownloadClient + } + + var body: some Reducer { + Scope(state: \.downloadComponent, action: \.downloadComponent) { + DownloadComponent() + } + + Reduce { state, action in + switch action { + case .downloadComponent(.downloadClient(.success(.response))): + // NB: This is where you could perform the effect to save the data to a file on disk. + return .none + + case .downloadComponent(.alert(.presented(.deleteButtonTapped))): + // NB: This is where you could perform the effect to delete the data from disk. + return .none + + case .downloadComponent: + return .none + } + } + } +} + +struct CityMapRowView: View { + let store: StoreOf + + var body: some View { + WithViewStore(self.store, observe: { $0 }) { viewStore in + HStack { + NavigationLink( + destination: CityMapDetailView(store: self.store) + ) { + HStack { + Image(systemName: "map") + Text(viewStore.download.title) + } + .layoutPriority(1) + + Spacer() + + DownloadComponentView( + store: self.store.scope(state: \.downloadComponent, action: \.downloadComponent) + ) + .padding(.trailing, 8) + } + } + } + } +} + +struct CityMapDetailView: View { + let store: StoreOf + + var body: some View { + WithViewStore(self.store, observe: { $0 }) { viewStore in + VStack(spacing: 32) { + Text(viewStore.download.blurb) + + HStack { + if viewStore.downloadMode == .notDownloaded { + Text("Download for offline viewing") + } else if viewStore.downloadMode == .downloaded { + Text("Downloaded") + } else { + Text("Downloading \(Int(100 * viewStore.downloadComponent.mode.progress))%") + } + + Spacer() + + DownloadComponentView( + store: self.store.scope(state: \.downloadComponent, action: \.downloadComponent) + ) + } + + Spacer() + } + .navigationTitle(viewStore.download.title) + .padding() + } + } +} + +@Reducer +struct MapApp { + struct State: Equatable { + var cityMaps: IdentifiedArrayOf = .mocks + } + + enum Action { + case cityMaps(IdentifiedActionOf) + } + + var body: some Reducer { + EmptyReducer().forEach(\.cityMaps, action: \.cityMaps) { + CityMap() + } + } +} + +struct CitiesView: View { + let store: StoreOf + + var body: some View { + Form { + Section { + AboutView(readMe: readMe) + } + ForEachStore(self.store.scope(state: \.cityMaps, action: \.cityMaps)) { cityMapStore in + CityMapRowView(store: cityMapStore) + .buttonStyle(.borderless) + } + } + .navigationTitle("Offline Downloads") + } +} + +extension IdentifiedArray where ID == CityMap.State.ID, Element == CityMap.State { + static let mocks: Self = [ + CityMap.State( + download: CityMap.State.Download( + blurb: """ + New York City (NYC), known colloquially as New York (NY) and officially as the City of \ + New York, is the most populous city in the United States. With an estimated 2018 \ + population of 8,398,748 distributed over about 302.6 square miles (784 km2), New York \ + is also the most densely populated major city in the United States. + """, + downloadVideoUrl: URL(string: "http://ipv4.download.thinkbroadband.com/50MB.zip")!, + id: UUID(), + title: "New York, NY" + ), + downloadMode: .notDownloaded + ), + CityMap.State( + download: CityMap.State.Download( + blurb: """ + Los Angeles, officially the City of Los Angeles and often known by its initials L.A., \ + is the largest city in the U.S. state of California. With an estimated population of \ + nearly four million people, it is the country's second most populous city (after New \ + York City) and the third most populous city in North America (after Mexico City and \ + New York City). Los Angeles is known for its Mediterranean climate, ethnic diversity, \ + Hollywood entertainment industry, and its sprawling metropolis. + """, + downloadVideoUrl: URL(string: "http://ipv4.download.thinkbroadband.com/50MB.zip")!, + id: UUID(), + title: "Los Angeles, LA" + ), + downloadMode: .notDownloaded + ), + CityMap.State( + download: CityMap.State.Download( + blurb: """ + Paris is the capital and most populous city of France, with a population of 2,148,271 \ + residents (official estimate, 1 January 2020) in an area of 105 square kilometres (41 \ + square miles). Since the 17th century, Paris has been one of Europe's major centres of \ + finance, diplomacy, commerce, fashion, science and arts. + """, + downloadVideoUrl: URL(string: "http://ipv4.download.thinkbroadband.com/50MB.zip")!, + id: UUID(), + title: "Paris, France" + ), + downloadMode: .notDownloaded + ), + CityMap.State( + download: CityMap.State.Download( + blurb: """ + Tokyo, officially Tokyo Metropolis (東京都, Tōkyō-to), is the capital of Japan and the \ + most populous of the country's 47 prefectures. Located at the head of Tokyo Bay, the \ + prefecture forms part of the Kantō region on the central Pacific coast of Japan's main \ + island, Honshu. Tokyo is the political, economic, and cultural center of Japan, and \ + houses the seat of the Emperor and the national government. + """, + downloadVideoUrl: URL(string: "http://ipv4.download.thinkbroadband.com/50MB.zip")!, + id: UUID(), + title: "Tokyo, Japan" + ), + downloadMode: .notDownloaded + ), + CityMap.State( + download: CityMap.State.Download( + blurb: """ + Buenos Aires is the capital and largest city of Argentina. The city is located on the \ + western shore of the estuary of the Río de la Plata, on the South American continent's \ + southeastern coast. "Buenos Aires" can be translated as "fair winds" or "good airs", \ + but the former was the meaning intended by the founders in the 16th century, by the \ + use of the original name "Real de Nuestra Señora Santa María del Buen Ayre", named \ + after the Madonna of Bonaria in Sardinia. + """, + downloadVideoUrl: URL(string: "http://ipv4.download.thinkbroadband.com/50MB.zip")!, + id: UUID(), + title: "Buenos Aires, Argentina" + ), + downloadMode: .notDownloaded + ), + ] +} + +#Preview("List") { + NavigationStack { + CitiesView( + store: Store(initialState: MapApp.State(cityMaps: .mocks)) { + MapApp() + } + ) + } +} + +#Preview("Detail") { + NavigationView { + CityMapDetailView( + store: Store(initialState: IdentifiedArrayOf.mocks[0]) {} + ) + } +} diff --git a/0275-shared-state-pt8/swift-composable-architecture/Examples/CaseStudies/SwiftUICaseStudies/04-HigherOrderReducers-ReusableFavoriting.swift b/0275-shared-state-pt8/swift-composable-architecture/Examples/CaseStudies/SwiftUICaseStudies/04-HigherOrderReducers-ReusableFavoriting.swift new file mode 100644 index 00000000..cb0031f1 --- /dev/null +++ b/0275-shared-state-pt8/swift-composable-architecture/Examples/CaseStudies/SwiftUICaseStudies/04-HigherOrderReducers-ReusableFavoriting.swift @@ -0,0 +1,203 @@ +import ComposableArchitecture +import SwiftUI + +private let readMe = """ + This screen demonstrates how one can create reusable components in the Composable Architecture. + + It introduces the domain, logic, and view around "favoriting" something, which is considerably \ + complex. + + A feature can give itself the ability to "favorite" part of its state by embedding the domain of \ + favoriting, using the `Favoriting` reducer, and passing an appropriately scoped store to \ + `FavoriteButton`. + + Tapping the favorite button on a row will instantly reflect in the UI and fire off an effect to \ + do any necessary work, like writing to a database or making an API request. We have simulated a \ + request that takes 1 second to run and may fail 25% of the time. Failures result in rolling back \ + favorite state and rendering an alert. + """ + +struct FavoritingState: Equatable { + @PresentationState var alert: AlertState? + let id: ID + var isFavorite: Bool +} + +@CasePathable +enum FavoritingAction { + case alert(PresentationAction) + case buttonTapped + case response(Result) + + enum Alert: Equatable {} +} + +@Reducer +struct Favoriting { + let favorite: @Sendable (ID, Bool) async throws -> Bool + + private struct CancelID: Hashable { + let id: AnyHashable + } + + var body: some Reducer, FavoritingAction> { + Reduce { state, action in + switch action { + case .alert(.dismiss): + state.alert = nil + state.isFavorite.toggle() + return .none + + case .buttonTapped: + state.isFavorite.toggle() + + return .run { [id = state.id, isFavorite = state.isFavorite, favorite] send in + await send(.response(Result { try await favorite(id, isFavorite) })) + } + .cancellable(id: CancelID(id: state.id), cancelInFlight: true) + + case let .response(.failure(error)): + state.alert = AlertState { TextState(error.localizedDescription) } + return .none + + case let .response(.success(isFavorite)): + state.isFavorite = isFavorite + return .none + } + } + } +} + +struct FavoriteButton: View { + let store: Store, FavoritingAction> + + var body: some View { + WithViewStore(self.store, observe: { $0 }) { viewStore in + Button { + viewStore.send(.buttonTapped) + } label: { + Image(systemName: "heart") + .symbolVariant(viewStore.isFavorite ? .fill : .none) + } + .alert(store: self.store.scope(state: \.$alert, action: \.alert)) + } + } +} + +@Reducer +struct Episode { + struct State: Equatable, Identifiable { + var alert: AlertState? + let id: UUID + var isFavorite: Bool + let title: String + + var favorite: FavoritingState { + get { .init(alert: self.alert, id: self.id, isFavorite: self.isFavorite) } + set { (self.alert, self.isFavorite) = (newValue.alert, newValue.isFavorite) } + } + } + + enum Action { + case favorite(FavoritingAction) + } + + let favorite: @Sendable (UUID, Bool) async throws -> Bool + + var body: some Reducer { + Scope(state: \.favorite, action: \.favorite) { + Favoriting(favorite: self.favorite) + } + } +} + +struct EpisodeView: View { + let store: StoreOf + + var body: some View { + WithViewStore(self.store, observe: { $0 }) { viewStore in + HStack(alignment: .firstTextBaseline) { + Text(viewStore.title) + + Spacer() + + FavoriteButton(store: self.store.scope(state: \.favorite, action: \.favorite)) + } + } + } +} + +@Reducer +struct Episodes { + struct State: Equatable { + var episodes: IdentifiedArrayOf = [] + } + + enum Action { + case episodes(IdentifiedActionOf) + } + + var favorite: @Sendable (UUID, Bool) async throws -> Bool = favoriteRequest + + var body: some Reducer { + Reduce { state, action in + .none + } + .forEach(\.episodes, action: \.episodes) { + Episode(favorite: self.favorite) + } + } +} + +struct EpisodesView: View { + let store: StoreOf + + var body: some View { + Form { + Section { + AboutView(readMe: readMe) + } + ForEachStore(self.store.scope(state: \.episodes, action: \.episodes)) { rowStore in + EpisodeView(store: rowStore) + } + .buttonStyle(.borderless) + } + .navigationTitle("Favoriting") + } +} + +struct FavoriteError: LocalizedError, Equatable { + var errorDescription: String? { + "Favoriting failed." + } +} + +@Sendable private func favoriteRequest(id: ID, isFavorite: Bool) async throws -> Bool { + try await Task.sleep(for: .seconds(1)) + if .random(in: 0...1) > 0.25 { + return isFavorite + } else { + throw FavoriteError() + } +} + +extension IdentifiedArray where ID == Episode.State.ID, Element == Episode.State { + static let mocks: Self = [ + Episode.State(id: UUID(), isFavorite: false, title: "Functions"), + Episode.State(id: UUID(), isFavorite: false, title: "Side Effects"), + Episode.State(id: UUID(), isFavorite: false, title: "Algebraic Data Types"), + Episode.State(id: UUID(), isFavorite: false, title: "DSLs"), + Episode.State(id: UUID(), isFavorite: false, title: "Parsers"), + Episode.State(id: UUID(), isFavorite: false, title: "Composable Architecture"), + ] +} + +#Preview { + NavigationStack { + EpisodesView( + store: Store(initialState: Episodes.State()) { + Episodes() + } + ) + } +} diff --git a/0275-shared-state-pt8/swift-composable-architecture/Examples/CaseStudies/SwiftUICaseStudies/Assets.xcassets/AppIcon.appiconset/AppIcon-60@2x.png b/0275-shared-state-pt8/swift-composable-architecture/Examples/CaseStudies/SwiftUICaseStudies/Assets.xcassets/AppIcon.appiconset/AppIcon-60@2x.png new file mode 100644 index 0000000000000000000000000000000000000000..b1516e5a122b534ae5a9d14706d6248718aeb03a GIT binary patch literal 7569 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 literal 0 HcmV?d00001 diff --git a/0275-shared-state-pt8/swift-composable-architecture/Examples/CaseStudies/SwiftUICaseStudies/Assets.xcassets/AppIcon.appiconset/AppIcon-76@2x.png b/0275-shared-state-pt8/swift-composable-architecture/Examples/CaseStudies/SwiftUICaseStudies/Assets.xcassets/AppIcon.appiconset/AppIcon-76@2x.png new file mode 100644 index 0000000000000000000000000000000000000000..869cd81f3aee14834f60b9fb9bb87b3ec53a2840 GIT binary patch literal 9893 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 XN$)>5c`(j700000NkvXXu0mjfLN#h7 literal 0 HcmV?d00001 diff --git a/0275-shared-state-pt8/swift-composable-architecture/Examples/CaseStudies/SwiftUICaseStudies/Assets.xcassets/AppIcon.appiconset/AppIcon-iPadPro@2x.png b/0275-shared-state-pt8/swift-composable-architecture/Examples/CaseStudies/SwiftUICaseStudies/Assets.xcassets/AppIcon.appiconset/AppIcon-iPadPro@2x.png new file mode 100644 index 0000000000000000000000000000000000000000..94a32fd65c0f0b6cd8af035b2d10286b49c8732b GIT binary patch literal 15226 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 literal 0 HcmV?d00001 diff --git a/0275-shared-state-pt8/swift-composable-architecture/Examples/CaseStudies/SwiftUICaseStudies/Assets.xcassets/AppIcon.appiconset/Contents.json b/0275-shared-state-pt8/swift-composable-architecture/Examples/CaseStudies/SwiftUICaseStudies/Assets.xcassets/AppIcon.appiconset/Contents.json new file mode 100644 index 00000000..4f45077f --- /dev/null +++ b/0275-shared-state-pt8/swift-composable-architecture/Examples/CaseStudies/SwiftUICaseStudies/Assets.xcassets/AppIcon.appiconset/Contents.json @@ -0,0 +1,103 @@ +{ + "images" : [ + { + "idiom" : "iphone", + "scale" : "2x", + "size" : "20x20" + }, + { + "idiom" : "iphone", + "scale" : "3x", + "size" : "20x20" + }, + { + "idiom" : "iphone", + "scale" : "2x", + "size" : "29x29" + }, + { + "idiom" : "iphone", + "scale" : "3x", + "size" : "29x29" + }, + { + "idiom" : "iphone", + "scale" : "2x", + "size" : "40x40" + }, + { + "idiom" : "iphone", + "scale" : "3x", + "size" : "40x40" + }, + { + "filename" : "AppIcon-60@2x.png", + "idiom" : "iphone", + "scale" : "2x", + "size" : "60x60" + }, + { + "filename" : "AppIcon.png", + "idiom" : "iphone", + "scale" : "3x", + "size" : "60x60" + }, + { + "idiom" : "ipad", + "scale" : "1x", + "size" : "20x20" + }, + { + "idiom" : "ipad", + "scale" : "2x", + "size" : "20x20" + }, + { + "idiom" : "ipad", + "scale" : "1x", + "size" : "29x29" + }, + { + "idiom" : "ipad", + "scale" : "2x", + "size" : "29x29" + }, + { + "idiom" : "ipad", + "scale" : "1x", + "size" : "40x40" + }, + { + "idiom" : "ipad", + "scale" : "2x", + "size" : "40x40" + }, + { + "idiom" : "ipad", + "scale" : "1x", + "size" : "76x76" + }, + { + "filename" : "AppIcon-76@2x.png", + "idiom" : "ipad", + "scale" : "2x", + "size" : "76x76" + }, + { + "filename" : "AppIcon-iPadPro@2x.png", + "idiom" : "ipad", + "scale" : "2x", + "size" : "83.5x83.5" + }, + { + "filename" : "transparent.png", + "idiom" : "ios-marketing", + "scale" : "1x", + "size" : "1024x1024" + } + ], + "info" : { + "author" : "xcode", + "version" : 1 + } +} diff --git a/0275-shared-state-pt8/swift-composable-architecture/Examples/CaseStudies/SwiftUICaseStudies/Assets.xcassets/AppIcon.appiconset/transparent.png b/0275-shared-state-pt8/swift-composable-architecture/Examples/CaseStudies/SwiftUICaseStudies/Assets.xcassets/AppIcon.appiconset/transparent.png new file mode 100644 index 0000000000000000000000000000000000000000..bae1e0d7424038acc03d0981da831baf5752e49e GIT binary patch literal 221 zcmeAS@N?(olHy`uVBq!ia0y~yU;#2&7#M*hLwK5)9*|-x3GxeOU?`h>)&j_z=IP=X tQo;E4U?WJ$;RU~g String +} + +extension DependencyValues { + var factClient: FactClient { + get { self[FactClient.self] } + set { self[FactClient.self] = newValue } + } +} + +extension FactClient: DependencyKey { + /// This is the "live" fact dependency that reaches into the outside world to fetch trivia. + /// Typically this live implementation of the dependency would live in its own module so that the + /// main feature doesn't need to compile it. + static let liveValue = Self( + fetch: { number in + try await Task.sleep(for: .seconds(1)) + let (data, _) = try await URLSession.shared + .data(from: URL(string: "http://numbersapi.com/\(number)/trivia")!) + return String(decoding: data, as: UTF8.self) + } + ) + + /// This is the "unimplemented" fact dependency that is useful to plug into tests that you want + /// to prove do not need the dependency. + static let testValue = Self() +} diff --git a/0275-shared-state-pt8/swift-composable-architecture/Examples/CaseStudies/SwiftUICaseStudies/Info.plist b/0275-shared-state-pt8/swift-composable-architecture/Examples/CaseStudies/SwiftUICaseStudies/Info.plist new file mode 100644 index 00000000..b94c796a --- /dev/null +++ b/0275-shared-state-pt8/swift-composable-architecture/Examples/CaseStudies/SwiftUICaseStudies/Info.plist @@ -0,0 +1,48 @@ + + + + + CFBundleDevelopmentRegion + $(DEVELOPMENT_LANGUAGE) + CFBundleExecutable + $(EXECUTABLE_NAME) + CFBundleIdentifier + $(PRODUCT_BUNDLE_IDENTIFIER) + CFBundleInfoDictionaryVersion + 6.0 + CFBundleName + $(PRODUCT_NAME) + CFBundlePackageType + $(PRODUCT_BUNDLE_PACKAGE_TYPE) + CFBundleShortVersionString + 1.0 + CFBundleVersion + 1 + LSRequiresIPhoneOS + + UILaunchStoryboardName + LaunchScreen + NSAppTransportSecurity + + NSAllowsArbitraryLoads + + + UIRequiredDeviceCapabilities + + armv7 + + UISupportedInterfaceOrientations + + UIInterfaceOrientationPortrait + UIInterfaceOrientationLandscapeLeft + UIInterfaceOrientationLandscapeRight + + UISupportedInterfaceOrientations~ipad + + UIInterfaceOrientationPortrait + UIInterfaceOrientationPortraitUpsideDown + UIInterfaceOrientationLandscapeLeft + UIInterfaceOrientationLandscapeRight + + + diff --git a/0275-shared-state-pt8/swift-composable-architecture/Examples/CaseStudies/SwiftUICaseStudies/Internal/AboutView.swift b/0275-shared-state-pt8/swift-composable-architecture/Examples/CaseStudies/SwiftUICaseStudies/Internal/AboutView.swift new file mode 100644 index 00000000..6ca62459 --- /dev/null +++ b/0275-shared-state-pt8/swift-composable-architecture/Examples/CaseStudies/SwiftUICaseStudies/Internal/AboutView.swift @@ -0,0 +1,11 @@ +import SwiftUI + +struct AboutView: View { + let readMe: String + + var body: some View { + DisclosureGroup("About this case study") { + Text(template: self.readMe) + } + } +} diff --git a/0275-shared-state-pt8/swift-composable-architecture/Examples/CaseStudies/SwiftUICaseStudies/Internal/CircularProgressView.swift b/0275-shared-state-pt8/swift-composable-architecture/Examples/CaseStudies/SwiftUICaseStudies/Internal/CircularProgressView.swift new file mode 100644 index 00000000..c049802a --- /dev/null +++ b/0275-shared-state-pt8/swift-composable-architecture/Examples/CaseStudies/SwiftUICaseStudies/Internal/CircularProgressView.swift @@ -0,0 +1,21 @@ +import SwiftUI + +struct CircularProgressView: View { + private let value: Double + + init(value: Double) { + self.value = value + } + + var body: some View { + Circle() + .trim(from: 0, to: CGFloat(self.value)) + .stroke(style: StrokeStyle(lineWidth: 2, lineCap: .round)) + .rotationEffect(.degrees(-90)) + .animation(.easeIn, value: self.value) + } +} + +#Preview { + CircularProgressView(value: 0.3).frame(width: 44, height: 44) +} diff --git a/0275-shared-state-pt8/swift-composable-architecture/Examples/CaseStudies/SwiftUICaseStudies/Internal/ResignFirstResponder.swift b/0275-shared-state-pt8/swift-composable-architecture/Examples/CaseStudies/SwiftUICaseStudies/Internal/ResignFirstResponder.swift new file mode 100644 index 00000000..fce58e01 --- /dev/null +++ b/0275-shared-state-pt8/swift-composable-architecture/Examples/CaseStudies/SwiftUICaseStudies/Internal/ResignFirstResponder.swift @@ -0,0 +1,21 @@ +import SwiftUI + +extension Binding { + /// SwiftUI will print errors to the console about "AttributeGraph: cycle detected" if you disable + /// a text field while it is focused. This hack will force all fields to unfocus before we write + /// to a binding that may disable the fields. + /// + /// See also: https://stackoverflow.com/a/69653555 + @MainActor + func resignFirstResponder() -> Self { + Self( + get: { self.wrappedValue }, + set: { newValue, transaction in + UIApplication.shared.sendAction( + #selector(UIResponder.resignFirstResponder), to: nil, from: nil, for: nil + ) + self.transaction(transaction).wrappedValue = newValue + } + ) + } +} diff --git a/0275-shared-state-pt8/swift-composable-architecture/Examples/CaseStudies/SwiftUICaseStudies/Internal/TemplateText.swift b/0275-shared-state-pt8/swift-composable-architecture/Examples/CaseStudies/SwiftUICaseStudies/Internal/TemplateText.swift new file mode 100644 index 00000000..9e27a7d3 --- /dev/null +++ b/0275-shared-state-pt8/swift-composable-architecture/Examples/CaseStudies/SwiftUICaseStudies/Internal/TemplateText.swift @@ -0,0 +1,59 @@ +import SwiftUI + +extension Text { + init(template: String, _ style: Font.TextStyle = .body) { + enum Style: Hashable { + case code + case emphasis + case strong + } + + var segments: [Text] = [] + var currentValue = "" + var currentStyles: Set