Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/rpassis/photosrx
Helpful unit tested reactive classes and extensions for Apple's Photos framework
https://github.com/rpassis/photosrx
Last synced: 20 days ago
JSON representation
Helpful unit tested reactive classes and extensions for Apple's Photos framework
- Host: GitHub
- URL: https://github.com/rpassis/photosrx
- Owner: rpassis
- License: mit
- Created: 2018-12-29T17:28:53.000Z (about 6 years ago)
- Default Branch: develop
- Last Pushed: 2018-12-31T22:01:11.000Z (about 6 years ago)
- Last Synced: 2024-11-05T22:43:12.203Z (2 months ago)
- Language: Swift
- Homepage:
- Size: 54.7 KB
- Stars: 2
- Watchers: 2
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE.md
Awesome Lists containing this project
README
PhotosRx
======================================[![Carthage Compatible](https://img.shields.io/badge/Carthage-compatible-4BC51D.svg?style=flat)](https://github.com/Carthage/Carthage)
[![Build Status](https://travis-ci.org/rpassis/PhotosRx.svg?branch=develop)](https://travis-ci.org/rpassis/PhotosRx)
[![codecov](https://codecov.io/gh/rpassis/PhotosRx/branch/develop/graph/badge.svg)](https://codecov.io/gh/rpassis/PhotosRx)## About
The goal of this project is to incrementally add reactive support to all of Apple's Photos framework APis.
## TODO
### PHImageManager
* ~~requestImage(for:targetSize:contentMode:options:resultHandler:)~~
* ~~requestImageData(for:options:resultHandler:)~~
* ~~requestExportSession(forVideo:options:exportPreset:resultHandler:)~~
* ~~requestPlayerItem(forVideo:options:resultHandler:)~~
* requestLivePhoto(for:targetSize:contentMode:options:resultHandler:)
* requestAVAsset(forVideo:options:resultHandler:)### PHAsset
* requestContentEditingInput(with:completionHandler)
### AVAssetExportSession
* ~~exportAsynchronously(completionHandler:)~~
* ~~determineCompatibleFileTypes(completionHandler:)~~## Requirements
* Xcode 10
* Swift 4.2## Installation
### [CocoaPods](https://guides.cocoapods.org/using/using-cocoapods.html)
**Tested with `pod --version`: `1.1.1`**
In your `Podfile`:
```ruby
use_frameworks!target "YOUR_TARGET_NAME" do
pod "PhotosRx"
end
```Replace `YOUR_TARGET_NAME` and then, in the same directory, run:
```shell
pod install
```### [Carthage](https://github.com/Carthage/Carthage#installing-carthage)
**Tested with `carthage version`: `0.18`**
Add this to `Cartfile`
```
github "rpassis/PhotosRx"
```In the same directory, run:
```shell
carthage update
```Link/Embed frameworks as explained [here](https://github.com/Carthage/Carthage#adding-frameworks-to-an-application). Besides linking `PhotosRx`, you will also need to link `RxSwift` and `RxCocoa`.
## Contributing
Help is always appreciated!
```shell
git clone [email protected]:rpassis/PhotosRx.git
cd PhotosRx
```
> Or use your own forked repo.```shell
carthage bootstrap
```
> This is necessary in order to be able to build the framework on its own and run tests.
However, if you prefer, you can instead develop it while it's within another project.Before submitting a PR, please make sure that the tests pass.