Skip to content

Commit 404f0dc

Browse files
dustinsoftwareDaniel15
authored andcommitted
Avoid crash if setTimeout/clearTimeout is referenced
In some cases, React (or other libraries) will assume that setTimeout and clearTimeout are defined on the global scope, without invoking it. We should still throw an error in case a consumer expects this to just work on the server (it won't), but we can avoid a crash by defining the function on the global scope. For context: #555
1 parent 33deebb commit 404f0dc

File tree

1 file changed

+17
-3
lines changed

1 file changed

+17
-3
lines changed

src/React.Core/Resources/shims.js

+17-3
Original file line numberDiff line numberDiff line change
@@ -3,12 +3,12 @@
33
* All rights reserved.
44
*
55
* This source code is licensed under the BSD-style license found in the
6-
* LICENSE file in the root directory of this source tree. An additional grant
6+
* LICENSE file in the root directory of this source tree. An additional grant
77
* of patent rights can be found in the PATENTS file in the same directory.
88
*/
99

1010
var global = global || {};
11-
var React, ReactDOM, ReactDOMServer;
11+
var React, ReactDOM, ReactDOMServer, setTimeout, clearTimeout;
1212

1313
// Basic console shim. Caches all calls to console methods.
1414
function MockConsole() {
@@ -68,6 +68,20 @@ function ReactNET_initReact() {
6868
return false;
6969
}
7070

71+
setTimeout = setTimeout || global.setTimeout;
72+
if (setTimeout === undefined) {
73+
setTimeout = function() {
74+
throw new Error('setTimeout is not supported in server-rendered Javascript.');
75+
}
76+
}
77+
78+
clearTimeout = clearTimeout || global.clearTimeout;
79+
if (clearTimeout === undefined) {
80+
clearTimeout = function() {
81+
throw new Error('clearTimeout is not supported in server-rendered Javascript.');
82+
}
83+
}
84+
7185
/**
7286
* Polyfill for engines that do not support Object.assign
7387
*/
@@ -94,4 +108,4 @@ if (typeof Object.assign !== 'function') {
94108
}
95109
return to;
96110
};
97-
}
111+
}

0 commit comments

Comments
 (0)