-
Notifications
You must be signed in to change notification settings - Fork 2.6k
Expand file tree
/
Copy pathViewController.java
More file actions
448 lines (360 loc) · 12.7 KB
/
ViewController.java
File metadata and controls
448 lines (360 loc) · 12.7 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
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
package com.reactnativenavigation.viewcontrollers.viewcontroller;
import static com.reactnativenavigation.utils.CollectionUtils.forEach;
import static com.reactnativenavigation.utils.ObjectUtils.perform;
import android.animation.Animator;
import android.app.Activity;
import android.content.res.Configuration;
import android.view.View;
import android.view.ViewGroup;
import android.view.ViewManager;
import android.view.ViewTreeObserver;
import androidx.annotation.CallSuper;
import androidx.annotation.CheckResult;
import androidx.annotation.NonNull;
import androidx.annotation.Nullable;
import androidx.annotation.VisibleForTesting;
import androidx.coordinatorlayout.widget.CoordinatorLayout;
import com.reactnativenavigation.options.Options;
import com.reactnativenavigation.options.params.Bool;
import com.reactnativenavigation.options.params.NullBool;
import com.reactnativenavigation.react.CommandListener;
import com.reactnativenavigation.utils.Functions.Func1;
import com.reactnativenavigation.utils.StringUtils;
import com.reactnativenavigation.utils.UiThread;
import com.reactnativenavigation.utils.UiUtils;
import com.reactnativenavigation.viewcontrollers.parent.ParentController;
import com.reactnativenavigation.viewcontrollers.stack.StackController;
import com.reactnativenavigation.viewcontrollers.viewcontroller.overlay.ViewControllerOverlay;
import com.reactnativenavigation.views.BehaviourAdapter;
import com.reactnativenavigation.views.component.Component;
import com.reactnativenavigation.views.component.Renderable;
import java.util.ArrayList;
import java.util.List;
public abstract class ViewController<T extends ViewGroup> implements ViewTreeObserver.OnGlobalLayoutListener,
ViewGroup.OnHierarchyChangeListener,
BehaviourAdapter {
private final List<Runnable> onAppearedListeners = new ArrayList<>();
private boolean appearEventPosted;
private boolean isFirstLayout = true;
private Bool waitForRender = new NullBool();
public interface ViewVisibilityListener {
/**
* @return true if the event is consumed, false otherwise
*/
boolean onViewAppeared(View view);
/**
* @return true if the event is consumed, false otherwise
*/
boolean onViewDisappear(View view);
}
public Options initialOptions;
public Options options;
private final Activity activity;
private final String id;
private final YellowBoxDelegate yellowBoxDelegate;
@Nullable
protected T view;
@Nullable
private ParentController<? extends ViewGroup> parentController;
private boolean isShown;
private boolean isDestroyed;
private ViewVisibilityListener viewVisibilityListener = new ViewVisibilityListenerAdapter();
private ViewControllerOverlay overlay;
@Nullable
public abstract String getCurrentComponentName();
public void setOverlay(ViewControllerOverlay overlay) {
this.overlay = overlay;
}
public boolean isDestroyed() {
return isDestroyed;
}
public ViewController(Activity activity, String id, YellowBoxDelegate yellowBoxDelegate, Options initialOptions, ViewControllerOverlay overlay) {
this.activity = activity;
this.id = id;
this.yellowBoxDelegate = yellowBoxDelegate;
this.initialOptions = initialOptions;
this.overlay = overlay;
options = initialOptions.copy();
}
public void setWaitForRender(Bool waitForRender) {
this.waitForRender = waitForRender;
}
public ScrollEventListener getScrollEventListener() {
return null;
}
public void addOnAppearedListener(Runnable onAppearedListener) {
if (isShown) {
onAppearedListener.run();
} else {
onAppearedListeners.add(onAppearedListener);
}
}
public void removeOnAppearedListener(Runnable onAppearedListener) {
onAppearedListeners.remove(onAppearedListener);
}
public abstract T createView();
public void onSelected(ViewController<?> previousVC) {
setVisible();
}
public void onDeselected() {
setInvisible();
}
public void setVisible() {
getView().setVisibility(View.VISIBLE);
onViewWillAppear();
onViewDidAppear();
}
public void setInvisible() {
getView().setVisibility(View.INVISIBLE);
}
public void setViewVisibilityListener(ViewVisibilityListener viewVisibilityListener) {
this.viewVisibilityListener = viewVisibilityListener;
}
@NonNull
public ViewControllerVisibilityInfo getVisibilityInfo() {
return new ViewControllerVisibilityInfo(null);
}
@VisibleForTesting(otherwise = VisibleForTesting.PACKAGE_PRIVATE)
public void ensureViewIsCreated() {
getView();
}
protected boolean isViewCreated() {
return view != null;
}
public boolean handleBack(CommandListener listener) {
return false;
}
public void addOverlay(View v, ViewGroup.LayoutParams layoutParams) {
perform(view, view -> overlay.add(view, v, layoutParams));
}
public void removeOverlay(View view) {
overlay.remove(view);
}
@CheckResult
public Options resolveCurrentOptions() {
return options;
}
@CheckResult
public Options resolveCurrentOptions(Options defaultOptions) {
return options.copy().withDefaultOptions(defaultOptions);
}
@CallSuper
public void mergeOptions(Options options) {
this.initialOptions = this.initialOptions.mergeWith(options);
this.options = this.options.mergeWith(options);
if (getParentController() != null) {
this.options.clearOneTimeOptions();
initialOptions.clearOneTimeOptions();
}
}
public ViewController<?> getTopMostParent(){
if(parentController!=null){
return parentController.getTopMostParent();
}else{
return this;
}
}
@CallSuper
public void applyOptions(Options options) {
}
public void setDefaultOptions(Options defaultOptions) {
}
public Activity getActivity() {
return activity;
}
public void performOnView(Func1<View> task) {
if (view != null) task.run(view);
}
public void performOnParentController(Func1<ParentController> task) {
if (parentController != null) task.run(parentController);
}
@Nullable
public ParentController getParentController() {
return parentController;
}
public ParentController requireParentController() {
return parentController;
}
public void setParentController(ParentController parentController) {
this.parentController = parentController;
}
public void performOnParentStack(Func1<StackController> task) {
if (parentController instanceof StackController) {
task.run((StackController) parentController);
} else if (this instanceof StackController) {
task.run((StackController) this);
} else performOnParentController(parent -> parent.performOnParentStack(task));
}
public T getView() {
if (view == null) {
if (isDestroyed) {
throw new RuntimeException("Tried to create view for " + getClass().getSimpleName() + " (id: " + id + ") after it has already been destroyed");
}
view = createView();
view.setOnHierarchyChangeListener(this);
view.getViewTreeObserver().addOnGlobalLayoutListener(this);
}
return view;
}
public void detachView() {
if (view == null || view.getParent() == null) return;
((ViewManager) view.getParent()).removeView(view);
}
public void attachView(ViewGroup parent, int index) {
if (view == null) return;
if (view.getParent() == null) parent.addView(view, index);
}
@Nullable
public T peekView() {
return view;
}
public String getId() {
return id;
}
boolean isSameId(final String id) {
return StringUtils.isEqual(this.id, id);
}
@Nullable
public ViewController findController(String id) {
return isSameId(id) ? this : null;
}
@Nullable
public ViewController findController(View child) {
return view == child ? this : null;
}
public boolean containsComponent(Component component) {
return getView().equals(component);
}
@CallSuper
public void onViewWillAppear() {
isShown = true;
applyOptions(options);
performOnParentController(parentController -> {
parentController.clearOptions();
if (getView() instanceof Component) parentController.applyChildOptions(options, this);
});
if (!onAppearedListeners.isEmpty() && !appearEventPosted) {
appearEventPosted = true;
UiThread.post(() -> {
forEach(onAppearedListeners, Runnable::run);
onAppearedListeners.clear();
});
}
}
public void onViewDidAppear() {
}
public void onViewWillDisappear() {
}
@CallSuper
public void onViewDisappear() {
isShown = false;
}
@CallSuper
public void destroy() {
if (isShown) {
isShown = false;
onViewDisappear();
}
yellowBoxDelegate.destroy();
if (view instanceof Destroyable) {
((Destroyable) view).destroy();
}
if (view != null) {
view.getViewTreeObserver().removeOnGlobalLayoutListener(this);
view.setOnHierarchyChangeListener(null);
if (view.getParent() instanceof ViewGroup) {
((ViewManager) view.getParent()).removeView(view);
}
setParentController(null);
view = null;
isDestroyed = true;
}
}
@Override
public void onGlobalLayout() {
if (isFirstLayout) {
onAttachToParent();
isFirstLayout = false;
}
if (!isShown && isViewShown()) {
if (!viewVisibilityListener.onViewAppeared(view)) {
isShown = true;
onViewWillAppear();
}
} else if (isShown && !isViewShown()) {
if (!viewVisibilityListener.onViewDisappear(view)) {
isShown = false;
onViewDisappear();
}
}
}
public void onConfigurationChanged(Configuration newConfig) {
}
public void onAttachToParent() {
}
@Override
public void onChildViewAdded(View parent, View child) {
if (parent instanceof ViewGroup && child instanceof ViewGroup) {
((ViewGroup) child).setOnHierarchyChangeListener(new ViewGroup.OnHierarchyChangeListener() {
@Override
public void onChildViewAdded(View parent, View child) {
yellowBoxDelegate.onChildViewAdded(parent, child);
}
@Override
public void onChildViewRemoved(View parent, View child) {
}
});
}
}
@Override
public void onChildViewRemoved(View view, View view1) {
}
public Animator getPushAnimations(Options appearingOptions) {
return null;
}
public Animator getPopAnimations(Options appearingOptions, Options disappearingOptions) {
return null;
}
protected void runOnPreDraw(Func1<T> task) {
if (!isDestroyed) UiUtils.runOnPreDrawOnce(getView(), task);
}
public abstract void sendOnNavigationButtonPressed(String buttonId);
public boolean isViewShown() {
return !isDestroyed &&
view != null &&
view.isShown() &&
isRendered();
}
public boolean isRendered() {
return view != null && (
waitForRender.isFalseOrUndefined() ||
!(view instanceof Renderable) ||
((Renderable) view).isRendered()
);
}
public void start() {
}
public void applyOnController(ViewController controller, Func1<ViewController> task) {
if (controller != null) task.run(controller);
}
@Override
@CallSuper
public boolean onMeasureChild(CoordinatorLayout parent, ViewGroup child, int parentWidthMeasureSpec, int widthUsed, int parentHeightMeasureSpec, int heightUsed) {
perform(findController(child), ViewController::applyTopInset);
return false;
}
@Override
public boolean onDependentViewChanged(CoordinatorLayout parent, ViewGroup child, View dependency) {
return false;
}
public void applyTopInset() {
}
public int getTopInset() {
return 0;
}
public void applyBottomInset() {
}
public int getBottomInset() {
return perform(parentController, 0, p -> p.getBottomInset(this));
}
}