/
githubmr
/
facebook-react
Обзор
Документация
Войти
/
githubmr
/
facebook-react
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
v16.9.0
packages/shared/enqueueTask.js
45 строк
2 KB
Dan Abramov
Prevent bundling of Node polyfills when importing TestUtils/TestRenderer (#15305)
03 апр 2019, 18:12
Не верифицирован
03 апр 2019, 18:12
e5c5935
Код
Авторство
О чём код?
/** * 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 */ import warningWithoutStack from './warningWithoutStack'; let didWarnAboutMessageChannel = false; let enqueueTask; try { // read require off the module object to get around the bundlers. // we don't want them to detect a require and bundle a Node polyfill. let requireString = ('require' + Math.random()).slice(0, 7); let nodeRequire = module && module[requireString]; // assuming we're in node, let's try to get node's // version of setImmediate, bypassing fake timers if any. enqueueTask = nodeRequire('timers').setImmediate; } catch (_err) { // we're in a browser // we can't use regular timers because they may still be faked // so we try MessageChannel+postMessage instead enqueueTask = function(callback: () => void) { if (__DEV__) { if (didWarnAboutMessageChannel === false) { didWarnAboutMessageChannel = true; warningWithoutStack( typeof MessageChannel !== 'undefined', 'This browser does not have a MessageChannel implementation, ' + 'so enqueuing tasks via await act(async () => ...) will fail. ' + 'Please file an issue at https://github.com/facebook/react/issues ' + 'if you encounter this warning.', ); } } const channel = new MessageChannel(); channel.port1.onmessage = callback; channel.port2.postMessage(undefined); }; } export default enqueueTask;