-
Notifications
You must be signed in to change notification settings - Fork 24.5k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Summary: Fix this crash by making sure the RCTDeviceInfo is doing things on the main thread. This fixes #14043. Reviewed By: ashwinb Differential Revision: D5286746 fbshipit-source-id: cce3426a6e7e7221cff82f8bca663d9a060dd358
- Loading branch information
1 parent
b1e64a4
commit 112e376
Showing
4 changed files
with
71 additions
and
6 deletions.
There are no files selected for viewing
This file contains 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,52 @@ | ||
/** | ||
* Copyright (c) 2015-present, Facebook, Inc. | ||
* All rights reserved. | ||
* | ||
* This source code is licensed under the BSD-style license found in the | ||
* LICENSE file in the root directory of this source tree. An additional grant | ||
* of patent rights can be found in the PATENTS file in the same directory. | ||
* | ||
* @flow | ||
* @providesModule AccessibilityManagerTest | ||
*/ | ||
'use strict'; | ||
|
||
const React = require('react'); | ||
const ReactNative = require('react-native'); | ||
const { View } = ReactNative; | ||
const RCTDeviceEventEmitter = require('RCTDeviceEventEmitter'); | ||
const { | ||
TestModule, | ||
AccessibilityManager, | ||
} = ReactNative.NativeModules; | ||
|
||
|
||
class AccessibilityManagerTest extends React.Component { | ||
componentDidMount() { | ||
AccessibilityManager.setAccessibilityContentSizeMultipliers({ | ||
'extraSmall': 1.0, | ||
'small': 2.0, | ||
'medium': 3.0, | ||
'large': 4.0, | ||
'extraLarge': 5.0, | ||
'extraExtraLarge': 6.0, | ||
'extraExtraExtraLarge': 7.0, | ||
'accessibilityMedium': 8.0, | ||
'accessibilityLarge': 9.0, | ||
'accessibilityExtraLarge': 10.0, | ||
'accessibilityExtraExtraLarge': 11.0, | ||
'accessibilityExtraExtraExtraLarge': 12.0, | ||
}); | ||
RCTDeviceEventEmitter.addListener('didUpdateDimensions', update => { | ||
TestModule.markTestPassed(update.window.fontScale === 4.0); | ||
}); | ||
} | ||
|
||
render(): React.Element<any> { | ||
return <View />; | ||
} | ||
} | ||
|
||
AccessibilityManagerTest.displayName = 'AccessibilityManagerTest'; | ||
|
||
module.exports = AccessibilityManagerTest; |
This file contains 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 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 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