This repository was archived by the owner on May 11, 2024. It is now read-only.
forked from liriliri/luna
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathreact.tsx
68 lines (59 loc) · 1.57 KB
/
react.tsx
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
import { FC, PropsWithChildren, useEffect, useRef } from 'react'
import { createPortal } from 'react-dom'
import h from 'licia/h'
import types from 'licia/types'
import Modal from './index'
interface IModalProps {
title: string
visible: boolean
width?: number
onClose?: () => void
}
const LunaModal: FC<PropsWithChildren<IModalProps>> = (props) => {
const modalRef = useRef<HTMLDivElement>(null)
const modal = useRef<Modal>()
const content = useRef<HTMLDivElement>(h('div') as HTMLDivElement)
const doHide = useRef<types.AnyFn>()
useEffect(() => {
modal.current = new Modal(modalRef.current!, {
title: props.title,
content: content.current,
})
doHide.current = modal.current.hide
modal.current.hide = function () {
props.onClose && props.onClose()
}
if (props.visible) {
modal.current.show()
}
if (props.width) {
modal.current.setOption('width', props.width)
}
return () => modal.current?.destroy()
}, [])
useEffect(() => {
if (modal.current) {
modal.current.setOption('title', props.title)
}
}, [props.title])
useEffect(() => {
if (modal.current) {
if (props.visible) {
modal.current.show()
} else {
doHide.current && doHide.current.call(modal.current)
}
}
}, [props.visible])
useEffect(() => {
if (modal.current) {
modal.current.setOption('width', props.width)
}
}, [props.width])
return (
<div ref={modalRef}>
{createPortal(<>{props.children}</>, content.current)}
</div>
)
}
export default LunaModal