You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
BREAKING CHANGE: Drop support for React 17 and earlier. We'll use the new [`createRoot` API](reactwg/react-18#5) by default which comes with a set of [changes while also enabling support for concurrent features](reactwg/react-18#4).
To can opt-out of this change by using `render(ui, { legacyRoot: true } )`. But be aware that the legacy root API is deprecated in React 18 and its usage will trigger console warnings.
Co-authored-by: Philipp Fritsche <ph.fritsche@gmail.com>
"Warning: ReactDOM.render is no longer supported in React 18. Use createRoot instead. Until you switch to the new API, your app will behave as if it's running React 17. Learn more: https://reactjs.org/link/switch-to-createroot",
"Warning: ReactDOM.hydrate is no longer supported in React 18. Use hydrateRoot instead. Until you switch to the new API, your app will behave as if it's running React 17. Learn more: https://reactjs.org/link/switch-to-createroot",
// The return value of `act` is always a thenable.
36
+
letcallbackNeedsToBeAwaited=false
37
+
constactResult=actImplementation(()=>{
38
+
constresult=callback()
39
+
if(
40
+
result!==null&&
41
+
typeofresult==='object'&&
42
+
typeofresult.then==='function'
43
+
){
44
+
callbackNeedsToBeAwaited=true
50
45
}
51
-
letcbReturn,result
52
-
try{
53
-
result=reactAct(()=>{
54
-
cbReturn=cb()
55
-
returncbReturn
56
-
})
57
-
}catch(err){
58
-
console.error=originalConsoleError
59
-
reject(err)
60
-
return
61
-
}
62
-
63
-
result.then(
64
-
()=>{
65
-
console.error=originalConsoleError
66
-
// if it got here, it means async act is supported
67
-
isAsyncActSupported=true
68
-
resolve()
69
-
},
70
-
err=>{
71
-
console.error=originalConsoleError
72
-
isAsyncActSupported=true
73
-
reject(err)
74
-
},
75
-
)
76
-
77
-
// 16.8.6's act().then() doesn't call a resolve handler, so we need to manually flush here, sigh
78
-
79
-
if(isAsyncActSupported===false){
80
-
console.error=originalConsoleError
81
-
/* istanbul ignore next */
82
-
if(!youHaveBeenWarned){
83
-
// if act is supported and async act isn't and they're trying to use async
84
-
// act, then they need to upgrade from 16.8 to 16.9.
85
-
// This is a seamless upgrade, so we'll add a warning
86
-
console.error(
87
-
`It looks like you're using a version of react-dom that supports the "act" function, but not an awaitable version of "act" which you will need. Please upgrade to at least react-dom@16.9.0 to remove this warning.`,
46
+
returnresult
47
+
})
48
+
if(callbackNeedsToBeAwaited){
49
+
constthenable=actResult
50
+
return{
51
+
then: (resolve,reject)=>{
52
+
thenable.then(
53
+
returnValue=>{
54
+
setIsReactActEnvironment(previousActEnvironment)
55
+
resolve(returnValue)
56
+
},
57
+
error=>{
58
+
setIsReactActEnvironment(previousActEnvironment)
59
+
reject(error)
60
+
},
88
61
)
89
-
youHaveBeenWarned=true
90
-
}
91
-
92
-
cbReturn.then(()=>{
93
-
// a faux-version.
94
-
// todo - copy https://github.com/facebook/react/blob/master/packages/shared/enqueueTask.js
95
-
Promise.resolve().then(()=>{
96
-
// use sync act to flush effects
97
-
act(()=>{})
98
-
resolve()
99
-
})
100
-
},reject)
62
+
},
101
63
}
102
-
})
103
-
}elseif(isAsyncActSupported===false){
104
-
// use the polyfill directly
105
-
letresult
106
-
act(()=>{
107
-
result=cb()
108
-
})
109
-
returnresult.then(()=>{
110
-
returnPromise.resolve().then(()=>{
111
-
// use sync act to flush effects
112
-
act(()=>{})
113
-
})
114
-
})
64
+
}else{
65
+
setIsReactActEnvironment(previousActEnvironment)
66
+
returnactResult
67
+
}
68
+
}catch(error){
69
+
// Can't be a `finally {}` block since we don't know if we have to immediately restore IS_REACT_ACT_ENVIRONMENT
// eslint-disable-next-line no-negated-condition -- we want to map the evolution of this over time. The root is created first. Only later is it re-used so we don't want to read the case that happens later first.
0 commit comments