Reactでの開発が徐々に慣れてきたところで実装に実用的なコードも書いていきたいところです。
今回はreact-modalというライブラリを使ってゆるく実装してみたいと思います。
事前準備
react-modalのインストール
実際に書いてみる
import React from 'react';
import ReactDOM from 'react-dom';
import Modal from 'react-modal';
const appElement = document.getElementById('app');
const customStyles = {
content : {
top : '20%',
left : '50%',
right : 'auto',
bottom : 'auto',
marginRight : '-20%',
transform : 'translate(-50%, -50%)'
},
overlay : {
backgroundColor:'black'
}
};
class App extends React.Component {
constructor() {
super();
this.state = {
modalIsOpen: false,
};
this.openModal = this.openModal.bind(this);
this.afterOpenModal = this.afterOpenModal.bind(this);
this.closeModal = this.closeModal.bind(this);
}
openModal() {
this.setState({modalIsOpen: true});
}
afterOpenModal() {
// references are now sync'd and can be accessed.
this.subtitle.style.color = '#f00';
}
closeModal() {
this.setState({modalIsOpen: false});
}
render() {
return (
<div>
<button onClick={this.openModal}>Open Modal</button>
<Modal
isOpen={this.state.modalIsOpen}
onAfterOpen={this.afterOpenModal}
onRequestClose={this.closeModal}
style={customStyles}
contentLabel="Example Modal"
>
<h2 ref={subtitle => this.subtitle = subtitle}>Hello</h2>
<button onClick={this.closeModal}>close</button>
<div>I am a modal</div>
<form>
<input />
<button>tab navigation</button>
<button>stays</button>
<button>inside</button>
<button>the modal</button>
</form>
</Modal>
</div>
);
}
}
ReactDOM.render(<App />, appElement);