Skip to content

Commit c747c24

Browse files
YassienWdiasbruno
authored andcommitted
[added] Added an id prop, applied to the modal dialog (content) (#765)
* Added an ID prop, applied to the modal dialog.
1 parent d7ec04d commit c747c24

File tree

3 files changed

+14
-1
lines changed

3 files changed

+14
-1
lines changed

docs/README.md

+4
Original file line numberDiff line numberDiff line change
@@ -63,6 +63,10 @@ import ReactModal from 'react-modal';
6363
See the `Styles` section for more details.
6464
*/
6565
overlayClassName="ReactModal__Overlay"
66+
/*
67+
String id to be applied to the content div
68+
*/
69+
id=""
6670
/*
6771
String className to be applied to the modal content.
6872
See the `Styles` section for more details.

specs/Modal.spec.js

+7
Original file line numberDiff line numberDiff line change
@@ -233,6 +233,13 @@ export default () => {
233233
});
234234
});
235235

236+
it("supports id prop", () => {
237+
const modal = renderModal({ isOpen: true, id: "id" });
238+
mcontent(modal)
239+
.id.includes("id")
240+
.should.be.ok();
241+
});
242+
236243
it("supports portalClassName", () => {
237244
const modal = renderModal({
238245
isOpen: true,

src/components/ModalPortal.js

+3-1
Original file line numberDiff line numberDiff line change
@@ -57,6 +57,7 @@ export default class ModalPortal extends Component {
5757
shouldCloseOnEsc: PropTypes.bool,
5858
overlayRef: PropTypes.func,
5959
contentRef: PropTypes.func,
60+
id: PropTypes.string,
6061
testId: PropTypes.string
6162
};
6263

@@ -328,7 +329,7 @@ export default class ModalPortal extends Component {
328329
}, {});
329330

330331
render() {
331-
const { className, overlayClassName, defaultStyles } = this.props;
332+
const { id, className, overlayClassName, defaultStyles } = this.props;
332333
const contentStyles = className ? {} : defaultStyles.content;
333334
const overlayStyles = overlayClassName ? {} : defaultStyles.overlay;
334335

@@ -341,6 +342,7 @@ export default class ModalPortal extends Component {
341342
onMouseDown={this.handleOverlayOnMouseDown}
342343
>
343344
<div
345+
id={id}
344346
ref={this.setContentRef}
345347
style={{ ...contentStyles, ...this.props.style.content }}
346348
className={this.buildClassName("content", className)}

0 commit comments

Comments
 (0)