Resolved: Select types conditionally

In this post, we will see how to resolve Select types conditionally

Question:

I have a monorepo with two apps: client and merchant. They share a common stack navigator – authentication, which is nested inside the root navigator. To set screen props for the authentication navigator, I need to use the root navigator, which is specific for each app. Also, to avoid duplicates, the authentication navigator, types, and screens are in a package. In one of the screens I have export const RequestEmailLinkScreen = ({ route, navigation }: Props) => { But the question here is how to load the correct Props (clent vs merchant) based on the app used? I do have const appSlug = Constants.expoConfig?.slug; So I was thinking to do something like this:
But this is not right. How do I do that and can you think of a better way?

Best Answer:

If I understood you correctly, you are trying to get a compile time value (the type) with a runtime value (the slug).
I’m afraid this is not possible with your current code.
I suggest you accept both Props and resolve the app during runtime. For example:
This, of course, means that you won’t have typing assistance as, as I stated, you can’t use a runtime value during compile time.
No matter what I think, it always depends on you doing a final runtime check to choose a path or another… If you really want to be able to run code as either one or another, you can always split the function in two and place a little code differentiating them both at the beginning. Take a look at this playground to see what I mean.

If you have better answer, please add a comment about this, thank you!

Source: Stackoverflow.com