mirror of
https://github.com/facebook/react-native.git
synced 2025-11-01 09:14:26 +00:00
Summary: Before we flow-typed NativeI18nManager, we defaulted the implementation of I18nManager to something safe when it wasn't available. After the flow-type, it became a requirement that NativeI18nManager be present in the app. This is leading to crashes: T45287329. This diff re-enables the defaults for I18nManager. Reviewed By: fkgozali Differential Revision: D15617660 fbshipit-source-id: c3a1c737663a1a4ceae484d0ad6cbf2bd86ffe5f
53 lines
1.0 KiB
JavaScript
53 lines
1.0 KiB
JavaScript
/**
|
|
* Copyright (c) Facebook, Inc. and its affiliates.
|
|
*
|
|
* This source code is licensed under the MIT license found in the
|
|
* LICENSE file in the root directory of this source tree.
|
|
*
|
|
* @flow strict-local
|
|
* @format
|
|
*/
|
|
'use strict';
|
|
|
|
import NativeI18nManager from './NativeI18nManager';
|
|
|
|
const i18nConstants = NativeI18nManager
|
|
? NativeI18nManager.getConstants()
|
|
: {
|
|
isRTL: false,
|
|
doLeftAndRightSwapInRTL: true,
|
|
};
|
|
|
|
module.exports = {
|
|
getConstants: () => {
|
|
return i18nConstants;
|
|
},
|
|
|
|
allowRTL: (shouldAllow: boolean) => {
|
|
if (!NativeI18nManager) {
|
|
return;
|
|
}
|
|
|
|
NativeI18nManager.allowRTL(shouldAllow);
|
|
},
|
|
|
|
forceRTL: (shouldForce: boolean) => {
|
|
if (!NativeI18nManager) {
|
|
return;
|
|
}
|
|
|
|
NativeI18nManager.forceRTL(shouldForce);
|
|
},
|
|
|
|
swapLeftAndRightInRTL: (flipStyles: boolean) => {
|
|
if (!NativeI18nManager) {
|
|
return;
|
|
}
|
|
|
|
NativeI18nManager.swapLeftAndRightInRTL(flipStyles);
|
|
},
|
|
|
|
isRTL: i18nConstants.isRTL,
|
|
doLeftAndRightSwapInRTL: i18nConstants.doLeftAndRightSwapInRTL,
|
|
};
|