mirror of
https://github.com/zhigang1992/react-native.git
synced 2026-05-22 03:27:35 +08:00
Summary: As a follow-up to this other PR #23839, it adds support for other, iOS only, flags into `AccessibilityInfo`. It adds these other 4 methods: * `isBoldTextEnabled()` * `isGrayscaleEnabled()` * `isInvertColorsEnabled()` * `isReduceTransparencyEnabled()` P.S: Android implementation for those methods just return `false` (with `Promise.resolve(false)`) And the corresponding event listeners: * `boldTextChanged` * `grayscaleChanged`, * `invertColorsChanged`, * `reduceTransparencyChanged` Pull Request resolved: https://github.com/facebook/react-native/pull/23913 Differential Revision: D14482214 Pulled By: cpojer fbshipit-source-id: b97725fd12706957d4dad880a97e6b0993738272
141 lines
3.3 KiB
JavaScript
141 lines
3.3 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.
|
|
*
|
|
* @format
|
|
* @flow
|
|
*/
|
|
|
|
'use strict';
|
|
|
|
const NativeModules = require('NativeModules');
|
|
const RCTDeviceEventEmitter = require('RCTDeviceEventEmitter');
|
|
const UIManager = require('UIManager');
|
|
|
|
const RCTAccessibilityInfo = NativeModules.AccessibilityInfo;
|
|
|
|
const REDUCE_MOTION_EVENT = 'reduceMotionDidChange';
|
|
const TOUCH_EXPLORATION_EVENT = 'touchExplorationDidChange';
|
|
|
|
type ChangeEventName = $Enum<{
|
|
change: string,
|
|
reduceMotionChanged: string,
|
|
screenReaderChanged: string,
|
|
}>;
|
|
|
|
const _subscriptions = new Map();
|
|
|
|
/**
|
|
* Sometimes it's useful to know whether or not the device has a screen reader
|
|
* that is currently active. The `AccessibilityInfo` API is designed for this
|
|
* purpose. You can use it to query the current state of the screen reader as
|
|
* well as to register to be notified when the state of the screen reader
|
|
* changes.
|
|
*
|
|
* See http://facebook.github.io/react-native/docs/accessibilityinfo.html
|
|
*/
|
|
|
|
const AccessibilityInfo = {
|
|
/**
|
|
* iOS only
|
|
*/
|
|
isBoldTextEnabled: function(): Promise<boolean> {
|
|
return Promise.resolve(false);
|
|
},
|
|
|
|
/**
|
|
* iOS only
|
|
*/
|
|
isGrayscaleEnabled: function(): Promise<boolean> {
|
|
return Promise.resolve(false);
|
|
},
|
|
|
|
/**
|
|
* iOS only
|
|
*/
|
|
isInvertColorsEnabled: function(): Promise<boolean> {
|
|
return Promise.resolve(false);
|
|
},
|
|
|
|
isReduceMotionEnabled: function(): Promise<boolean> {
|
|
return new Promise((resolve, reject) => {
|
|
RCTAccessibilityInfo.isReduceMotionEnabled(resolve);
|
|
});
|
|
},
|
|
|
|
/**
|
|
* iOS only
|
|
*/
|
|
isReduceTransparencyEnabled: function(): Promise<boolean> {
|
|
return Promise.resolve(false);
|
|
},
|
|
|
|
isScreenReaderEnabled: function(): Promise<boolean> {
|
|
return new Promise((resolve, reject) => {
|
|
RCTAccessibilityInfo.isTouchExplorationEnabled(resolve);
|
|
});
|
|
},
|
|
|
|
/**
|
|
* Deprecated
|
|
*
|
|
* Same as `isScreenReaderEnabled`
|
|
*/
|
|
get fetch() {
|
|
return this.isScreenReaderEnabled;
|
|
},
|
|
|
|
addEventListener: function(
|
|
eventName: ChangeEventName,
|
|
handler: Function,
|
|
): void {
|
|
let listener;
|
|
|
|
if (eventName === 'change' || eventName === 'screenReaderChanged') {
|
|
listener = RCTDeviceEventEmitter.addListener(
|
|
TOUCH_EXPLORATION_EVENT,
|
|
enabled => {
|
|
handler(enabled);
|
|
},
|
|
);
|
|
} else if (eventName === 'reduceMotionChanged') {
|
|
listener = RCTDeviceEventEmitter.addListener(
|
|
REDUCE_MOTION_EVENT,
|
|
enabled => {
|
|
handler(enabled);
|
|
},
|
|
);
|
|
}
|
|
|
|
_subscriptions.set(handler, listener);
|
|
},
|
|
|
|
removeEventListener: function(
|
|
eventName: ChangeEventName,
|
|
handler: Function,
|
|
): void {
|
|
const listener = _subscriptions.get(handler);
|
|
if (!listener) {
|
|
return;
|
|
}
|
|
listener.remove();
|
|
_subscriptions.delete(handler);
|
|
},
|
|
|
|
/**
|
|
* Set accessibility focus to a react component.
|
|
*
|
|
* See http://facebook.github.io/react-native/docs/accessibilityinfo.html#setaccessibilityfocus
|
|
*/
|
|
setAccessibilityFocus: function(reactTag: number): void {
|
|
UIManager.sendAccessibilityEvent(
|
|
reactTag,
|
|
UIManager.AccessibilityEventTypes.typeViewFocused,
|
|
);
|
|
},
|
|
};
|
|
|
|
module.exports = AccessibilityInfo;
|