-
Notifications
You must be signed in to change notification settings - Fork 2.6k
Expand file tree
/
Copy pathReactView.java
More file actions
146 lines (121 loc) · 4.63 KB
/
ReactView.java
File metadata and controls
146 lines (121 loc) · 4.63 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
package com.reactnativenavigation.react;
import static com.reactnativenavigation.utils.CoordinatorLayoutUtils.matchParentLP;
import android.annotation.SuppressLint;
import android.content.Context;
import android.os.Bundle;
import android.view.MotionEvent;
import android.view.View;
import android.view.ViewGroup;
import android.widget.FrameLayout;
import androidx.annotation.RestrictTo;
import com.facebook.react.ReactApplication;
import com.facebook.react.ReactHost;
import com.facebook.react.bridge.ReactContext;
import com.facebook.react.interfaces.fabric.ReactSurface;
import com.facebook.react.uimanager.UIManagerHelper;
import com.facebook.react.uimanager.common.UIManagerType;
import com.facebook.react.uimanager.events.EventDispatcher;
import com.reactnativenavigation.react.events.ComponentType;
import com.reactnativenavigation.react.events.EventEmitter;
import com.reactnativenavigation.viewcontrollers.viewcontroller.IReactView;
import com.reactnativenavigation.viewcontrollers.viewcontroller.ScrollEventListener;
import com.reactnativenavigation.views.component.Renderable;
@SuppressLint("ViewConstructor")
public class ReactView extends FrameLayout implements IReactView, Renderable {
private final String componentId;
private final String componentName;
private boolean isAttachedToReactInstance = false;
private final ReactSurface reactSurface;
public ReactView(final Context context, String componentId, String componentName) {
super(context);
this.componentId = componentId;
this.componentName = componentName;
final Bundle opts = new Bundle();
opts.putString("componentId", componentId);
reactSurface = getReactHost().createSurface(context, componentName, opts);
addView(reactSurface.getView(), matchParentLP());
}
@Override
protected void onAttachedToWindow() {
super.onAttachedToWindow();
start();
}
public void start() {
if (isAttachedToReactInstance) return;
isAttachedToReactInstance = true;
reactSurface.start();
}
@Override
public boolean isReady() {
return isAttachedToReactInstance;
}
@Override
public ReactView asView() {
return this;
}
@Override
public void destroy() {
reactSurface.stop();
}
public void sendComponentWillStart(ComponentType type) {
this.post(() -> {
ReactContext currentReactContext = getReactContext();
if (currentReactContext != null)
new EventEmitter(currentReactContext).emitComponentWillAppear(componentId, componentName, type);
});
}
public void sendComponentStart(ComponentType type) {
this.post(() -> {
ReactContext currentReactContext = getReactContext();
if (currentReactContext != null) {
new EventEmitter(currentReactContext).emitComponentDidAppear(componentId, componentName, type);
}
});
}
public void sendComponentStop(ComponentType type) {
ReactContext currentReactContext = getReactContext();
if (currentReactContext != null) {
new EventEmitter(currentReactContext).emitComponentDidDisappear(componentId, componentName, type);
}
}
@Override
public void sendOnNavigationButtonPressed(String buttonId) {
ReactContext currentReactContext = getReactContext();
if (currentReactContext != null) {
new EventEmitter(currentReactContext).emitOnNavigationButtonPressed(componentId, buttonId);
}
}
@Override
public ScrollEventListener getScrollEventListener() {
return new ScrollEventListener(getEventDispatcher());
}
@Override
public void dispatchTouchEventToJs(MotionEvent event) {
View view = reactSurface.getView();
if (view != null) {
view.onTouchEvent(event);
}
}
@Override
public boolean isRendered() {
ViewGroup view = reactSurface.getView();
if (view != null) {
return view.getChildCount() >= 1;
}
return false;
}
public EventDispatcher getEventDispatcher() {
ReactContext reactContext = getReactContext();
return reactContext == null ? null : UIManagerHelper.getEventDispatcher(reactContext, UIManagerType.FABRIC);
}
@RestrictTo(RestrictTo.Scope.TESTS)
public String getComponentName() {
return componentName;
}
private ReactHost getReactHost() {
return ((ReactApplication) getContext().getApplicationContext()).getReactHost();
}
private ReactContext getReactContext() {
return getReactHost().getCurrentReactContext();
}
}