69 lines
2.1 KiB
JavaScript
69 lines
2.1 KiB
JavaScript
import {
|
|
parseFontSize
|
|
} from "./chunk-XCSQNVCT.mjs";
|
|
import {
|
|
defaultConfig_default,
|
|
getConfig2 as getConfig
|
|
} from "./chunk-UKMXQNCB.mjs";
|
|
import {
|
|
__name
|
|
} from "./chunk-FQFHLQFH.mjs";
|
|
|
|
// src/utils/subGraphTitleMargins.ts
|
|
var getSubGraphTitleMargins = /* @__PURE__ */ __name(({
|
|
flowchart
|
|
}) => {
|
|
const subGraphTitleTopMargin = flowchart?.subGraphTitleMargin?.top ?? 0;
|
|
const subGraphTitleBottomMargin = flowchart?.subGraphTitleMargin?.bottom ?? 0;
|
|
const subGraphTitleTotalMargin = subGraphTitleTopMargin + subGraphTitleBottomMargin;
|
|
return {
|
|
subGraphTitleTopMargin,
|
|
subGraphTitleBottomMargin,
|
|
subGraphTitleTotalMargin
|
|
};
|
|
}, "getSubGraphTitleMargins");
|
|
|
|
// src/rendering-util/rendering-elements/shapes/labelImageUtils.ts
|
|
async function configureLabelImages(container, labelText) {
|
|
const images = container.getElementsByTagName("img");
|
|
if (!images || images.length === 0) {
|
|
return;
|
|
}
|
|
const noImgText = labelText.replace(/<img[^>]*>/g, "").trim() === "";
|
|
await Promise.all(
|
|
[...images].map(
|
|
(img) => new Promise((res) => {
|
|
function setupImage() {
|
|
img.style.display = "flex";
|
|
img.style.flexDirection = "column";
|
|
if (noImgText) {
|
|
const bodyFontSize = getConfig().fontSize ? getConfig().fontSize : window.getComputedStyle(document.body).fontSize;
|
|
const enlargingFactor = 5;
|
|
const [parsedBodyFontSize = defaultConfig_default.fontSize] = parseFontSize(bodyFontSize);
|
|
const width = parsedBodyFontSize * enlargingFactor + "px";
|
|
img.style.minWidth = width;
|
|
img.style.maxWidth = width;
|
|
} else {
|
|
img.style.width = "100%";
|
|
}
|
|
res(img);
|
|
}
|
|
__name(setupImage, "setupImage");
|
|
setTimeout(() => {
|
|
if (img.complete) {
|
|
setupImage();
|
|
}
|
|
});
|
|
img.addEventListener("error", setupImage);
|
|
img.addEventListener("load", setupImage);
|
|
})
|
|
)
|
|
);
|
|
}
|
|
__name(configureLabelImages, "configureLabelImages");
|
|
|
|
export {
|
|
configureLabelImages,
|
|
getSubGraphTitleMargins
|
|
};
|