-
-
Save luyx2412/d6a6fb3681933908fe8c0e81d8ea82e2 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