forked from RocketChat/EmbeddedChat
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathModal.js
More file actions
75 lines (67 loc) · 1.74 KB
/
Modal.js
File metadata and controls
75 lines (67 loc) · 1.74 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
72
73
74
75
import React, { forwardRef, useRef, useCallback, useEffect } from 'react';
import useComponentOverrides from '../../hooks/useComponentOverrides';
import { Box } from '../Box';
import { ModalBackdrop } from './ModalBackdrop';
import { getModalstyles } from './Modal.styles';
import ReactPortal from '../../lib/reactPortal';
import { useTheme } from '../../hooks';
export const Modal = forwardRef(
(
{
className = '',
style = {},
open = true,
children,
onClose = () => {},
...props
},
ref
) => {
const { classNames, styleOverrides } = useComponentOverrides('Modal');
const backDropRef = useRef(null);
const { theme } = useTheme();
const styles = getModalstyles(theme);
const handleClick = useCallback(
(e) => {
if (e.target === backDropRef.current) {
onClose();
}
},
[onClose]
);
const handleEscKey = useCallback(
(e) => {
if (e.key === 'Escape') {
onClose();
}
},
[onClose]
);
useEffect(() => {
window.addEventListener('keydown', handleEscKey);
return () => {
window.removeEventListener('keydown', handleEscKey);
};
}, [handleEscKey]);
if (!open) {
return null;
}
return (
<ReactPortal wrapperId="overlay-items">
<ModalBackdrop ref={backDropRef} onClick={handleClick}>
<Box
ref={ref}
is="dialog"
css={styles.main}
className={`ec-modal ${className} ${classNames}`}
style={{ ...style, ...styleOverrides }}
{...props}
>
{children}
</Box>
</ModalBackdrop>
</ReactPortal>
);
}
);
Modal.displayName = 'Modal';