Awesome
SwiftUI Redux Utils
<p> <img src="https://img.shields.io/badge/Swift-5.5-F06C33.svg" /> <img src="https://img.shields.io/badge/iOS-15.0+-865EFC.svg" /> <img src="https://img.shields.io/badge/iPadOS-15.0+-F65EFC.svg" /> <img src="https://img.shields.io/badge/macOS-12.0+-179AC8.svg" /> <img src="https://img.shields.io/badge/tvOS-15.0+-41465B.svg" /> <img src="https://img.shields.io/badge/watchOS-8.0+-1FD67A.svg" /> <img src="https://img.shields.io/badge/License-MIT-blue.svg" /> <img src="https://github.com/CypherPoet/SwiftUIReduxUtils/workflows/Build%20&%20Test/badge.svg" /> <a href="https://github.com/apple/swift-package-manager"> <img src="https://img.shields.io/badge/spm-compatible-brightgreen.svg?style=flat" /> </a> <a href="https://twitter.com/cypher_poet"> <img src="https://img.shields.io/badge/Contact-@cypher_poet-lightgrey.svg?style=flat" alt="Twitter: @cypher_poet" /> </a> </p> <p align="center">A collection utilities for architecting SwiftUI apps in the Redux/Elm style of Reducers, Actions, Side Effects and Middlewares.
<p />Installation
Xcode Projects
Select File
-> Swift Packages
-> Add Package Dependency
and enter https://github.com/CypherPoet/SwiftUIReduxUtils
.
Swift Package Manager Projects
You can add CypherPoetSwiftUIReduxUtils
as a package dependency in your Package.swift
file:
let package = Package(
//...
dependencies: [
.package(
name: "CypherPoetSwiftUIReduxUtils",
url: "https://github.com/CypherPoet/SwiftUIReduxUtils",
.upToNextMinor(from: "0.5.0")
),
],
//...
)
From there, refer to the SwiftUIReduxUtils
"product" delivered by the CypherPoetSwiftUIReduxUtils
"package" inside of any of your project's target dependencies:
targets: [
.target(
name: "YourLibrary",
dependencies: [
.product(
name: "SwiftUIReduxUtils",
package: "CypherPoetSwiftUIReduxUtils"
),
],
...
),
...
]
Then simply import SwiftUIReduxUtils
wherever you’d like to use it.
Usage
The goal of these utilities is to serve as primitives for architecting SwiftUI apps in the Redux/Elm style of Reducers, Actions, Side Effects and Middlewares.
Version 0.2.2 had an example application that demonstrated this, but it's no longer functional after 0.3.0
's concurrency refactor. That said, until I get a new example in place, it could still be useful to look through to some extent.
Contributing
There aren't many to-dos here at the moment, but feedback and suggestions are certainly not discouraged. Check out some of the issue templates for more info.
Developing
Requirements
- Xcode 13.0+
📜 Creating & Building Documentation
Documentation is built with Xcode's DocC. See Apple's guidance on how to build, run, and create DocC content.
For now, the best way to view the docs is to open the project in Xcode and run the Build Documentation
command. At some point in the future, I'm hoping to leverage the tooling the develops for generating/hosting DocC documentation. (Please feel free to let me know if you have any ideas or tooling recommendations around this 🙂).
Acknowledgments
This project wouldn't be possible without several enlightening projects, articles, and tutorials by others in the Swift community who latched onto using these patterns in SwiftUI. Here are just a few of its main inspirations:
- Redux-like state container in SwiftUI by @mecid.
- Redux-like architecture with SwiftUI by @afterxleep.
- SwiftUI-Redux by @kitasuke.
- The Composable Architecture
License
CypherPoetSwiftUIReduxUtils
is available under the MIT license. See the LICENSE file for more info.