Skip to content

Commit a428d83

Browse files
author
Griko Nibras
committed
[chore] cleanup readme
1 parent b0eb17f commit a428d83

File tree

1 file changed

+45
-44
lines changed

1 file changed

+45
-44
lines changed

README.md

+45-44
Original file line numberDiff line numberDiff line change
@@ -4,24 +4,26 @@ Accessible modal dialog component for React.JS
44

55
[![Build Status](https://travis-ci.org/reactjs/react-modal.svg?branch=v1)](https://travis-ci.org/reactjs/react-modal)
66
[![Coverage Status](https://coveralls.io/repos/github/reactjs/react-modal/badge.svg?branch=master)](https://coveralls.io/github/reactjs/react-modal?branch=master)
7-
![gzip size](http://img.badgesize.io/https://unpkg.com/react-modal/dist/react-modal.min.js?compression=gzip)
7+
![gzip size](https://img.badgesize.io/https://unpkg.com/react-modal/dist/react-modal.min.js?compression=gzip)
88
[![Join the chat at https://gitter.im/react-modal/Lobby](https://badges.gitter.im/Join%20Chat.svg)](https://gitter.im/react-modal/Lobby?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge)
99

1010
## Table of Contents
1111

12-
* [Installation](#installation)
13-
* [API documentation](#api-documentation)
14-
* [Examples](#examples)
15-
* [Demos](#demos)
12+
- [Table of Contents](#Table-of-Contents)
13+
- [Installation](#Installation)
14+
- [API documentation](#API-documentation)
15+
- [Examples](#Examples)
16+
- [Demos](#Demos)
1617

1718
## Installation
1819

19-
To install, you can use [npm](https://npmjs.org/) or [yarn](https://yarnpkg.com):
20-
21-
22-
$ npm install react-modal
23-
$ yarn add react-modal
20+
To install, you can use [npm](https://npmjs.org/) or [Yarn](https://yarnpkg.com):
2421

22+
```sh
23+
npm install react-modal
24+
# or
25+
yarn add react-modal
26+
```
2527

2628
## API documentation
2729

@@ -35,48 +37,48 @@ Here is a simple example of react-modal being used in an app with some custom
3537
styles and focusable input elements within the modal content:
3638

3739
```jsx
38-
import React from 'react';
39-
import ReactDOM from 'react-dom';
40-
import Modal from 'react-modal';
40+
import React from 'react'
41+
import ReactDOM from 'react-dom'
42+
import Modal from 'react-modal'
4143

4244
const customStyles = {
43-
content : {
44-
top : '50%',
45-
left : '50%',
46-
right : 'auto',
47-
bottom : 'auto',
48-
marginRight : '-50%',
49-
transform : 'translate(-50%, -50%)'
50-
}
51-
};
45+
content: {
46+
top: '50%',
47+
left: '50%',
48+
right: 'auto',
49+
bottom: 'auto',
50+
marginRight: '-50%',
51+
transform: 'translate(-50%, -50%)',
52+
},
53+
}
5254

5355
// Make sure to bind modal to your appElement (http://reactcommunity.org/react-modal/accessibility/)
5456
Modal.setAppElement('#yourAppElement')
5557

5658
class App extends React.Component {
5759
constructor() {
58-
super();
60+
super()
5961

6062
this.state = {
61-
modalIsOpen: false
62-
};
63+
modalIsOpen: false,
64+
}
6365

64-
this.openModal = this.openModal.bind(this);
65-
this.afterOpenModal = this.afterOpenModal.bind(this);
66-
this.closeModal = this.closeModal.bind(this);
66+
this.openModal = this.openModal.bind(this)
67+
this.afterOpenModal = this.afterOpenModal.bind(this)
68+
this.closeModal = this.closeModal.bind(this)
6769
}
6870

6971
openModal() {
70-
this.setState({modalIsOpen: true});
72+
this.setState({ modalIsOpen: true })
7173
}
7274

7375
afterOpenModal() {
7476
// references are now sync'd and can be accessed.
75-
this.subtitle.style.color = '#f00';
77+
this.subtitle.style.color = '#f00'
7678
}
7779

7880
closeModal() {
79-
this.setState({modalIsOpen: false});
81+
this.setState({ modalIsOpen: false })
8082
}
8183

8284
render() {
@@ -88,10 +90,9 @@ class App extends React.Component {
8890
onAfterOpen={this.afterOpenModal}
8991
onRequestClose={this.closeModal}
9092
style={customStyles}
91-
contentLabel="Example Modal"
93+
contentLabel='Example Modal'
9294
>
93-
94-
<h2 ref={subtitle => this.subtitle = subtitle}>Hello</h2>
95+
<h2 ref={subtitle => (this.subtitle = subtitle)}>Hello</h2>
9596
<button onClick={this.closeModal}>close</button>
9697
<div>I am a modal</div>
9798
<form>
@@ -103,25 +104,25 @@ class App extends React.Component {
103104
</form>
104105
</Modal>
105106
</div>
106-
);
107+
)
107108
}
108109
}
109110

110-
ReactDOM.render(<App />, appElement);
111+
ReactDOM.render(<App />, appElement)
111112
```
112113

113114
You can find more examples in the `examples` directory, which you can run in a
114-
local development server using `npm start` or `yarn run start`.
115+
local development server using `npm start` or `yarn start`.
115116

116117
## Demos
117118

118119
There are several demos hosted on [CodePen](https://codepen.io) which
119120
demonstrate various features of react-modal:
120121

121-
* [Minimal example](https://codepen.io/claydiffrient/pen/KNxgav)
122-
* [Using setAppElement](https://codepen.io/claydiffrient/pen/ENegGJ)
123-
* [Using onRequestClose](https://codepen.io/claydiffrient/pen/KNjVBx)
124-
* [Using shouldCloseOnOverlayClick](https://codepen.io/claydiffrient/pen/woLzwo)
125-
* [Using inline styles](https://codepen.io/claydiffrient/pen/ZBmyKz)
126-
* [Using CSS classes for styling](https://codepen.io/claydiffrient/pen/KNjVrG)
127-
* [Customizing the default styles](https://codepen.io/claydiffrient/pen/pNXgqQ)
122+
- [Minimal example](https://codepen.io/claydiffrient/pen/KNxgav)
123+
- [Using setAppElement](https://codepen.io/claydiffrient/pen/ENegGJ)
124+
- [Using onRequestClose](https://codepen.io/claydiffrient/pen/KNjVBx)
125+
- [Using shouldCloseOnOverlayClick](https://codepen.io/claydiffrient/pen/woLzwo)
126+
- [Using inline styles](https://codepen.io/claydiffrient/pen/ZBmyKz)
127+
- [Using CSS classes for styling](https://codepen.io/claydiffrient/pen/KNjVrG)
128+
- [Customizing the default styles](https://codepen.io/claydiffrient/pen/pNXgqQ)

0 commit comments

Comments
 (0)