-
Notifications
You must be signed in to change notification settings - Fork 77
Expand file tree
/
Copy pathRiveReactNativeViewManager.kt
More file actions
236 lines (200 loc) · 6.71 KB
/
RiveReactNativeViewManager.kt
File metadata and controls
236 lines (200 loc) · 6.71 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
package com.rivereactnative
import com.facebook.react.bridge.ReadableArray
import com.facebook.react.bridge.ReadableMap
import com.facebook.react.common.MapBuilder
import com.facebook.react.uimanager.SimpleViewManager
import com.facebook.react.uimanager.ThemedReactContext
import com.facebook.react.uimanager.annotations.ReactProp
class RiveReactNativeViewManager : SimpleViewManager<RiveReactNativeView>() {
override fun getExportedCustomDirectEventTypeConstants(): MutableMap<String, Map<String, String>>? {
val builder: MapBuilder.Builder<String, Map<String, String>> =
MapBuilder.builder<String, Map<String, String>>()
for (event in RiveReactNativeView.Events.values()) {
builder.put(event.toString(), MapBuilder.of("registrationName", event.toString()))
}
return builder.build()
}
override fun getName() = "RiveReactNativeView"
override fun receiveCommand(view: RiveReactNativeView, commandId: String, args: ReadableArray?) {
when (commandId) {
// Playback Controls
"play" -> {
args?.let {
val animationName = it.getString(0) ?: ""
val loopMode = it.getString(1) ?:""
val direction = it.getString(2) ?:""
val isStateMachine = it.getBoolean(3)
view.run {
val rnLoopMode = RNLoopMode.mapToRNLoopMode(loopMode)
val rnDirection = RNDirection.mapToRNDirection(direction)
play(animationName, rnLoopMode, rnDirection, isStateMachine)
}
}
}
"pause" -> view.pause()
"stop" -> view.stop()
"reset" -> view.reset()
// StateMachine inputs
"fireState" -> {
args?.let {
val stateMachineName = it.getString(0) ?:""
val inputName = it.getString(1) ?:""
view.run {
fireState(stateMachineName, inputName)
}
}
}
"setBooleanState" -> {
args?.let {
val stateMachineName = it.getString(0) ?:""
val inputName = it.getString(1) ?:""
val value = it.getBoolean(2)
view.run {
setBooleanState(stateMachineName, inputName, value)
}
}
}
"setNumberState" -> {
args?.let {
val stateMachineName = it.getString(0) ?:""
val inputName = it.getString(1) ?:""
val value = it.getDouble(2)
view.run {
setNumberState(stateMachineName, inputName, value.toFloat())
}
}
}
"fireStateAtPath" -> {
args?.let {
val inputName = it.getString(0) ?:""
val path = it.getString(1) ?: ""
view.run {
fireStateAtPath(inputName, path)
}
}
}
"setBooleanStateAtPath" -> {
args?.let {
val inputName = it.getString(0) ?:""
val value = it.getBoolean(1)
val path = it.getString(2) ?:""
view.run {
setBooleanStateAtPath(inputName, value, path)
}
}
}
"setNumberStateAtPath" -> {
args?.let {
val inputName = it.getString(0) ?:""
val value = it.getDouble(1)
val path = it.getString(2) ?:""
view.run {
setNumberStateAtPath(inputName, value.toFloat(), path)
}
}
}
// Touch Events
"touchBegan" -> {
args?.let {
val x: Double = it.getDouble(0)
val y: Double = it.getDouble(1)
view.run {
this.touchBegan(x.toFloat(), y.toFloat())
}
}
}
"touchEnded" -> {
args?.let {
val x: Double = it.getDouble(0)
val y: Double = it.getDouble(1)
view.run {
this.touchEnded(x.toFloat(), y.toFloat())
}
}
}
// Text Run
"setTextRunValue" -> {
args?.let {
val textRunName: String = it.getString(0) ?:""
val textValue: String = it.getString(1) ?:""
view.run {
this.setTextRunValue(textRunName, textValue)
}
}
}
"setTextRunValueAtPath" -> {
args?.let {
val textRunName: String = it.getString(0) ?:""
val textValue: String = it.getString(1) ?:""
val path: String = it.getString(2) ?:""
view.run {
this.setTextRunValueAtPath(textRunName, textValue, path)
}
}
}
// Other
else -> {}
}
}
override fun createViewInstance(reactContext: ThemedReactContext): RiveReactNativeView {
return RiveReactNativeView(reactContext)
}
override fun onDropViewInstance(view: RiveReactNativeView) {
view.dispose();
super.onDropViewInstance(view)
}
override fun onAfterUpdateTransaction(view: RiveReactNativeView) {
super.onAfterUpdateTransaction(view)
view.update()
}
@ReactProp(name = "resourceName")
fun setResourceName(view: RiveReactNativeView, resourceName: String?) {
view.setResourceName(resourceName)
}
@ReactProp(name = "fit")
fun setFit(view: RiveReactNativeView, fit: String) {
view.setFit(RNFit.mapToRNFit(fit))
}
@ReactProp(name = "layoutScaleFactor")
fun setLayoutScaleFactor(view: RiveReactNativeView, layoutScaleFactor: Double) {
if (!layoutScaleFactor.isNaN() && layoutScaleFactor > 0) {
// Only set layoutScaleFactor if it's a valid positive float
view.setLayoutScaleFactor(layoutScaleFactor.toFloat())
} else {
// Handle other cases, e.g., NaN, -1, or other non-float-like values
view.setLayoutScaleFactor(null)
}
}
@ReactProp(name = "alignment")
fun setAlignment(view: RiveReactNativeView, alignment: String) {
view.setAlignment(RNAlignment.mapToRNAlignment(alignment))
}
@ReactProp(name = "url")
fun setUrl(view: RiveReactNativeView, url: String?) {
view.setUrl(url)
}
@ReactProp(name = "autoplay")
fun setAutoplay(view: RiveReactNativeView, autoplay: Boolean) {
view.setAutoplay(autoplay)
}
@ReactProp(name = "artboardName")
fun setArtboardName(view: RiveReactNativeView, artboardName: String) {
view.setArtboardName(artboardName);
}
@ReactProp(name = "animationName")
fun setAnimationName(view: RiveReactNativeView, animationName: String) {
view.setAnimationName(animationName)
}
@ReactProp(name = "referencedAssets")
fun setReferencedAssets(view: RiveReactNativeView, source: ReadableMap?) {
view.setReferencedAssets(source)
}
@ReactProp(name = "stateMachineName")
fun setStateMachineName(view: RiveReactNativeView, stateMachineName: String) {
view.setStateMachineName(stateMachineName)
}
@ReactProp(name = "isUserHandlingErrors")
fun setIsUserHandlingErrors(view: RiveReactNativeView, isUserHandlingErrors: Boolean) {
view.setIsUserHandlingErrors(isUserHandlingErrors)
}
}