-
Notifications
You must be signed in to change notification settings - Fork 0
/
generics_and_injection_tokens.dart
78 lines (58 loc) · 1.79 KB
/
generics_and_injection_tokens.dart
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
/*
* This file is part of the flutter_catalyst package.
*
* Copyright 2020 - present by Julian Finkler <[email protected]>
*
* For the full copyright and license information, please read the LICENSE
* file that was distributed with this source code.
*/
import 'package:flutter_catalyst/flutter_catalyst.dart';
main() {
var container = DependencyContainer();
// No problem:
// container.register(GenericStack<String>());
// var stringStack = container.get<GenericStack<String>>();
// The problem
// container.register(GenericStack<String>());
// container.registerWithDependencies((deps) {
// return StackPrinter(deps[0]);
// }, [GenericStack]); // <-- can't pass the type here
// Solution
var injectionToken = StringStackToken();
container.register(injectionToken);
container.registerWithDependencies<StackPrinter>((deps) {
// deps[0] is NOT the Token but the GenericStack<String> instance
return StackPrinter(deps[0]);
}, [StringStackToken]);
container.wire();
var stack = container.getFromToken<GenericStack<String>>();
stack.add('Hello');
stack.add('World');
var stackPrinter = container.get<StackPrinter>();
stackPrinter.printStack(); // [Hello, World]
}
class GenericStack<T> {
List<T> _entries = [];
void add(T entry) {
_entries.add(entry);
}
void remove(T entry) {
_entries.removeWhere((e) => e == entry);
}
List<T> get entries => _entries;
int get length => _entries.length;
}
class StringStackPrinter {
final GenericStack<String> stack;
StringStackPrinter(this.stack);
}
class StringStackToken extends InjectionToken<GenericStack<String>> {
StringStackToken() : super(GenericStack<String>());
}
class StackPrinter {
final GenericStack stack;
StackPrinter(this.stack);
printStack() {
print(stack.entries);
}
}