get_state.dart
7.41 KB
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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
import 'package:flutter/material.dart';
import '../../../get_instance/src/get_instance.dart';
import '../../../instance_manager.dart';
import '../../get_state_manager.dart';
typedef GetControllerBuilder<T extends DisposableInterface> = Widget Function(
T controller);
extension WatchExt on BuildContext {
T listen<T extends GetxController>() {
return Scope.of(this, rebuild: true);
}
}
extension ReadExt on BuildContext {
T find<T extends GetxController>() {
return Scope.of(this);
}
}
// extension FilterExt on BuildContext {
// T filter<T extends GetxController>(Object Function(T value)? filter) {
// return Scope.of(this, filter: filter, rebuild: true);
// }
// }
class GetBuilder<T extends GetxController> extends StatelessWidget {
final GetControllerBuilder<T> builder;
final bool global;
final Object? id;
final String? tag;
final bool autoRemove;
final bool assignId;
final Object Function(T value)? filter;
final void Function(ScopeElement<T> state)? initState,
dispose,
didChangeDependencies;
final void Function(Scope<T> oldWidget, ScopeElement<T> state)?
didUpdateWidget;
final T? init;
const GetBuilder({
Key? key,
this.init,
this.global = true,
required this.builder,
this.autoRemove = true,
this.assignId = false,
this.initState,
this.filter,
this.tag,
this.dispose,
this.id,
this.didChangeDependencies,
this.didUpdateWidget,
}) : super(key: key);
@override
Widget build(BuildContext context) {
return Scope<T>(
init: init,
global: global,
autoRemove: autoRemove,
assignId: assignId,
initState: initState,
filter: filter,
tag: tag,
dispose: dispose,
id: id,
didChangeDependencies: didChangeDependencies,
didUpdateWidget: didUpdateWidget,
child: Builder(builder: (context) {
final controller = Scope.of<T>(context, rebuild: true);
return builder(controller);
}),
);
// return widget.builder(controller!);
}
}
class Scope<T extends GetxController> extends InheritedWidget {
/// Create an inherited widget that updates its dependents when [controller]
/// sends notifications.
///
/// The [child] argument is required
const Scope({
Key? key,
required Widget child,
this.init,
this.global = true,
this.autoRemove = true,
this.assignId = false,
this.initState,
this.filter,
this.tag,
this.dispose,
this.id,
this.didChangeDependencies,
this.didUpdateWidget,
}) : super(key: key, child: child);
/// The [Listenable] object to which to listen.
///
/// Whenever this object sends change notifications, the dependents of this
/// widget are triggered.
///
/// By default, whenever the [controller] is changed (including when changing to
/// or from null), if the old controller is not equal to the new controller (as
/// determined by the `==` operator), notifications are sent. This behavior
/// can be overridden by overriding [updateShouldNotify].
///
/// While the [controller] is null, no notifications are sent, since the null
/// object cannot itself send notifications.
final T? init;
final bool global;
final Object? id;
final String? tag;
final bool autoRemove;
final bool assignId;
final Object Function(T value)? filter;
final void Function(ScopeElement<T> state)? initState,
dispose,
didChangeDependencies;
final void Function(Scope<T> oldWidget, ScopeElement<T> state)?
didUpdateWidget;
static T of<T extends GetxController>(
BuildContext context, {
bool rebuild = false,
// Object Function(T value)? filter,
}) {
final inheritedElement = context
.getElementForInheritedWidgetOfExactType<Scope<T>>() as ScopeElement<T>;
if (rebuild) {
// var newFilter = filter?.call(inheritedElement.controller!);
// if (newFilter != null) {
// context.dependOnInheritedElement(inheritedElement, aspect: newFilter);
// } else {
context.dependOnInheritedElement(inheritedElement);
// }
}
var widget = inheritedElement.controller;
if (widget == null) {
throw 'Error: Could not find the correct dependency.';
} else {
return widget;
}
}
@override
bool updateShouldNotify(Scope<T> oldWidget) {
return oldWidget.id != id ||
oldWidget.global != global ||
oldWidget.autoRemove != autoRemove ||
oldWidget.assignId != assignId;
}
@override
InheritedElement createElement() => ScopeElement<T>(this);
}
/// The ScopeElement is responsible for injecting dependencies into the widget
/// tree so that they can be observed
class ScopeElement<T extends GetxController> extends InheritedElement {
ScopeElement(Scope<T> widget) : super(widget) {
initState();
}
T? controller;
bool? _isCreator = false;
VoidCallback? _remove;
Object? _filter;
void initState() {
widget.initState?.call(this);
var isRegistered = GetInstance().isRegistered<T>(tag: widget.tag);
if (widget.global) {
if (isRegistered) {
if (GetInstance().isPrepared<T>(tag: widget.tag)) {
_isCreator = true;
} else {
_isCreator = false;
}
controller = GetInstance().find<T>(tag: widget.tag);
} else {
controller = widget.init;
_isCreator = true;
GetInstance().put<T>(controller!, tag: widget.tag);
}
} else {
controller = widget.init;
_isCreator = true;
controller?.onStart();
}
if (widget.filter != null) {
_filter = widget.filter!(controller!);
}
_subscribeToController();
}
/// Register to listen Controller's events.
/// It gets a reference to the remove() callback, to delete the
/// setState "link" from the Controller.
void _subscribeToController() {
_remove?.call();
_remove = (widget.id == null)
? controller?.addListener(
_filter != null ? _filterUpdate : getUpdate,
)
: controller?.addListenerId(
widget.id,
_filter != null ? _filterUpdate : getUpdate,
);
}
void _filterUpdate() {
var newFilter = widget.filter!(controller!);
if (newFilter != _filter) {
_filter = newFilter;
getUpdate();
}
}
void dispose() {
widget.dispose?.call(this);
if (_isCreator! || widget.assignId) {
if (widget.autoRemove && GetInstance().isRegistered<T>(tag: widget.tag)) {
GetInstance().delete<T>(tag: widget.tag);
}
}
_remove?.call();
controller = null;
_isCreator = null;
_remove = null;
_filter = null;
}
@override
Scope<T> get widget => super.widget as Scope<T>;
var _dirty = false;
@override
void update(Scope<T> newWidget) {
final oldNotifier = widget.id;
final newNotifier = newWidget.id;
if (oldNotifier != newNotifier) {
_subscribeToController();
}
widget.didUpdateWidget?.call(widget, this);
super.update(newWidget);
}
@override
void didChangeDependencies() {
super.didChangeDependencies();
widget.didChangeDependencies?.call(this);
}
@override
Widget build() {
if (_dirty) {
notifyClients(widget);
}
return super.build();
}
void getUpdate() {
_dirty = true;
markNeedsBuild();
}
@override
void notifyClients(Scope<T> oldWidget) {
super.notifyClients(oldWidget);
_dirty = false;
}
@override
void unmount() {
dispose();
super.unmount();
}
}