-
Notifications
You must be signed in to change notification settings - Fork 2.6k
Expand file tree
/
Copy pathComponentViewController.java
More file actions
212 lines (182 loc) · 7.18 KB
/
ComponentViewController.java
File metadata and controls
212 lines (182 loc) · 7.18 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
package com.reactnativenavigation.viewcontrollers.component;
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 androidx.annotation.NonNull;
import androidx.annotation.Nullable;
import androidx.core.graphics.Insets;
import androidx.core.view.ViewCompat;
import androidx.core.view.WindowInsetsCompat;
import com.reactnativenavigation.options.Options;
import com.reactnativenavigation.utils.SystemUiUtils;
import com.reactnativenavigation.viewcontrollers.child.ChildController;
import com.reactnativenavigation.viewcontrollers.child.ChildControllersRegistry;
import com.reactnativenavigation.viewcontrollers.viewcontroller.Presenter;
import com.reactnativenavigation.viewcontrollers.viewcontroller.ReactViewCreator;
import com.reactnativenavigation.viewcontrollers.viewcontroller.ScrollEventListener;
import com.reactnativenavigation.views.component.ComponentLayout;
public class ComponentViewController extends ChildController<ComponentLayout> {
private final String componentName;
private final ComponentPresenter presenter;
private final ReactViewCreator viewCreator;
private enum VisibilityState {
Appear, Disappear
}
private VisibilityState lastVisibilityState = VisibilityState.Disappear;
public ComponentViewController(final Activity activity,
final ChildControllersRegistry childRegistry,
final String id,
final String componentName,
final ReactViewCreator viewCreator,
final Options initialOptions,
final Presenter presenter,
final ComponentPresenter componentPresenter) {
super(activity, childRegistry, id, presenter, initialOptions);
this.componentName = componentName;
this.viewCreator = viewCreator;
this.presenter = componentPresenter;
}
@Override
public void start() {
if (!isDestroyed())
getView().start();
}
@Override
public String getCurrentComponentName() {
return this.componentName;
}
@Override
public void setDefaultOptions(Options defaultOptions) {
super.setDefaultOptions(defaultOptions);
presenter.setDefaultOptions(defaultOptions);
}
@Nullable
@Override
public Animator getPushAnimations(Options appearingOptions) {
return this.presenter.getStatusBarPushAnimation(appearingOptions);
}
@Nullable
@Override
public Animator getPopAnimations(Options appearingOptions, Options disappearingOptions) {
return this.presenter.getStatusBarPopAnimation(appearingOptions, disappearingOptions);
}
@Override
public ScrollEventListener getScrollEventListener() {
return perform(view, null, ComponentLayout::getScrollEventListener);
}
@Override
public void onViewWillAppear() {
super.onViewWillAppear();
if (view != null) {
view.sendComponentWillStart();
}
}
@Override
public void onViewDidAppear() {
if (view != null)
view.sendComponentWillStart();
super.onViewDidAppear();
if (view != null)
view.requestApplyInsets();
if (view != null && lastVisibilityState == VisibilityState.Disappear)
view.sendComponentStart();
lastVisibilityState = VisibilityState.Appear;
}
@Override
public void onViewDisappear() {
if (lastVisibilityState == VisibilityState.Disappear)
return;
lastVisibilityState = VisibilityState.Disappear;
if (view != null)
view.sendComponentStop();
super.onViewDisappear();
}
@Override
public void sendOnNavigationButtonPressed(String buttonId) {
getView().sendOnNavigationButtonPressed(buttonId);
}
@Override
public void applyOptions(Options options) {
if (isRoot())
applyTopInset();
super.applyOptions(options);
getView().applyOptions(options);
presenter.applyOptions(getView(), resolveCurrentOptions(presenter.defaultOptions));
}
@Override
public boolean isViewShown() {
return super.isViewShown() && view != null && view.isReady();
}
@NonNull
@Override
public ComponentLayout createView() {
ComponentLayout view = (ComponentLayout) viewCreator.create(getActivity(), getId(), componentName);
return (ComponentLayout) view.asView();
}
@Override
public void mergeOptions(Options options) {
if (options == Options.EMPTY)
return;
if (isViewShown())
presenter.mergeOptions(getView(), options);
super.mergeOptions(options);
}
@Override
public void applyTopInset() {
if (view != null)
presenter.applyTopInsets(view, getTopInset());
}
@Override
public int getTopInset() {
int statusBarInset = resolveCurrentOptions(presenter.defaultOptions).statusBar.isHiddenOrDrawBehind() ? 0
: SystemUiUtils.getStatusBarHeight(getActivity());
final Integer perform = perform(getParentController(), 0, p -> p.getTopInset(this));
return statusBarInset + perform;
}
@Override
public void applyBottomInset() {
if (view != null)
presenter.applyBottomInset(view, getBottomInset());
}
@Override
protected WindowInsetsCompat onApplyWindowInsets(View view, WindowInsetsCompat insets) {
final Insets systemBarsInsets = insets.getInsets(WindowInsetsCompat.Type.systemBars());
int systemWindowInsetTop = insets.getInsets(WindowInsetsCompat.Type.statusBars()).top +
insets.getInsets(WindowInsetsCompat.Type.navigationBars()).top -
systemBarsInsets.top;
int systemWindowInsetBottom = insets.getInsets(WindowInsetsCompat.Type.ime()).bottom +
insets.getInsets(WindowInsetsCompat.Type.navigationBars()).bottom -
systemBarsInsets.bottom;
WindowInsetsCompat finalInsets = new WindowInsetsCompat.Builder()
.setInsets(WindowInsetsCompat.Type.systemBars() | WindowInsetsCompat.Type.ime(),
Insets.of(systemBarsInsets.left,
systemWindowInsetTop,
systemBarsInsets.right,
Math.max(systemWindowInsetBottom - getBottomInset(), 0)))
.build();
ViewCompat.onApplyWindowInsets(view, finalInsets);
return insets;
}
@Override
public void destroy() {
final boolean blurOnUnmount = options != null && options.modal.blurOnUnmount.isTrue();
if (blurOnUnmount) {
blurActivityFocus();
}
super.destroy();
}
private void blurActivityFocus() {
final Activity activity = getActivity();
final View focusView = activity != null ? activity.getCurrentFocus() : null;
if (focusView != null) {
focusView.clearFocus();
}
}
@Override
public void onConfigurationChanged(Configuration newConfig) {
super.onConfigurationChanged(newConfig);
presenter.onConfigurationChanged(view, options);
}
}