2017-02-28 02:28:23 +00:00
|
|
|
/**
|
|
|
|
* 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.
|
|
|
|
*
|
|
|
|
* @providesModule AccessibilityInfo
|
|
|
|
* @flow
|
|
|
|
*/
|
|
|
|
'use strict';
|
|
|
|
|
|
|
|
var NativeModules = require('NativeModules');
|
|
|
|
var RCTDeviceEventEmitter = require('RCTDeviceEventEmitter');
|
|
|
|
|
|
|
|
var RCTAccessibilityInfo = NativeModules.AccessibilityInfo;
|
|
|
|
|
|
|
|
var TOUCH_EXPLORATION_EVENT = 'touchExplorationDidChange';
|
|
|
|
|
|
|
|
type ChangeEventName = $Enum<{
|
|
|
|
change: string,
|
|
|
|
}>;
|
|
|
|
|
|
|
|
var _subscriptions = new Map();
|
|
|
|
|
Migrate to new documentation format
Summary:
Now that the Component and API docs are no longer auto-generated, we need to consolidate on a new format for our jsdoc comments. Any help from the community will be appreciated.
In this initial pull request, we'll be tackling the following docs:
- `AccessibilityInfo`, an API doc.
- `ActivityIndicator`, a Component doc.
- `View`, a Component doc.
This top comment will serve as a style guide, and when in doubt, please refer to the individual commits in this PR.
Each commit should update a single component or API, along with any relevant markdown files.
- Documentation in the JavaScript source files should be succinct. Any verbosity should be moved over to the markdown docs in the website...
- ...by adding a link to the relevant method/prop on the website to every comment block.
- Avoid markdown style links in JavaScript source files, opt for plain old URIs.
Let code document itself:
- If a method is Flow typed, the comment block does not need to repeat this information.
- If a param can be one of several values, and the type definition is easily determined from the code, the values should not be repeated in the comment block. Again, move this to the markdown doc if not present already.
Closes https://github.com/facebook/react-native/pull/16790
Differential Revision: D6353840
Pulled By: hramos
fbshipit-source-id: 9712c459acc33092aae9909f3dd0b58a00b26afc
2017-11-17 00:44:29 +00:00
|
|
|
/**
|
|
|
|
* 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
|
|
|
|
*/
|
|
|
|
|
2017-02-28 02:28:23 +00:00
|
|
|
var AccessibilityInfo = {
|
|
|
|
|
|
|
|
fetch: function(): Promise {
|
|
|
|
return new Promise((resolve, reject) => {
|
|
|
|
RCTAccessibilityInfo.isTouchExplorationEnabled(
|
|
|
|
function(resp) {
|
|
|
|
resolve(resp);
|
|
|
|
}
|
|
|
|
);
|
|
|
|
});
|
|
|
|
},
|
|
|
|
|
|
|
|
addEventListener: function (
|
|
|
|
eventName: ChangeEventName,
|
|
|
|
handler: Function
|
|
|
|
): void {
|
|
|
|
var listener = RCTDeviceEventEmitter.addListener(
|
|
|
|
TOUCH_EXPLORATION_EVENT,
|
|
|
|
(enabled) => {
|
|
|
|
handler(enabled);
|
|
|
|
}
|
|
|
|
);
|
|
|
|
_subscriptions.set(handler, listener);
|
|
|
|
},
|
|
|
|
|
|
|
|
removeEventListener: function(
|
|
|
|
eventName: ChangeEventName,
|
|
|
|
handler: Function
|
|
|
|
): void {
|
|
|
|
var listener = _subscriptions.get(handler);
|
|
|
|
if (!listener) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
listener.remove();
|
|
|
|
_subscriptions.delete(handler);
|
|
|
|
},
|
|
|
|
|
|
|
|
};
|
|
|
|
|
|
|
|
module.exports = AccessibilityInfo;
|