Bug 1472200 - Only the Rules panel is displayed if enabling 3-Pane Inspector while the right Inspector section is at minimum width r=jlast

Differential Revision: https://phabricator.services.mozilla.com/D49270

--HG--
extra : moz-landing-system : lando
This commit is contained in:
Michael Ratcliffe 2019-10-16 19:08:46 +00:00
Родитель 3961d153bb
Коммит 620e2c9464
1 изменённых файлов: 25 добавлений и 2 удалений

Просмотреть файл

@ -182,7 +182,7 @@ class SplitBox extends Component {
: x - nodeBounds.left;
this.setState({
width: size,
width: this.getConstrainedSizeInPx(size, nodeBounds.width),
});
} else {
size = endPanelControl
@ -190,11 +190,34 @@ class SplitBox extends Component {
: y - nodeBounds.top;
this.setState({
height: size,
height: this.getConstrainedSizeInPx(size, nodeBounds.height),
});
}
}
/**
* Calculates the constrained size taking into account the minimum width or
* height passed via this.props.minSize.
*
* @param {Number} requestedSize
* The requested size
* @param {Number} splitBoxWidthOrHeight
* The width or height of the splitBox
*
* @return {Number}
* The constrained size
*/
getConstrainedSizeInPx(requestedSize, splitBoxWidthOrHeight) {
let minSize = this.props.minSize + "";
if (minSize.endsWith("%")) {
minSize = (parseFloat(minSize) / 100) * splitBoxWidthOrHeight;
} else if (minSize.endsWith("px")) {
minSize = parseFloat(minSize);
}
return Math.max(requestedSize, minSize);
}
// Rendering
/* eslint-disable complexity */