Code Monkey home page Code Monkey logo

injection's People

Contributors

julianalonso avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar

injection's Issues

Provide a way to call `.resolve()` to get shared container Instances

Sometimes you will need to resolve dependencies provided by the shared module while you have not access to it. This could happen because you're out of a ModuleBuilder.
Provide access to resolve shared dependencies.

//Usage proposal
resolve()
// or with tag
resolve(tag: "tag")

So we will add a resolve public function to handle this kind of usage.

Add podspec

Add podspec to allow installation from CocoaPods

Add a logger

Create a Logger that puts how dependencies are being resolved, what modules are resolving it and if some dependency fails to get resolved.

Provide two logger levels, .error, .debug.
Error will print only whats happening when some dependency it's not resolved.
Debug will print all.

@Inject Support

Add @Inject support to Auto Wire properties inside dependencies.

The usage should be something like...

struct A {
    @Inject var b: B
}
  • Have this working on Structs
  • Have this working on Classes
  • Have this working also on ModuleBuilders

ModuleBuilders feature will be something like...

final class MagicMB: ModuleBuilder<UIViewController> {
    @Inject var some: Some

    func build() -> UIViewController {
         MagicViewController(some: some)
    }
}

Add `callAsFunction` to module

Adding this new Swift 5.2 feature to module we will have the option to call it as function and resolve dependencies on factories registrations like:

factory { Some(dependency: $0()) }

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.