NYTimes
NY Times is an Minimal News
β
Features
Articles Loading | Browse by Category |
---|---|
Bookmark a Article using 3D Touch. | Deleting bookmarks is just one swipe away |
π
Table of Contents
- Requirements
- What you can learn?
- Technical Background
- Dependencies
- Project Structure
- Features
- Contribute
- Contact
- License
βοΈ
Requirements
iOS 14+
Xcode 12.2 and Up
π
What you can learn?
- You can learn Technologies like
- SwiftUI
- CoreData
- Combine
- Web Scraping
- You can learn various Design patterns from this project such as
- Dependency injection
- Repository
- Singleton
- Observers
- You can learn MVVM Two way binding Architecture for SwiftUI with Combine framework
π
Technical Background
- NYTimes App was made using SwiftUI as the Core interface with Two Way Binding MVVM Architecture using Combine framework.
- CoreData is used to store the Article Bookmarks offline in device so that the user can access it at later time.
- SwiftSoup is used to scrap the required details from the NYTimes website.
- The User interface of this app mostly uses the inbuilt iOS components to keep the User experience close to the native feel.
- Bookmarks can be added as easy as a 3d-touch from Homescreen or a tap in bookmark icon in the detailed article screen.
- This project was built in the mindset of modularity and good coding patterns. Multiple design patterns like Dependency injection, Repository pattern, Singleton Pattern etc.
π
Dependencies
This project uses SPM (Swift Package Manager) as Dependency manager.
β
Project Structure
NYTimes # Root Group
.
βββ Utilities # Utilities for Fetching data ans Scraping HTML
βββ Extensions # Some useful extensions
βββ Globals # Contains App constants
βββ Persistence # Coredata files. Contains coredata model and Singleton for ManagedObjectContext
βββ Views # SwiftUI Views
βββ Repository # Repository for Coredata
βββ ViewModel # Viewmodels for SwiftUI Views
βββ Model # Model files
| βββ Coredata Model # Coredata model subclasses
|
βββ Supporting files # Misc. files like Appdelegate, SceneDelegate.
Architecture
This app uses MVVM architecture.
βοΈ
Contribute
If you want to contribute to this library, you're always welcome!
What you can do
You can contribute us by filing issues, bugs and PRs.
Before you do
Before you open a issue or report a bug, please check if the issue or bug is related to Xcode or SwiftUI.
Contributing guidelines:
- Open issue regarding proposed change.
- Repo owner will contact you there.
- If your proposed change is approved, Fork this repo and do changes.
- Open PR against latest
dev
branch. Add nice description in PR. - You're done!
βοΈ
Donation
If this project help you reduce time to develop, you can give me a cup of coffee :)
π±
Contact
Have an project? DM us at
Drop a mail to:- [email protected]
βοΈ
License
MIT License
Copyright (c) 2020 TheCodeMonks
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.