react-modal 라이브러리

이성훈·2021년 10월 13일
1

react-modal

모달창을 쉽게 사용할 수 있는 리액트 라이브러리입니다

설치

npm install react-modal
yarn add react-modal

사용법

// 불러오기
import Modal from 'react-modal';

// 모달 스타일
const 모달스타일 = {
	overlay: {
		position: "fixed",
		top: 0,
		left: 0,
		right: 0,
		bottom: 0,
		backgroundColor: "rgba(255, 255, 255, 0.45)",
		zIndex: 10,
	},
	content: {
		display: "flex",
		justifyContent: "center",
		background: "#ffffe7",
		overflow: "auto",
		top: "42vh",
		left: "38vw",
		right: "38vw",
		bottom: "42vh",
		WebkitOverflowScrolling: "touch",
		borderRadius: "14px",
		outline: "none",
		zIndex: 10,
	},
};

// 사용법
return (
	<>
		<Modal 
    		isOpen={불린값}
			style={모달스타일}
			onRequestClose={모달토글핸들러} // 오버레이나 esc를 누르면 핸들러 동작
			ariaHideApp={false}
    	>
    		모달 내용 or 컴포넌트
    	</Modal>
        <button onClick={모달토글핸들러}></button>
    </>
)

주의사항

element is not defined 에러가 발생시 아래 코드를 적어서 숨길 엘리먼트를 정의해주면 해결된다

// App.js
Modal.setAppElement('#root')

참조

공식문서
https://velog.io/@seungsang00/React-React-Modal

profile
블로그 이전중입니다 => https://kusdsuna.tistory.com/

0개의 댓글

관련 채용 정보