Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

React native Picker multilingual issue #22435

Closed
indrsidhu opened this issue Nov 27, 2018 · 3 comments
Closed

React native Picker multilingual issue #22435

indrsidhu opened this issue Nov 27, 2018 · 3 comments
Labels
Ran Commands One of our bots successfully processed a command. Resolution: Locked This issue was locked by the bot.

Comments

@indrsidhu
Copy link

Environment

Environment:
OS: Windows 10
Node: 8.11.3
Yarn: Not Found
npm: 5.6.0
Watchman: Not Found
Xcode: N/A
Android Studio: Version 3.1.0.0 AI-173.4907809

Packages: (wanted => installed)
react: 16.3.1 => 16.3.1
react-native: ^0.55.4 => 0.55.4

Description

I have react picker drop down, its data source is constant object which is multlangual.
mean its labels property change if language changes on fly, but its index (value) wich is record it it remain same.

But i found react native picker loose its last state when we switch language,
it drop previously selected value and start again from default value if i change language from English to esponial.

It should not happen, because if Index is same,picker should not care about changing labels from english to spanish, i loose pickers value if switch language in middle of form.

Reproducible Demo

This is my dropdown data source which switch label if locale changed
var COUNTRY_RENDER = []; this.state.countryDropdown.map(function (item, index) { COUNTRY_RENDER.push({ label: (locale == "en") ? item.name : item.name_es, value: item.id }); });

@react-native-bot
Copy link
Collaborator

It looks like you are using an older version of React Native. Please update to the latest release, v0.57 and verify if the issue still exists.

The "⏪Old Version" label will be removed automatically once you edit your original post with the results of running react-native info on a project using the latest release.

@bartolkaruza
Copy link

Hi @indrsidhu, could you try to make a snack with your component? I'm not able to see from your snippet what could be going wrong here.

@react-native-bot
Copy link
Collaborator

I am closing this issue because it does not appear to have been verified on the latest release, and there has been no followup in a while.

If you found this thread after encountering the same issue in the latest release, please feel free to create a new issue with up-to-date information by clicking here.

@react-native-bot react-native-bot added the Ran Commands One of our bots successfully processed a command. label Dec 13, 2018
@facebook facebook locked as resolved and limited conversation to collaborators Dec 13, 2019
@react-native-bot react-native-bot added the Resolution: Locked This issue was locked by the bot. label Dec 13, 2019
Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Labels
Ran Commands One of our bots successfully processed a command. Resolution: Locked This issue was locked by the bot.
Projects
None yet
Development

No branches or pull requests

3 participants