mirror of
https://github.com/livebook-dev/livebook.git
synced 2024-11-17 21:33:16 +08:00
70be004ee0
* Fix editor shift * Make autoscrolling more intuitive
51 lines
1.4 KiB
JavaScript
51 lines
1.4 KiB
JavaScript
export function isMacOS() {
|
|
return /(Mac|iPhone|iPod|iPad)/i.test(navigator.platform);
|
|
}
|
|
|
|
export function isEditableElement(element) {
|
|
return (
|
|
["input", "textarea"].includes(element.tagName.toLowerCase()) ||
|
|
element.contentEditable === "true"
|
|
);
|
|
}
|
|
|
|
export function clamp(n, x, y) {
|
|
return Math.min(Math.max(n, x), y);
|
|
}
|
|
|
|
export function getLineHeight(element) {
|
|
const computedStyle = window.getComputedStyle(element);
|
|
const lineHeight = parseInt(computedStyle.lineHeight, 10);
|
|
|
|
if (Number.isNaN(lineHeight)) {
|
|
const clone = element.cloneNode();
|
|
clone.innerHTML = "<br>";
|
|
element.appendChild(clone);
|
|
const singleLineHeight = clone.clientHeight;
|
|
clone.innerHTML = "<br><br>";
|
|
const doubleLineHeight = clone.clientHeight;
|
|
element.removeChild(clone);
|
|
const lineHeight = doubleLineHeight - singleLineHeight;
|
|
return lineHeight;
|
|
} else {
|
|
return lineHeight;
|
|
}
|
|
}
|
|
|
|
export function selectElementContent(element) {
|
|
const selection = window.getSelection();
|
|
const range = document.createRange();
|
|
range.selectNodeContents(element);
|
|
selection.removeAllRanges();
|
|
selection.addRange(range);
|
|
}
|
|
|
|
export function smoothlyScrollToElement(element) {
|
|
const { height } = element.getBoundingClientRect();
|
|
|
|
if (height < window.innerHeight) {
|
|
element.scrollIntoView({ behavior: "smooth", block: "center" });
|
|
} else {
|
|
element.scrollIntoView({ behavior: "smooth", block: "start" });
|
|
}
|
|
}
|