Last active
March 20, 2024 19:51
-
-
Save ericksli/58c3b0082ba933dde6e908c2d3822408 to your computer and use it in GitHub Desktop.
React Native Kotlin extension functions for creating WritableMap and WritableArray #android #react-native #kotlin
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import com.facebook.react.bridge.Arguments | |
import com.facebook.react.bridge.WritableArray | |
import com.facebook.react.bridge.WritableMap | |
fun writableMapOf(vararg values: Pair<String, *>): WritableMap { | |
val map = Arguments.createMap() | |
for ((key, value) in values) { | |
when (value) { | |
null -> map.putNull(key) | |
is Boolean -> map.putBoolean(key, value) | |
is Double -> map.putDouble(key, value) | |
is Int -> map.putInt(key, value) | |
is String -> map.putString(key, value) | |
is WritableMap -> map.putMap(key, value) | |
is WritableArray -> map.putArray(key, value) | |
else -> throw IllegalArgumentException("Unsupported value type ${value::class.java.name} for key [$key]") | |
} | |
} | |
return map | |
} | |
fun writableArrayOf(vararg values: Any?): WritableArray { | |
val array = Arguments.createArray() | |
for (value in values) { | |
when (value) { | |
null -> array.pushNull() | |
is Boolean -> array.pushBoolean(value) | |
is Double -> array.pushDouble(value) | |
is Int -> array.pushInt(value) | |
is String -> array.pushString(value) | |
is WritableArray -> array.pushArray(value) | |
is WritableMap -> array.pushMap(value) | |
else -> throw IllegalArgumentException("Unsupported type ${value::class.java.name}") | |
} | |
} | |
return array | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
This is helpful! Thanks!