Skip to content

Commit 2594dce

Browse files
committed
[fixed] Modal Null Exception when react-bootstrap is loaded before the Body tag
Make scrollbar size check lazy, Only called after components have mounted. fixes react-bootstrap#849
1 parent 3423e70 commit 2594dce

File tree

1 file changed

+10
-6
lines changed

1 file changed

+10
-6
lines changed

src/Modal.js

+10-6
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,11 @@ function onFocus(context, handler) {
5454

5555
let scrollbarSize;
5656

57-
if (domUtils.canUseDom) {
57+
function getScrollbarSize(){
58+
if ( scrollbarSize !== undefined ){
59+
return scrollbarSize;
60+
}
61+
5862
let scrollDiv = document.createElement('div');
5963

6064
scrollDiv.style.position = 'absolute';
@@ -64,13 +68,13 @@ if (domUtils.canUseDom) {
6468
scrollDiv.style.overflow = 'scroll';
6569

6670
document.body.appendChild(scrollDiv);
67-
6871
scrollbarSize = scrollDiv.offsetWidth - scrollDiv.clientWidth;
69-
7072
document.body.removeChild(scrollDiv);
73+
7174
scrollDiv = null;
7275
}
7376

77+
7478
const Modal = React.createClass({
7579

7680
mixins: [BootstrapMixin, FadeMixin],
@@ -210,7 +214,7 @@ const Modal = React.createClass({
210214
this._originalPadding = container.style.paddingRight;
211215

212216
if (this._containerIsOverflowing) {
213-
container.style.paddingRight = parseInt(this._originalPadding || 0, 10) + scrollbarSize + 'px';
217+
container.style.paddingRight = parseInt(this._originalPadding || 0, 10) + getScrollbarSize() + 'px';
214218
}
215219

216220
if (this.props.backdrop) {
@@ -308,8 +312,8 @@ const Modal = React.createClass({
308312

309313
return {
310314
dialogStyles: {
311-
paddingRight: containerIsOverflowing && !modalIsOverflowing ? scrollbarSize : void 0,
312-
paddingLeft: !containerIsOverflowing && modalIsOverflowing ? scrollbarSize : void 0
315+
paddingRight: containerIsOverflowing && !modalIsOverflowing ? getScrollbarSize() : void 0,
316+
paddingLeft: !containerIsOverflowing && modalIsOverflowing ? getScrollbarSize() : void 0
313317
}
314318
};
315319
}

0 commit comments

Comments
 (0)