-
Notifications
You must be signed in to change notification settings - Fork 1.2k
Auto-detect RTL locale and apply to root view #4732
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
Merged
Merged
Changes from all commits
Commits
Show all changes
3 commits
Select commit
Hold shift + click to select a range
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
8 changes: 8 additions & 0 deletions
8
change/react-native-windows-2020-04-27-16-11-30-allowRTL.json
This file contains hidden or 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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,8 @@ | ||
| { | ||
| "type": "prerelease", | ||
| "comment": "auto-detect RTL and push into root view", | ||
| "packageName": "react-native-windows", | ||
| "email": "kmelmon@microsoft.com", | ||
| "dependentChangeType": "patch", | ||
| "date": "2020-04-27T23:11:30.614Z" | ||
| } |
This file contains hidden or 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
This file contains hidden or 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
This file contains hidden or 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
This file contains hidden or 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
This file contains hidden or 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
This file contains hidden or 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
This file contains hidden or 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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -10,19 +10,42 @@ | |
| namespace react { | ||
| namespace uwp { | ||
|
|
||
| class I18nHelper; | ||
|
|
||
| class I18nModule final : public react::windows::II18nModule { | ||
| public: | ||
| using I18nInfo = std::pair<std::string, bool>; | ||
| static I18nInfo GetI18nInfo(); // Must be called from a UI thread | ||
|
|
||
| // II18nModule | ||
| I18nModule(I18nInfo &&i18nInfo); | ||
| I18nModule(); | ||
|
|
||
| std::string getLocaleIdentifier() override; | ||
| bool getIsRTL() override; | ||
| std::string getLocaleIdentifier() const override; | ||
| bool getIsRTL() const override; | ||
| void setAllowRTL(bool allowRTL) override; | ||
| void setForceRTL(bool forceRTL) override; | ||
|
|
||
| private: | ||
| I18nInfo m_i18nInfo; | ||
| I18nHelper &m_helper; | ||
| }; | ||
|
|
||
| class I18nHelper { | ||
| public: | ||
| static I18nHelper &Instance(); | ||
|
Member
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
Please consider to add noexcept to methods and constructors to keep binary code smaller. |
||
|
|
||
| I18nHelper(); | ||
|
|
||
| void setInfo(I18nModule::I18nInfo &&i18nInfo); | ||
| std::string getLocaleIdentifier() const; | ||
| bool getIsRTL() const; | ||
| void setAllowRTL(bool allowRTL); | ||
| void setForceRTL(bool forceRTL); | ||
|
|
||
| private: | ||
| I18nModule::I18nInfo m_i18nInfo; | ||
| bool m_allowRTL{true}; | ||
| bool m_forceRTL{false}; | ||
| }; | ||
|
|
||
| } // namespace uwp | ||
| } // namespace react | ||
This file contains hidden or 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
This file contains hidden or 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
This file contains hidden or 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
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Are we okay with this as a global setting instead of per instance? Wondering why we moved to a singleton. #Resolved
Uh oh!
There was an error while loading. Please reload this page.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The singleton is there for simplicity and is modeled after how it was done on android. NativeUIManager now depends on functionality inside I18nManager. With the singleton helper we don't need to share the entire I18nModule with the UIManagerModule, which would lead to awkward lifetime issues (the modules are created lazily).
From a high level as to if it's OK to use a singleton, I think so. The information being queried from the OS is per application instance anyway, and it seems not useful for different instances to set allowRTL/forceRTL differently for different instances so simpler seems better to me.