Skip to content

tattn/DIAttribute

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

5 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

DIAttribute

[WIP] DIAttribute introduces dependency injection attribute.

Installation

You can install this framework with Swift Package Manager in Xcode 11.

Feature

Inject protocol values

final class ViewController: UIViewController {
    @Inject(Self.self) var apiClient: APIClientProtocol
    
    ...
}

// Production
DIResolver.register(ViewController.self, keyPath: \.apiClient, value: ProductionAPIClient())

// Test
DIResolver.register(ViewController.self, keyPath: \.apiClient, value: MockAPIClient())

Inject multiple values

struct Environment {
    @Inject(Self.self) var endpoint: URL
    @Inject(Self.self) var timeZone: TimeZone
}

DIResolver.register(Environment.self) {
    Register(URL.self, URL(string: "https://example.com")!)
    Register(TimeZone.self, TimeZone(identifier: "Asia/Tokyo")!)
}

License

DIAttribute is released under the MIT license. See LICENSE for details.

About

Introduce dependency injection attribute (@Inject)

Topics

Resources

Stars

Watchers

Forks

Packages

 
 
 

Contributors

Languages