Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/jonsamwell/flutter_simple_dependency_injection
A super simple dependency injection implementation for flutter that behaviours like any normal IOC container and does not rely on mirrors
https://github.com/jonsamwell/flutter_simple_dependency_injection
dart dependency-injection flutter flutter-plugin
Last synced: 7 days ago
JSON representation
A super simple dependency injection implementation for flutter that behaviours like any normal IOC container and does not rely on mirrors
- Host: GitHub
- URL: https://github.com/jonsamwell/flutter_simple_dependency_injection
- Owner: jonsamwell
- License: mit
- Created: 2018-06-28T01:12:15.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2021-04-14T22:15:50.000Z (over 3 years ago)
- Last Synced: 2024-10-18T05:57:48.405Z (21 days ago)
- Topics: dart, dependency-injection, flutter, flutter-plugin
- Language: Dart
- Size: 39.1 KB
- Stars: 94
- Watchers: 5
- Forks: 8
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE
Awesome Lists containing this project
README
# flutter_simple_dependency_injection
A simple dependency injection plugin for [Flutter](https://flutter.io) and Dart.
This implementation *does not* rely on the dart reflection apis (mirrors) and favours a simple factory based approach.
This increases the performance and simplicity of this implementation.* Support for multiple injectors (useful for unit testing or code running in isolates)
* Support for types and named types
* Support for singletons
* Support simple values (useful for configuration parameters like api keys or urls)Any help is appreciated! Comment, suggestions, issues, PR's!
## Getting Started
In your flutter or dart project add the dependency:
``` yml
dependencies:
...
flutter_simple_dependency_injection: any
```For help getting started with Flutter, view the online
[documentation](https://flutter.io/).## Usage example
Import `flutter_simple_dependency_injection`
``` dart
import 'package:flutter_simple_dependency_injection/injector.dart';
```### Injector Configuration
As this injector relies on factories rather than reflection (as mirrors in not available in Flutter)
each mapped type needs to provide a factory function. In most cases this can just be a simple
new object returned function. In slightly more advanced scenarios where the type to be created relies
on other types an injector instances is passed into the factory function to allow the type of be created
to get other types it depends on (see below for examples).``` dart
import 'package:flutter_simple_dependency_injection/injector.dart';void main() {
// it is best to place all injector initialisation work into one or more modules
// so it can act more like a dependency injector than a service locator.
// The Injector implements a singleton pattern. You can get a singleton injector instance
// just by calling Injector().
final injector = ModuleContainer().initialise(Injector());// NOTE: it is best to architect your code so that you never need to
// interact with the injector itself. Make this framework act like a dependency injector
// by having dependencies injected into objects in their constructors. That way you avoid
// any tight coupling with the injector itself.// Basic usage, however this kind of tight couple and direct interaction with the injector
// should be limited. Instead prefer dependencies injection.// simple dependency retrieval and method call
injector.get().doSomething();// get an instance of each of the same mapped types
final instances = injector.getAll();
print(instances.length); // prints '3'// passing in additional arguments when getting an instance
final instance =
injector.get(additionalParameters: {"id": "some-id"});
print(instance.id); // prints 'some-id'
}class ModuleContainer {
Injector initialise(Injector injector) {
injector.map((i) => Logger(), isSingleton: true);
injector.map((i) => "https://api.com/", key: "apiUrl");
injector.map(
(i) => SomeService(i.get(), i.get(key: "apiUrl")));// note that you can configure mapping in a fluent programming style too
injector.map((injector) => SomeType("0"))
..map((injector) => SomeType("1"), key: "One")
..map((injector) => SomeType("2"), key: "Two");injector.mapWithParams((i, p) => SomeOtherType(p["id"]));
return injector;
}
}class Logger {
void log(String message) => print(message);
}class SomeService {
final Logger _logger;
final String _apiUrl;SomeService(this._logger, this._apiUrl);
void doSomething() {
_logger.log("Doing something with the api at '$_apiUrl'");
}
}class SomeType {
final String id;
SomeType(this.id);
}class SomeOtherType {
final String id;
SomeOtherType(this.id);
}```
### Remove mappings
You can remove a mapped a factory/instance at any time:
```
injector.removeMapping();injector.removeMapping(key: 'some_key');
injector.removeAllMappings();
```### Multiple Injectors
The Injector class has a factory constructor that by default returns the default singleton instance of the injector. In most cases this will be enough.
However, you can pass a name into this factory constructor to return another isolated injector that is independent from the default injector. Passing in a new
injector name will create the injector if it has not be retrieved before.``` dart
final defaultInjector = Injector();
final isolatedInjector = Injector("Isolated");
```To destroy an injector instance call its `dispose` method. The particular instance of the injector with all mappings will be removed.
``` dart
Injector().dispose();
Injector("Isolated").dispose();
```