This application is implemented using the MVVM (Model-View-ViewModel) pattern along with the Clean Architecture. It is structured into three separate modules: Data, Domain, and MediaListUIKit. These modules are organized in a Monorepo setup, managed using Swift Package Manager, and all the modules are kept within a single package.
- SwiftUI
- MVVM + clean architecture
- Unit Test + MockURL
- async / await (Structured concurrency)
- Combine
- Http client (Alamofire)
- Xcode 14.3.1
- Swift 5.8.1
In a Monorepo setup, multiple related projects are stored in a single repository, making it easier to manage and share code between them.
monorepo.tools
- Data Module: Contains implementations related to repository, network, and local storage.
- Domain Module: Consists of repository protocols, use cases, and entities.
- MediaListUIKit Module: Contains Colors, Fonts, and views.
For more detailed information about each module, you can refer to the following links:
DataREADME
DomainREADME
MediaListUIKitREADME
-
Data Layer: This layer includes repository implementations, network-related components, and local storage handling.
-
Domain Layer: Here, you'll find repository protocols, use cases (interactors), and entities that represent the core business logic and data structures.
-
Presentation Layer: This layer is divided into view models (ViewModels) and views (Views) responsible for presenting the user interface and handling the user interactions.
It's important to note that the Presentation layer is part of the main app and is not organized as a separate module.
In the Presentation section, the following key components are present:
-
AppDelegate: This class manages the application's lifecycle. It begins by registering the necessary fonts. It also creates the container required for Dependency Injection, which is utilized by the
ViewModelFactory
. -
DIContainer (Dependency Injection Container): This protocol is responsible for creating the desired use cases. It should be passed to view models that need these use cases.
By implementing
DIContainerImpl
, we fulfill the DIContainer protocol, and this is where everything needed to construct use cases is assembled. -
ViewModelFactory: The purpose of this class is to create view models. It handles the creation of view models that may require specific use cases. In this scenario, views don't directly get involved in the construction of view models; instead, the ViewModelFactory takes care of it.
- Test
- UItest cases.
- Test plan.
- CI
- setup Github Action.
If the links in the MD files are not working, it's better to clone the source code and view it using VSCode. I have no idea why it's not working.
Contributions, issues, and feature requests are welcome! Feel free to fork the repository and submit a pull request with your changes.
Please check LICENSE for details.