@zag-js/splitter
Version:
Core logic for the splitter widget implemented as a state machine
139 lines (137 loc) • 4.47 kB
JavaScript
;
var __defProp = Object.defineProperty;
var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
var __getOwnPropNames = Object.getOwnPropertyNames;
var __hasOwnProp = Object.prototype.hasOwnProperty;
var __export = (target, all) => {
for (var name in all)
__defProp(target, name, { get: all[name], enumerable: true });
};
var __copyProps = (to, from, except, desc) => {
if (from && typeof from === "object" || typeof from === "function") {
for (let key of __getOwnPropNames(from))
if (!__hasOwnProp.call(to, key) && key !== except)
__defProp(to, key, { get: () => from[key], enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable });
}
return to;
};
var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: true }), mod);
// src/utils/size.ts
var size_exports = {};
__export(size_exports, {
getGroupSize: () => getGroupSize,
normalizePanels: () => normalizePanels,
parsePanelSize: () => parsePanelSize,
resolvePanelSizes: () => resolvePanelSizes,
toCssPanelSize: () => toCssPanelSize
});
module.exports = __toCommonJS(size_exports);
var sizeRegex = /^(-?\d*\.?\d+)(%|px|em|rem|vw|vh)?$/;
var percentRegex = /^(-?\d*\.?\d+)%$/;
function getRootSize(rootEl, orientation) {
if (!rootEl) return 0;
const rect = rootEl.getBoundingClientRect();
return orientation === "horizontal" ? rect.width : rect.height;
}
function getGroupSize(rootEl, orientation) {
return getRootSize(rootEl, orientation);
}
function toPixelValue(value, unit, rootEl) {
const win = rootEl.ownerDocument.defaultView;
if (!win) return void 0;
switch (unit) {
case "px":
return value;
case "em": {
const fontSize = Number.parseFloat(win.getComputedStyle(rootEl).fontSize);
return value * fontSize;
}
case "rem": {
const fontSize = Number.parseFloat(win.getComputedStyle(rootEl.ownerDocument.documentElement).fontSize);
return value * fontSize;
}
case "vw":
return value / 100 * win.innerWidth;
case "vh":
return value / 100 * win.innerHeight;
default:
return void 0;
}
}
function parsePanelSize(size, rootEl, orientation) {
if (size == null) return void 0;
if (typeof size === "number") {
return size;
}
const match = size.trim().match(sizeRegex);
if (!match) return void 0;
const value = Number.parseFloat(match[1]);
if (!Number.isFinite(value)) return void 0;
const unit = match[2];
if (unit == null || unit === "%") {
return value;
}
if (!rootEl) return void 0;
const rootSize = getRootSize(rootEl, orientation);
if (rootSize === 0) return void 0;
const px = toPixelValue(value, unit, rootEl);
return px == null ? void 0 : px / rootSize * 100;
}
function toCssPanelSize(size) {
if (size == null) return void 0;
if (typeof size === "number") {
return `${size}%`;
}
const trimmed = size.trim();
if (percentRegex.test(trimmed)) {
return trimmed;
}
const match = trimmed.match(sizeRegex);
if (!match) return void 0;
const value = Number.parseFloat(match[1]);
if (!Number.isFinite(value)) return void 0;
const unit = match[2];
return unit == null ? `${value}%` : `${value}${unit}`;
}
function resolvePanelSizes({
sizes,
panels,
rootEl,
orientation
}) {
const nextSize = Array(panels.length);
let remainingSize = 100;
let numPanelsWithSizes = 0;
for (let index = 0; index < panels.length; index++) {
const size = parsePanelSize(sizes?.[index], rootEl, orientation);
if (size == null) continue;
numPanelsWithSizes++;
nextSize[index] = size;
remainingSize -= size;
}
for (let index = 0; index < panels.length; index++) {
if (nextSize[index] != null) continue;
const numRemainingPanels = panels.length - numPanelsWithSizes;
const size = numRemainingPanels > 0 ? remainingSize / numRemainingPanels : 0;
numPanelsWithSizes++;
nextSize[index] = size;
remainingSize -= size;
}
return nextSize;
}
function normalizePanels(panels, rootEl, orientation) {
return panels.map((panel) => ({
...panel,
minSize: parsePanelSize(panel.minSize, rootEl, orientation),
maxSize: parsePanelSize(panel.maxSize, rootEl, orientation),
collapsedSize: parsePanelSize(panel.collapsedSize, rootEl, orientation)
}));
}
// Annotate the CommonJS export names for ESM import in node:
0 && (module.exports = {
getGroupSize,
normalizePanels,
parsePanelSize,
resolvePanelSizes,
toCssPanelSize
});