Status Update
Comments
il...@google.com <il...@google.com> #2
Respectfully in regards to marking this duplicate. It is not quite a duplicate. That referenced ticket is part of SafeArgs, while this request is for typesafe navigation. It was marked as "infeasible", yet w'ere talking about two completely different bases.
In the last
This requires support for doubles in NavInflater whose values are all backed by the TypedValue class, which unfortunately does not support Double values so we cannot go forward with this.
When in fact this is trivial to implement in compose typesafe navigation and seems to be a major omission:
object DoubleNavType : NavType<Double>(isNullableAllowed = false) {
@Suppress("DEPRECATION")
override fun get(bundle: Bundle, key: String): Double = bundle[key] as Double
override fun parseValue(value: String): Double {
// At runtime the d suffix is optional, contrary to the Safe Args plugin.
// This is in order to be able to parse double numbers passed as deep link URL
// parameters
var localValue = value
if (value.endsWith("d")) {
localValue = localValue.substring(0, value.length - 1)
}
return localValue.toDouble()
}
override fun put(bundle: Bundle, key: String, value: Double) {
bundle.putDouble(key, value)
}
}
/**
* Convience class to allow for double navigation types by turning them into strings and back.
*/
object NullableDoubleNavType : NavType<Double?>(isNullableAllowed = true) {
@Suppress("DEPRECATION")
override fun get(bundle: Bundle, key: String): Double? = bundle[key] as? Double?
override fun parseValue(value: String): Double? {
if (value == "null") return null
return DoubleNavType.parseValue(value)
}
override fun put(bundle: Bundle, key: String, value: Double?) {
if (value == null) {
bundle.putSerializable(key, null)
} else {
DoubleNavType.put(bundle, key, value)
}
}
}
// in a route
typeOf<Double>() to DoubleNavType,
typeOf<Double?>() to NullableDoubleNavType,
ku...@gmail.com <ku...@gmail.com> #3
Similar to the work done in @Serializable
can support, I think we can do something similar here to support doubles.
ku...@gmail.com <ku...@gmail.com> #4
jb...@google.com <jb...@google.com> #5
Branch: androidx-main
commit b9a16ee818ee85ae088bcf8787014eb801b10204
Author: Clara Fok <clarafok@google.com>
Date: Fri Aug 30 15:32:12 2024
Add built-in safe args support for non-nullable Double
Test: ./gradlew navigation:navigation-common:cC
Test: ./gradlew navigation:navigation-common:test
Test: ./gradlew navigation:navigation-runtime:cC
Bug: 359245753
Relnote: "Navigation in safe args now has built-in support for non-nullable Double type."
Change-Id: I570ebef5242e1bc3e8ee3f5d58b4aa2d677abaee
M navigation/navigation-common/src/androidTest/java/androidx/navigation/serialization/RouteDecoderTest.kt
M navigation/navigation-common/src/androidTest/java/androidx/navigation/serialization/RouteFilledTest.kt
M navigation/navigation-common/src/main/java/androidx/navigation/serialization/NavTypeConverter.kt
M navigation/navigation-common/src/test/java/androidx/navigation/serialization/NavArgumentGeneratorTest.kt
M navigation/navigation-common/src/test/java/androidx/navigation/serialization/NavTypeConverterTest.kt
M navigation/navigation-runtime/src/androidTest/java/androidx/navigation/NavControllerRouteTest.kt
Description
Component used: Navigation Version used: 2.3.1
When i use in navigation graph float attribute with default value like this:
I get this error: org.xmlpull.v1.XmlPullParserException: Type is float but found integer: 0
When i try add 'F' char like this:
I get another error, because generated NavDirections already added the 'F' char and generated code contains: