@atlaskit/page-layout
Version:
A collection of components which let you compose an application's page layout.
11 lines • 369 B
JavaScript
import { DEFAULT_LEFT_SIDEBAR_WIDTH } from './constants';
export var getLeftSidebarPercentage = function getLeftSidebarPercentage(currentWidth, maxWidth) {
var total = (currentWidth - DEFAULT_LEFT_SIDEBAR_WIDTH) / (maxWidth - DEFAULT_LEFT_SIDEBAR_WIDTH);
if (total < 0) {
return 0;
}
if (total > 1) {
return 100;
}
return Math.floor(total * 100);
};