forked from testing-library/react-hooks-testing-library
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcreateRoot.ts
30 lines (26 loc) · 911 Bytes
/
createRoot.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
import * as ReactDOM from 'react-dom'
import * as React from 'react'
/* istanbul ignore next */
function createLegacyRoot(container: Element): ReactDOM.Root {
return {
render(element: React.ReactElement) {
ReactDOM.render(element, container)
},
unmount() {
ReactDOM.unmountComponentAtNode(container)
}
}
}
/* istanbul ignore next */
export function createRoot(container: Element) {
return (ReactDOM.createRoot ? ReactDOM.createRoot : createLegacyRoot)(container)
}
/* istanbul ignore next */
export function hydrateLegacyRoot(container: Element, element: React.ReactElement): ReactDOM.Root {
ReactDOM.hydrate(element, container)
return createLegacyRoot(container)
}
/* istanbul ignore next */
export function hydrateRoot(container: Element, element: React.ReactElement) {
return (ReactDOM.hydrateRoot ? ReactDOM.hydrateRoot : hydrateLegacyRoot)(container, element)
}