리엑트 컴포넌트에서 ajax 호출 방법

리엑트에서 모달을 생성해야 하는 경우가 생기는데,

아래 코드로 안드로이드 4.x , iOS 버전별 이상없이 사용할 수 있었습니다.

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
import React, { Component } from 'react'
import './index.scss'

class Modal extends Component {
constructor (props) {
super(props)
this.scrollY = 0
}

componentDidMount() {
this.setScrollFixed()
}

componentWillUnmount() {
this.setScroll()
}

setScrollFixed = () => {
this.scrollY = window.pageYOffset || document.documentElement.scrollTop;
window.document.body.style.height = 'auto'
window.document.body.style.overflow = 'hidden'
window.document.body.style.position = 'fixed'
window.document.body.style.top = `-${this.scrollY}px`
}

setScroll = () => {
window.document.body.style.height = '100%'
window.document.body.style.overflow = ''
window.document.body.style.position = ''
window.scrollTo(0, this.scrollY)
}

render () {

const { onClickDim, children } = this.props

return (
<React.Fragment>
<div className={`dim`} onClick={onClickDim}></div>
<div className={`modal`}>
{children}
</div>
</React.Fragment>
)
}
}

export default Modal
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
.modal{
background-color: #ffffff;
border: 1px solid #b3000000;
position: fixed;
margin: 0px 24px;
overflow-y: scroll;
height: 250px;
margin-top: -100px;
top: 50%;
right: 0;
left: 0;
}

.dim {
position: absolute;
width: 100%;
height: 100%;
top:0;
bottom:0;
left:0;
right:0;
background-color:#000000;
opacity:0.7;
}