mirror of
https://github.com/facebook/react.git
synced 2025-11-01 09:12:30 +00:00
8c67bbf183
* [scheduler] Deadline object -> shouldYield Instead of using a requestIdleCallback-style deadline object, expose a method Scheduler.shouldYield that returns true if there's a higher priority event in the queue. * Nits
57 lines
1.7 KiB
JavaScript
57 lines
1.7 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.
|
|
*
|
|
* @flow
|
|
*/
|
|
|
|
const hasNativePerformanceNow =
|
|
typeof performance === 'object' && typeof performance.now === 'function';
|
|
|
|
const now = hasNativePerformanceNow
|
|
? () => performance.now()
|
|
: () => Date.now();
|
|
|
|
let scheduledCallback: (() => mixed) | null = null;
|
|
let frameDeadline: number = 0;
|
|
|
|
function setTimeoutCallback() {
|
|
// TODO (bvaughn) Hard-coded 5ms unblocks initial async testing.
|
|
// React API probably changing to boolean rather than time remaining.
|
|
// Longer-term plan is to rewrite this using shared memory,
|
|
// And just return the value of the bit as the boolean.
|
|
frameDeadline = now() + 5;
|
|
|
|
const callback = scheduledCallback;
|
|
scheduledCallback = null;
|
|
if (callback !== null) {
|
|
callback();
|
|
}
|
|
}
|
|
|
|
// RN has a poor polyfill for requestIdleCallback so we aren't using it.
|
|
// This implementation is only intended for short-term use anyway.
|
|
// We also don't implement cancel functionality b'c Fiber doesn't currently need it.
|
|
function scheduleDeferredCallback(
|
|
callback: () => mixed,
|
|
options?: {timeout: number},
|
|
): number {
|
|
// We assume only one callback is scheduled at a time b'c that's how Fiber works.
|
|
scheduledCallback = callback;
|
|
const timeoutId = setTimeout(setTimeoutCallback, 1);
|
|
return (timeoutId: any); // Timeouts are always numbers on RN
|
|
}
|
|
|
|
function cancelDeferredCallback(callbackID: number) {
|
|
scheduledCallback = null;
|
|
clearTimeout((callbackID: any)); // Timeouts are always numbers on RN
|
|
}
|
|
|
|
function shouldYield() {
|
|
return frameDeadline <= now();
|
|
}
|
|
|
|
export {now, scheduleDeferredCallback, cancelDeferredCallback, shouldYield};
|