sunny_kiwi

Creator: coderz1093

Last updated:

0 purchases

TODO
Add to Cart

Description:

sunny kiwi

kiwi #



A simple yet efficient IoC container for Dart and Flutter.
The container does not rely on reflection, it's just a Map, so it's fast.
IMPORTANT: Dart2 is required to use this package.
This package can be used with, or without code generation. While code generation allows you to code faster, it comes with extra configuration on you side (to be setup only one time).
This section is only about kiwi which contains the IoC container and the annotations. If you are looking for the kiwi_generator configuration, you can find documentation here.
Configuration #
Add kiwi to pubspec.yaml under the dependencies field.
The latest version is
dependencies:
kiwi: ^latest_version
copied to clipboard
Import #
In your library add the following import:
import 'package:kiwi/kiwi.dart';
copied to clipboard
Usage #
The core of kiwi is the Container class. This is where all your instances and factories are stored.
The Container is implemented as a singleton, you can access the single instance like this:
Container container = Container();
copied to clipboard
Note: I promise you, even if this is looking like a constructor, you will always end up with the same instance 😉.
If you want different containers, you can create scoped ones easily:
Container container = Container.scoped();
copied to clipboard
Important: If you want to use the Container class with Flutter code, you have to specify a library prefix:
import 'package:kiwi/kiwi.dart' as kiwi;
...
kiwi.Container container = kiwi.Container();
copied to clipboard
It works like a lot of IoC containers: you can register a factory under a type, and then resolve the type to get a value.
Registering #
You can register 3 kinds of objects:
Instances
Kiwi can register simple instances like that:
container.registerInstance(Sith('Anakin', 'Skywalker'));
copied to clipboard
You can also give a name to a specific instance:
container.registerInstance(Sith('Anakin', 'Skywalker'), name: 'DartVader');
copied to clipboard
By default instances are registered under their type. If you want to register an instance under a supertype, you have to specify both of them:
container.registerInstance<Character, Sith>(Sith('Anakin', 'Skywalker'), name: 'DartVader');
copied to clipboard
In the above example Character is a supertype of Sith.
Factories
container.registerFactory((c) => Sith('Anakin', 'Skywalker'));
copied to clipboard
You can also give a name to a specific factory:
container.registerFactory((c) => Sith('Anakin', 'Skywalker'), name: 'DartVader');
copied to clipboard
By default factories are registered under the return type of the factory. If you want to register an factory under a supertype, you have to specify both of them:
container.registerFactory<Character, Sith>((c) => Sith('Anakin', 'Skywalker'), name: 'DartVader');
copied to clipboard
Note: the c parameter is the instance of the Container, we will saw later how it can be useful.
Singletons
Singletons are registered like factories but they are called only once: the first time we get their value.
container.registerSingleton((c) => Sith('Anakin', 'Skywalker'));
copied to clipboard
Resolving #
You can get the instance registered for a type like this:
Sith theSith = container.resolve<Sith>();
copied to clipboard
If it was registered under a name, you can get its value like this:
Sith theSith = container.resolve<Sith>('DartVader');
copied to clipboard
The Container is a callable class. You can also resolve a type like that:
Sith theSith = container<Sith>('DartVader');
copied to clipboard
Usage with dependencies #
If you have a service that depends on another, you have to add the dependency in the constructor. For registering the service, you can then use the c parameter we saw earlier to resolve the value.
class Service {}

class ServiceA extends Service {}

class ServiceB extends Service {
ServiceB(ServiceA serviceA);
}
...
// Registers a complex factory by resolving the dependency
// when the type is resolved.
Container container = Container();
container.registerFactory((c) => ServiceB(c.resolve<ServiceA>()));
copied to clipboard
For services with a lot of dependencies, it can be tedious to write that sort of code. That's why kiwi comes with a generator 😃!
Unregistering #
You can unregister a factory/instance at any time:
// Unregisters the Sith type.
container.unregister<Sith>();

// Unregister the Sith type that was registered under the name DartVader.
container.unregister<Sith>('DartVader');
copied to clipboard
Cleaning #
You can remove all the registered types by calling the clear method:
container.clear();
copied to clipboard
Ignoring assertion errors in development mode #
By default kiwi throws an AssertionError in the following cases:

if you register the same type under the same name a second time.
if you try to resolve or unregister a type that was not previously registered.

This helps you to prevent potential errors in production, however you might want to ignore these assertion errors. To do this you can set true to the silent property of the Container:
container.silent = true;
copied to clipboard
In production, or when silent is true, you will get null if you try to resolve a type that was not previously registered.
Changelog #
Please see the Changelog page to know what's recently changed.

License

For personal and professional use. You cannot resell or redistribute these repositories in their original state.

Files In This Product:

Customer Reviews

There are no reviews.