mirror of
https://github.com/facebook/react-native.git
synced 2025-11-01 09:14:26 +00:00
a903d1b86a
Summary: Following the comment https://github.com/DefinitelyTyped/DefinitelyTyped/pull/42618#discussion_r384584159 Modify the flowtype of BackHandler function to have more specific return type. ## Changelog [General] [Changed] - Changed type of BackHandler to be more specific. Pull Request resolved: https://github.com/facebook/react-native/pull/28192 Test Plan: No flow error in RNTester Reviewed By: TheSavior Differential Revision: D20771113 Pulled By: hramos fbshipit-source-id: 5ca65e2a2b3f8726b8fb4606473d8fad5b0ce730
51 lines
1.1 KiB
JavaScript
51 lines
1.1 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
|
|
*/
|
|
|
|
'use strict';
|
|
|
|
const _backPressSubscriptions = new Set();
|
|
|
|
const BackHandler = {
|
|
exitApp: jest.fn(),
|
|
|
|
addEventListener: function(
|
|
eventName: BackPressEventName,
|
|
handler: () => ?boolean,
|
|
): {remove: () => void} {
|
|
_backPressSubscriptions.add(handler);
|
|
return {
|
|
remove: () => BackHandler.removeEventListener(eventName, handler),
|
|
};
|
|
},
|
|
|
|
removeEventListener: function(
|
|
eventName: BackPressEventName,
|
|
handler: () => ?boolean,
|
|
): void {
|
|
_backPressSubscriptions.delete(handler);
|
|
},
|
|
|
|
mockPressBack: function() {
|
|
let invokeDefault = true;
|
|
const subscriptions = [..._backPressSubscriptions].reverse();
|
|
for (let i = 0; i < subscriptions.length; ++i) {
|
|
if (subscriptions[i]()) {
|
|
invokeDefault = false;
|
|
break;
|
|
}
|
|
}
|
|
|
|
if (invokeDefault) {
|
|
BackHandler.exitApp();
|
|
}
|
|
},
|
|
};
|
|
|
|
module.exports = BackHandler;
|