-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathRenderUtils.tsx
More file actions
71 lines (60 loc) · 1.8 KB
/
RenderUtils.tsx
File metadata and controls
71 lines (60 loc) · 1.8 KB
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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
import { Root } from 'react-dom/client';
export interface IRenderComponentProps {
container: HTMLElement;
component: JSX.Element;
/**
* Автоматически удаляем react компонент, если родительский элемент был удалён из DOM дерева
*/
autoUnmount: boolean;
}
const roots = new Map<HTMLElement, Root>();
export async function renderComponent({ container, component, autoUnmount }: IRenderComponentProps) {
const { createRoot } = await import(/* webpackChunkName: "react-dom"*/ 'react-dom/client');
const isUpdate = roots.has(container);
const root = isUpdate ? roots.get(container)! : createRoot(container);
if (!isUpdate) {
roots.set(container, root);
if (autoUnmount) {
onDetach(container, () => unMount(container));
}
}
try {
root.render(component);
} catch (e) { }
}
export function unMount(container: HTMLElement, unmountContainer = false) {
if (roots.has(container)) {
try {
const root = roots.get(container)!;
root.unmount();
unmountContainer && container.remove();
} catch (_e) {
} finally {
roots.delete(container);
}
}
}
export function onDetach(
el: HTMLElement,
onDetachCallback: () => any,
observer = new MutationObserver(() => {
if (isDetached(el)) {
observer.disconnect();
onDetachCallback();
}
})
) {
if (isDetached(el)) {
observer.disconnect();
onDetachCallback();
return observer;
}
observer.observe(document, {
childList: true,
subtree: true,
});
return observer;
}
export function isDetached(el: HTMLElement) {
return !el.closest('html');
}