siyuan/app/src/protyle/render/av/cell.ts

83 lines
3.2 KiB
TypeScript
Raw Normal View History

import {transaction} from "../../wysiwyg/transaction";
import {hasClosestBlock, hasClosestByClassName} from "../../util/hasClosest";
export const popTextCell = (protyle: IProtyle, cellElement: HTMLElement) => {
const type = cellElement.parentElement.parentElement.firstElementChild.children[parseInt(cellElement.getAttribute("data-index")) + 1].getAttribute("data-dtype") as TAVCol;
2023-06-10 17:45:04 +08:00
const cellRect = cellElement.getBoundingClientRect();
let html = "";
const style = `style="position:absolute;left: ${cellRect.left}px;top: ${cellRect.top}px;width:${Math.max(cellRect.width, 200)}px;height: ${cellRect.height}px"`
if (type === "block" || type === "text") {
html = `<textarea ${style} class="b3-text-field">${cellElement.textContent}</textarea>`;
} else if (type === "number") {
html = `<input type="number" value="${cellElement.textContent}" ${style} class="b3-text-field">`;
}
document.body.insertAdjacentHTML("beforeend", `<div class="av__mask">
${html}
</div>`);
const avMaskElement = document.querySelector(".av__mask");
const inputElement = avMaskElement.querySelector(".b3-text-field") as HTMLInputElement;
if (inputElement) {
inputElement.select();
inputElement.focus();
inputElement.addEventListener("blur", () => {
2023-06-10 17:45:04 +08:00
updateCellValue(protyle, cellElement, type);
});
inputElement.addEventListener("keydown", (event) => {
if (event.isComposing) {
2023-06-10 17:45:04 +08:00
return;
}
if (event.key === "Escape" || event.key === "Enter") {
2023-06-10 17:45:04 +08:00
updateCellValue(protyle, cellElement, type);
event.preventDefault();
event.stopPropagation();
}
2023-06-10 17:45:04 +08:00
});
}
avMaskElement.addEventListener("click", (event) => {
if ((event.target as HTMLElement).classList.contains("av__mask")) {
avMaskElement?.remove();
}
2023-06-10 17:45:04 +08:00
});
};
const updateCellValue = (protyle: IProtyle, cellElement: HTMLElement, type: TAVCol) => {
const rowElement = hasClosestByClassName(cellElement, "av__row");
if (!rowElement) {
return;
}
const blockElement = hasClosestBlock(rowElement);
if (!blockElement) {
2023-06-10 17:45:04 +08:00
return;
}
const avMaskElement = document.querySelector(".av__mask");
2023-07-01 17:06:28 +08:00
const cellId = cellElement.getAttribute("data-id");
const avId = blockElement.getAttribute("data-av-id");
const rowId = rowElement.getAttribute("data-id");
let inputValue: string | number = (avMaskElement.querySelector(".b3-text-field") as HTMLInputElement).value
let oldValue: string | number = cellElement.textContent.trim()
if (type === "number") {
inputValue = parseFloat(inputValue);
oldValue = parseFloat(oldValue);
}
transaction(protyle, [{
action: "updateAttrViewCell",
id: cellId,
rowID: rowId,
parentID: avId,
data: {
[type]: {content: inputValue}
}
}], [{
action: "updateAttrViewCell",
id: cellId,
rowID: rowId,
parentID: avId,
data: {
[type]: {content: oldValue}
}
}]);
setTimeout(() => {
avMaskElement.remove();
2023-06-10 17:45:04 +08:00
});
};