yeet
This commit is contained in:
56
node_modules/react-native-web/dist/exports/InteractionManager/index.js
generated
vendored
Normal file
56
node_modules/react-native-web/dist/exports/InteractionManager/index.js
generated
vendored
Normal file
@ -0,0 +1,56 @@
|
||||
/**
|
||||
* Copyright (c) Nicolas Gallagher.
|
||||
* 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.
|
||||
*
|
||||
*
|
||||
*/
|
||||
import invariant from 'fbjs/lib/invariant';
|
||||
import requestIdleCallback, { cancelIdleCallback } from '../../modules/requestIdleCallback';
|
||||
var InteractionManager = {
|
||||
Events: {
|
||||
interactionStart: 'interactionStart',
|
||||
interactionComplete: 'interactionComplete'
|
||||
},
|
||||
|
||||
/**
|
||||
* Schedule a function to run after all interactions have completed.
|
||||
*/
|
||||
runAfterInteractions: function runAfterInteractions(task) {
|
||||
var handle;
|
||||
var promise = new Promise(function (resolve) {
|
||||
handle = requestIdleCallback(function () {
|
||||
if (task) {
|
||||
resolve(task());
|
||||
} else {
|
||||
resolve();
|
||||
}
|
||||
});
|
||||
});
|
||||
return {
|
||||
then: promise.then.bind(promise),
|
||||
done: promise.then.bind(promise),
|
||||
cancel: function cancel() {
|
||||
cancelIdleCallback(handle);
|
||||
}
|
||||
};
|
||||
},
|
||||
|
||||
/**
|
||||
* Notify manager that an interaction has started.
|
||||
*/
|
||||
createInteractionHandle: function createInteractionHandle() {
|
||||
return 1;
|
||||
},
|
||||
|
||||
/**
|
||||
* Notify manager that an interaction has completed.
|
||||
*/
|
||||
clearInteractionHandle: function clearInteractionHandle(handle) {
|
||||
invariant(!!handle, 'Must provide a handle to clear.');
|
||||
},
|
||||
addListener: function addListener() {}
|
||||
};
|
||||
export default InteractionManager;
|
Reference in New Issue
Block a user