Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/gperdomor/moyamodelmapper

ModelMapper bindings for Moya, RxSwift and ReactiveSwift
https://github.com/gperdomor/moyamodelmapper

json mapper modelmapper moya reactiveswift rxswift swift swift3

Last synced: about 17 hours ago
JSON representation

ModelMapper bindings for Moya, RxSwift and ReactiveSwift

Awesome Lists containing this project

README

        

# MoyaModelMapper
[![Build Status](https://travis-ci.org/gperdomor/MoyaModelMapper.svg?branch=master)](https://travis-ci.org/gperdomor/MoyaModelMapper)
[![codecov](https://codecov.io/gh/gperdomor/MoyaModelMapper/branch/master/graph/badge.svg)](https://codecov.io/gh/gperdomor/MoyaModelMapper)
[![Carthage compatible](https://img.shields.io/badge/Carthage-compatible-4BC51D.svg?style=flat)](https://github.com/Carthage/Carthage)
[![CocoaPods compatible](https://img.shields.io/cocoapods/v/MoyaModelMapper.svg)](https://cocoapods.org/pods/MoyaModelMapper)
[![Swift Package Manager compatible](https://img.shields.io/badge/Swift%20Package%20Manager-compatible-brightgreen.svg)](https://github.com/apple/swift-package-manager)

[ModelMapper](https://github.com/lyft/mapper) bindings for
[Moya](https://github.com/Moya/Moya) for easier JSON serialization. Includes
[RxSwift](https://github.com/ReactiveX/RxSwift) and [ReactiveSwift](https://github.com/ReactiveCocoa/ReactiveSwift) bindings as well.

# Installation

## CocoaPods
Use the following entry in your Podfile
```
pod 'MoyaModelMapper', '1.0.2'
```

The subspec if you want to use the bindings over RxSwift.
```
pod 'MoyaModelMapper/RxSwift', '1.0.2'
```

And the subspec if you want to use the bindings over ReactiveSwift.
```
pod 'MoyaModelMapper/ReactiveSwift', '1.0.2'
```

# Usage

Create a model struct or class. It needs to implement protocol Mappable. More details about model creation [here](https://github.com/lyft/mapper/)

```swift
import Foundation
import Mapper

struct Repository: Mappable {
let identifier: Int
let name: String
let fullName: String
let language: String? // Optional property

init(map: Mapper) throws {
try identifier = map.from("id")
try name = map.from("name")
try fullName = map.from("full_name")
language = map.optionalFrom("language") // Optional property
}
}
```

Then you have methods that extends the response from Moya. These methods are:
```swift
map(to: type) // map object
map(to: type, fromKey: key) // map object
map(to: [type]) // map array of objects
map(to: [type], fromKey: key) // map array of objects
```

While using `map(to: type)` tries to map whole response data to object,
with `map(to: type, fromKey: key)` you can specify nested object in a response to
fetch. For example `map(to: type, fromKey: "data.response.user")` will go through
dictionary of data, through dictionary of response to dictionary of user, which it
will parse.

For `RxSwift` and `ReactiveSwift` additionally methods for optional mapping are provided.
These methods are:

```swift
mapOptional(to: type)
mapOptional(to: type, fromKey: key)
mapOptional(to: [type])
mapOptional(to: [type], fromKey: key)
```

See examples below, or in a Demo project.

## 1. Normal usage (without RxSwift or ReactiveSwift)

```swift
provider = MoyaProvider()
provider.request(GitHub.repos(username: "gperdomor")) { (result) in
if case .success(let response) = result {
do {
let repos = try response.map(to: [Repository.self])
print(repos)
} catch Error.jsonMapping(let error) {
print(try? error.mapString())
} catch {
print(":(")
}
}
}
```

## 2. RxSwift
```swift
provider = RxMoyaProvider()
provider.request(GitHub.repo(fullName: "gperdomor/sygnaler"))
.map(to: Repository.self)
.subscribe { event in
switch event {
case .next(let repo):
print(repo)
case .error(let error):
print(error)
default: break
}
}
```

Additionally, modules for `RxSwift` contains optional mappings. It basically means that if the mapping fails, mapper doesn't throw errors but returns nil. For instance:

```swift
provider = RxMoyaProvider()
provider
.request(GitHub.repos(username: "gperdomor"))
.mapOptional(to: [Repository.self])
.subscribe { event in
switch event {
case .next(let repos):
// Here we can have either nil or [Repository] object.
print(repos)
case .error(let error):
print(error)
default: break
}
}
```

## 3. ReactiveSwift
```swift
provider = ReactiveSwiftMoyaProvider()
provider
.request(GitHub.repos(username: "gperdomor"))
.map(to: [Repository.self])
.start { event in
switch event {
case .value(let repos):
print(repos)
case .failed(let error):
print(error)
default: break
}
}
```

Additionally, modules for `ReactiveSwift` contains optional mappings. It basically means that if the mapping fails, mapper doesn't throw errors but returns nil. For instance:

```swift
provider = ReactiveSwiftMoyaProvider()
provider
.request(GitHub.repos(username: "gperdomor"))
.mapOptional(to: [Repository.self])
.start { event in
switch event {
case .value(let repos):
// Here we can have either nil or [Repository] object.
print(repos)
case .failed(let error):
print(error)
default: break
}
}
```

## Sample Project

There's a sample project in the Demo directory. To use it, run `pod install` to download the required libraries. Have fun!

## Other Mappers
- [MoyaObjectMapper](https://github.com/gperdomor/MoyaObjectMapper): ObjectMapper bindings for Moya
- [MoyaUnbox](https://github.com/gperdomor/MoyaUnbox): Unbox bindings for Moya

## Contributing

Hey! Like MoyaModelMapper? Awesome! We could actually really use your help!

Open source isn't just writing code. MoyaModelMapper could use your help with any of the
following:

- Finding (and reporting!) bugs.
- New feature suggestions.
- Answering questions on issues.
- Documentation improvements.
- Reviewing pull requests.
- Helping to manage issue priorities.
- Fixing bugs/new features.

If any of that sounds cool to you, send a pull request! After a few
contributions, we'll add you as an admin to the repo so you can merge pull
requests and help steer the ship :ship:

## License

MoyaModelMapper is available under the MIT license. See the LICENSE file for more info.