HoverKitSDK 1.1

HoverKitSDK 1.1

Maintained by Onur H. Çantay.



Version 1.1

apmCocoaPods compatible Carthage compatible Swift Package Manager compatible Swift

Currently Available

Platform Version
iOS 12.0
tvOS 10.0
macOS 10.15
watchOS 3.0
macCatalyst 13.0

Hover is a Network layer which uses Apple's new framework Combine and provides async network calls with different kind of request functions.

Why and When to Use

The main benefit to use Hover is to abstract the networking layer as much as possible and remove redunant code from your projects as we know Apple announced a new framework called Combine the main goal is to provide a declarative Swift API for processing values over time. These values can represent many kinds of asynchronous events, so networking calls are the most important async events, which actually needs to have a support for Combine to prevent and integrate Apple's native framework. Why you shouldnt use is when you dont have that much networking calls and also not so complex data flows to keep track on which means actually that you dont have states for the UI then dont use it. :)

Cocoapods Installation

target 'MyApp' do
  pod 'HoverKitSDK', "~> 1.1"
end

Carthage Installation

github "onurhuseyincantay/Hover" ~> 1.1

Swift Package Manager Installation

Package branch

Sample Usage

Provide Target

 enum UserTarget {
  case login(email: String, password: String) 
 }
 
 extension UserTarget: NetworkTarget { 
    var path: String {
        switch self {
        ...
    }
    var providerType: AuthProviderType {
        ...
    }
    
    var baseURL: URL {
        ...
    }
    
    var methodType: MethodType {
        switch self {
          ...
        }
    }
    
    var contentType: ContentType? {
        switch self {
         ...
        }
    }
    
    var workType: WorkType {
        switch self {
          ...
        }
    }
    
    var headers: [String : String]? {
        ...
    }
 }

Request With Publisher

let provider = Hover()
let publisher = provider.request(
            with: UserTarget.login(email: "[email protected]", password: "123456"),
            scheduler: DispatchQueue.main,
            class: UserModel.self
        )
...
publisher.sink({ ... })

Request With Subscriber

let provider = Hover()
let userSubscriber = UserSubscriber()
provider.request(with: UserTarget.login(email: "[email protected]", password: "123456"), class: UserModel.self, subscriber: userSubscriber)

Tested with JsonPlaceholder Inspired By Moya Developed with 🧡