dioc_generator 0.0.1 copy "dioc_generator: ^0.0.1" to clipboard
dioc_generator: ^0.0.1 copied to clipboard

outdatedDart 1 only

A generator of code for dioc containers.

dioc_generator #

A generator of code for dioc containers.

Usage #

All registrations are made by annotating a partial bootstrapper class.

Various environments could be declared as methods that return a Container. You have to decorate these methods with Provide annotations to register dependencies.

library example;

import 'package:dioc/src/container.dart';
import 'package:dioc/src/built_container.dart';

part "example.g.dart";

@bootsrapper
@Provide.implemented(OtherService) // Default registration for all environments
abstract class AppBootsrapper extends Bootsrapper {

  @Provide(Service, MockService)
  Container development();

  @Provide(Service, WebService)
  Container production();
}

To indicate how to inject dependencies, you can also decorate your class fields with Inject annotations (and @inject, @singleton shortcuts).

class OtherService {
  @inject
  final Service dependency;

  @singleton
  final Service dependency2;

  OtherService(this.dependency,{this.dependency2});
}

To trigger code generation, create a tool/watch.dart file into your project based on watch.dart file and run the dart tool/watch.dart command at the root of your project. A *.g.dart will be contiously updated next to your bootstrapper.

A complete example is also available.

Features and bugs #

Please file feature requests and bugs at the issue tracker.

0
likes
0
pub points
0%
popularity

Publisher

unverified uploader

A generator of code for dioc containers.

Homepage

License

unknown (LICENSE)

Dependencies

analyzer, build, build_runner, build_test, code_builder, dart_style, dioc, source_gen

More

Packages that depend on dioc_generator