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
|
import { h, Html } from 'lib/rx'
interface Params {
header: Html
body: Html
onClose: () => void
onmount?: (element: Element) => void
onunmount?: (element: Element) => void
}
export function view({ header, body, onClose, onmount, onunmount }: Params): Html {
return h('div',
{ className: 'g-Modal',
onclick: () => onClose(),
onmount: (element: Element) => onmount && onmount(element),
onunmount: (element: Element) => onunmount && onunmount(element)
},
h('div',
{ className: 'g-Modal__Content',
onclick: (e: Event) => e.stopPropagation()
},
h('div',
{ className: 'g-Modal__Header' },
header,
h('button',
{ className: 'g-Modal__Close',
onclick: () => onClose()
},
'✕'
)
),
h('div',
{ className: 'g-Modal__Body' },
body
)
)
)
}
|