2023-06-12 12:42:22 +08:00
|
|
|
import {Menu} from "../../../plugin/Menu";
|
2023-06-08 19:21:33 +08:00
|
|
|
import {hasClosestBlock, hasClosestByAttribute, hasClosestByClassName} from "../../util/hasClosest";
|
|
|
|
|
import {transaction} from "../../wysiwyg/transaction";
|
2023-06-10 11:59:12 +08:00
|
|
|
import {openEditorTab} from "../../../menus/util";
|
|
|
|
|
import {copySubMenu} from "../../../menus/commonMenuItem";
|
2023-07-15 22:24:54 +08:00
|
|
|
import {openCalcMenu, popTextCell} from "./cell";
|
2023-07-07 11:12:49 +08:00
|
|
|
import {getColIconByType, showColMenu, updateHeader} from "./col";
|
2023-06-29 18:56:46 +08:00
|
|
|
import {emitOpenMenu} from "../../../plugin/EventBus";
|
2023-07-02 20:52:16 +08:00
|
|
|
import {addCol} from "./addCol";
|
|
|
|
|
import {openMenuPanel} from "./openMenuPanel";
|
2023-07-28 17:33:35 +08:00
|
|
|
import {hintRef} from "../../hint/extend";
|
2023-08-01 22:09:07 +08:00
|
|
|
import {focusByRange} from "../../util/selection";
|
2023-08-03 15:08:07 +08:00
|
|
|
import {writeText} from "../../util/compatibility";
|
|
|
|
|
import {showMessage} from "../../../dialog/message";
|
2023-09-22 20:40:28 +08:00
|
|
|
import {previewImage} from "../../preview/image";
|
2023-10-11 17:28:40 +08:00
|
|
|
import {isLocalPath, pathPosix} from "../../../util/pathName";
|
|
|
|
|
import {Constants} from "../../../constants";
|
|
|
|
|
import {openAsset} from "../../../editor/util";
|
|
|
|
|
import {getSearch, isMobile} from "../../../util/functions";
|
2023-06-10 17:44:19 +08:00
|
|
|
|
2023-06-08 19:21:33 +08:00
|
|
|
export const avClick = (protyle: IProtyle, event: MouseEvent & { target: HTMLElement }) => {
|
2023-06-08 22:56:52 +08:00
|
|
|
const blockElement = hasClosestBlock(event.target);
|
2023-06-10 17:56:45 +08:00
|
|
|
if (!blockElement) {
|
2023-06-11 22:58:48 +08:00
|
|
|
return false;
|
2023-06-10 17:56:45 +08:00
|
|
|
}
|
2023-09-09 23:21:46 +08:00
|
|
|
const copyElement = hasClosestByAttribute(event.target, "data-type", "copy");
|
|
|
|
|
if (copyElement) {
|
|
|
|
|
writeText(copyElement.previousElementSibling.textContent.trim());
|
|
|
|
|
showMessage(window.siyuan.languages.copied);
|
|
|
|
|
event.preventDefault();
|
|
|
|
|
event.stopPropagation();
|
|
|
|
|
return true;
|
|
|
|
|
}
|
|
|
|
|
if (protyle.disabled) {
|
|
|
|
|
return false;
|
|
|
|
|
}
|
2023-09-28 11:29:58 +08:00
|
|
|
|
2023-06-08 22:56:52 +08:00
|
|
|
const addElement = hasClosestByAttribute(event.target, "data-type", "av-header-add");
|
2023-06-10 17:56:45 +08:00
|
|
|
if (addElement) {
|
2023-07-02 21:53:02 +08:00
|
|
|
const addMenu = addCol(protyle, blockElement);
|
2023-07-02 23:59:01 +08:00
|
|
|
const addRect = addElement.getBoundingClientRect();
|
2023-07-02 21:53:02 +08:00
|
|
|
addMenu.open({
|
|
|
|
|
x: addRect.left,
|
|
|
|
|
y: addRect.bottom,
|
|
|
|
|
h: addRect.height
|
|
|
|
|
});
|
2023-06-08 19:21:33 +08:00
|
|
|
event.preventDefault();
|
|
|
|
|
event.stopPropagation();
|
2023-06-08 22:56:52 +08:00
|
|
|
return true;
|
2023-06-08 19:21:33 +08:00
|
|
|
}
|
2023-06-10 11:11:49 +08:00
|
|
|
|
2023-06-30 10:26:48 +08:00
|
|
|
const gutterElement = hasClosestByClassName(event.target, "av__gutters");
|
|
|
|
|
if (gutterElement) {
|
|
|
|
|
avContextmenu(protyle, event, gutterElement);
|
|
|
|
|
event.preventDefault();
|
|
|
|
|
event.stopPropagation();
|
|
|
|
|
return true;
|
|
|
|
|
}
|
|
|
|
|
|
2023-06-10 17:56:45 +08:00
|
|
|
const checkElement = hasClosestByClassName(event.target, "av__firstcol");
|
|
|
|
|
if (checkElement) {
|
2023-06-30 23:57:11 +08:00
|
|
|
window.siyuan.menus.menu.remove();
|
|
|
|
|
const rowElement = checkElement.parentElement;
|
2023-07-01 17:06:28 +08:00
|
|
|
const useElement = checkElement.querySelector("use");
|
2023-06-30 23:57:11 +08:00
|
|
|
if (rowElement.classList.contains("av__row--header")) {
|
|
|
|
|
if ("#iconCheck" === useElement.getAttribute("xlink:href")) {
|
|
|
|
|
rowElement.parentElement.querySelectorAll(".av__firstcol").forEach(item => {
|
|
|
|
|
item.querySelector("use").setAttribute("xlink:href", "#iconUncheck");
|
|
|
|
|
item.parentElement.classList.remove("av__row--select");
|
2023-07-01 17:06:28 +08:00
|
|
|
});
|
2023-06-30 23:57:11 +08:00
|
|
|
} else {
|
|
|
|
|
rowElement.parentElement.querySelectorAll(".av__firstcol").forEach(item => {
|
|
|
|
|
item.querySelector("use").setAttribute("xlink:href", "#iconCheck");
|
|
|
|
|
item.parentElement.classList.add("av__row--select");
|
2023-07-01 17:06:28 +08:00
|
|
|
});
|
2023-06-30 23:57:11 +08:00
|
|
|
}
|
|
|
|
|
} else {
|
|
|
|
|
if (useElement.getAttribute("xlink:href") === "#iconUncheck") {
|
|
|
|
|
checkElement.parentElement.classList.add("av__row--select");
|
|
|
|
|
useElement.setAttribute("xlink:href", "#iconCheck");
|
|
|
|
|
} else {
|
|
|
|
|
checkElement.parentElement.classList.remove("av__row--select");
|
|
|
|
|
useElement.setAttribute("xlink:href", "#iconUncheck");
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
updateHeader(rowElement);
|
2023-06-10 17:56:45 +08:00
|
|
|
event.preventDefault();
|
|
|
|
|
event.stopPropagation();
|
|
|
|
|
return true;
|
|
|
|
|
}
|
|
|
|
|
|
2023-07-02 23:58:00 +08:00
|
|
|
const headerMoreElement = hasClosestByAttribute(event.target, "data-type", "av-header-more");
|
2023-07-02 20:52:16 +08:00
|
|
|
if (headerMoreElement) {
|
2023-07-18 01:03:35 +08:00
|
|
|
openMenuPanel({protyle, blockElement, type: "properties"});
|
2023-07-02 20:52:16 +08:00
|
|
|
event.preventDefault();
|
|
|
|
|
event.stopPropagation();
|
|
|
|
|
return true;
|
|
|
|
|
}
|
|
|
|
|
|
2023-07-02 23:58:00 +08:00
|
|
|
const moreElement = hasClosestByAttribute(event.target, "data-type", "av-more");
|
2023-07-02 20:52:16 +08:00
|
|
|
if (moreElement) {
|
2023-07-18 01:03:35 +08:00
|
|
|
openMenuPanel({protyle, blockElement, type: "config"});
|
2023-07-02 20:52:16 +08:00
|
|
|
event.preventDefault();
|
|
|
|
|
event.stopPropagation();
|
|
|
|
|
return true;
|
|
|
|
|
}
|
2023-07-03 12:25:02 +08:00
|
|
|
|
|
|
|
|
const sortsElement = hasClosestByAttribute(event.target, "data-type", "av-sort");
|
|
|
|
|
if (sortsElement) {
|
2023-07-18 01:03:35 +08:00
|
|
|
openMenuPanel({protyle, blockElement, type: "sorts"});
|
2023-07-03 12:25:02 +08:00
|
|
|
event.preventDefault();
|
2023-07-06 18:56:16 +08:00
|
|
|
event.stopPropagation();
|
|
|
|
|
return true;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
const filtersElement = hasClosestByAttribute(event.target, "data-type", "av-filter");
|
|
|
|
|
if (filtersElement) {
|
2023-07-18 01:03:35 +08:00
|
|
|
openMenuPanel({protyle, blockElement, type: "filters"});
|
2023-07-06 18:56:16 +08:00
|
|
|
event.preventDefault();
|
2023-07-03 12:25:02 +08:00
|
|
|
event.stopPropagation();
|
|
|
|
|
return true;
|
|
|
|
|
}
|
|
|
|
|
|
2023-08-03 15:08:07 +08:00
|
|
|
const linkElement = hasClosestByClassName(event.target, "av__celltext--url");
|
|
|
|
|
if (linkElement) {
|
2023-09-22 20:40:28 +08:00
|
|
|
let linkAddress = linkElement.textContent.trim();
|
2023-08-09 22:55:34 +08:00
|
|
|
if (linkElement.dataset.type === "phone") {
|
2023-09-22 20:40:28 +08:00
|
|
|
linkAddress = "tel:" + linkAddress;
|
2023-08-09 22:55:34 +08:00
|
|
|
} else if (linkElement.dataset.type === "email") {
|
2023-09-22 20:40:28 +08:00
|
|
|
linkAddress = "mailto:" + linkAddress;
|
|
|
|
|
} else if (linkElement.classList.contains("b3-chip")) {
|
|
|
|
|
linkAddress = linkElement.dataset.url;
|
2023-08-09 22:55:34 +08:00
|
|
|
}
|
2023-10-11 17:28:40 +08:00
|
|
|
const suffix = pathPosix().extname(linkAddress);
|
|
|
|
|
if (isLocalPath(linkAddress) && !isMobile() && (
|
|
|
|
|
[".pdf"].concat(Constants.SIYUAN_ASSETS_AUDIO).concat(Constants.SIYUAN_ASSETS_VIDEO).includes(suffix) && (
|
|
|
|
|
suffix !== ".pdf" || (suffix === ".pdf" && !linkAddress.startsWith("file://"))
|
|
|
|
|
)
|
|
|
|
|
)) {
|
|
|
|
|
openAsset(protyle.app, linkAddress.trim(), parseInt(getSearch("page", linkAddress)), "right");
|
|
|
|
|
} else {
|
|
|
|
|
window.open(linkAddress);
|
|
|
|
|
}
|
2023-09-22 20:40:28 +08:00
|
|
|
event.preventDefault();
|
|
|
|
|
event.stopPropagation();
|
|
|
|
|
return true;
|
|
|
|
|
}
|
|
|
|
|
|
2023-09-22 20:49:47 +08:00
|
|
|
const imgElement = hasClosestByClassName(event.target, "av__cellassetimg") as HTMLImageElement;
|
2023-09-22 20:40:28 +08:00
|
|
|
if (imgElement) {
|
|
|
|
|
previewImage(imgElement.src);
|
2023-08-03 15:08:07 +08:00
|
|
|
event.preventDefault();
|
|
|
|
|
event.stopPropagation();
|
|
|
|
|
return true;
|
|
|
|
|
}
|
|
|
|
|
|
2023-07-02 23:58:00 +08:00
|
|
|
const cellHeaderElement = hasClosestByClassName(event.target, "av__cellheader");
|
|
|
|
|
if (cellHeaderElement) {
|
2023-07-07 11:12:49 +08:00
|
|
|
showColMenu(protyle, blockElement, cellHeaderElement.parentElement);
|
2023-07-02 23:58:00 +08:00
|
|
|
event.preventDefault();
|
|
|
|
|
event.stopPropagation();
|
|
|
|
|
return true;
|
|
|
|
|
}
|
2023-07-03 12:25:02 +08:00
|
|
|
|
2023-09-28 11:29:58 +08:00
|
|
|
const blockMoreElement = hasClosestByAttribute(event.target, "data-type", "block-more");
|
|
|
|
|
if (blockMoreElement) {
|
|
|
|
|
protyle.toolbar.range = document.createRange();
|
|
|
|
|
protyle.toolbar.range.selectNodeContents(blockMoreElement);
|
|
|
|
|
focusByRange(protyle.toolbar.range);
|
|
|
|
|
hintRef(blockMoreElement.previousElementSibling.textContent.trim(), protyle, "av");
|
2023-09-27 23:58:48 +08:00
|
|
|
event.preventDefault();
|
|
|
|
|
event.stopPropagation();
|
|
|
|
|
return true;
|
|
|
|
|
}
|
|
|
|
|
|
2023-06-08 22:56:52 +08:00
|
|
|
const cellElement = hasClosestByClassName(event.target, "av__cell");
|
2023-07-02 23:58:00 +08:00
|
|
|
if (cellElement && !cellElement.parentElement.classList.contains("av__row--header")) {
|
2023-07-17 19:55:46 +08:00
|
|
|
cellElement.parentElement.parentElement.querySelectorAll(".av__row--select").forEach(item => {
|
|
|
|
|
item.querySelector(".av__firstcol use").setAttribute("xlink:href", "#iconUncheck");
|
|
|
|
|
item.classList.remove("av__row--select");
|
|
|
|
|
});
|
2023-07-17 12:54:24 +08:00
|
|
|
popTextCell(protyle, [cellElement]);
|
2023-07-02 23:58:00 +08:00
|
|
|
event.preventDefault();
|
|
|
|
|
event.stopPropagation();
|
2023-06-08 22:56:52 +08:00
|
|
|
return true;
|
2023-06-08 19:21:33 +08:00
|
|
|
}
|
2023-07-15 22:24:54 +08:00
|
|
|
|
|
|
|
|
const calcElement = hasClosestByClassName(event.target, "av__calc");
|
|
|
|
|
if (calcElement) {
|
|
|
|
|
openCalcMenu(protyle, calcElement);
|
|
|
|
|
event.preventDefault();
|
|
|
|
|
event.stopPropagation();
|
|
|
|
|
return true;
|
|
|
|
|
}
|
2023-07-28 17:33:35 +08:00
|
|
|
|
|
|
|
|
const addRowElement = hasClosestByClassName(event.target, "av__row--add");
|
|
|
|
|
if (addRowElement) {
|
2023-09-27 23:13:32 +08:00
|
|
|
const avID = blockElement.getAttribute("data-av-id");
|
2023-09-27 23:13:53 +08:00
|
|
|
const srcIDs = [Lute.NewNodeID()];
|
2023-09-27 23:58:48 +08:00
|
|
|
const previousID = addRowElement.previousElementSibling.getAttribute("data-id") || "";
|
2023-09-27 23:13:32 +08:00
|
|
|
transaction(protyle, [{
|
|
|
|
|
action: "insertAttrViewBlock",
|
|
|
|
|
avID,
|
|
|
|
|
previousID,
|
|
|
|
|
srcIDs,
|
|
|
|
|
isDetached: true,
|
|
|
|
|
}], [{
|
|
|
|
|
action: "removeAttrViewBlock",
|
|
|
|
|
srcIDs,
|
|
|
|
|
avID,
|
|
|
|
|
}]);
|
2023-09-28 00:33:00 +08:00
|
|
|
insertAttrViewBlockAnimation(blockElement, 1, previousID, avID);
|
|
|
|
|
popTextCell(protyle, [addRowElement.previousElementSibling.querySelector('[data-detached="true"]')], "block");
|
2023-07-28 17:33:35 +08:00
|
|
|
event.preventDefault();
|
|
|
|
|
event.stopPropagation();
|
|
|
|
|
return true;
|
|
|
|
|
}
|
2023-09-27 23:34:07 +08:00
|
|
|
|
2023-06-08 22:56:52 +08:00
|
|
|
return false;
|
|
|
|
|
};
|
2023-06-10 11:26:56 +08:00
|
|
|
|
|
|
|
|
export const avContextmenu = (protyle: IProtyle, event: MouseEvent & { detail: any }, target: HTMLElement) => {
|
|
|
|
|
const rowElement = hasClosestByClassName(target, "av__row");
|
2023-06-10 11:59:12 +08:00
|
|
|
if (!rowElement) {
|
|
|
|
|
return false;
|
|
|
|
|
}
|
2023-06-30 10:26:48 +08:00
|
|
|
if (rowElement.classList.contains("av__row--header")) {
|
2023-07-01 17:06:28 +08:00
|
|
|
return false;
|
2023-06-30 10:26:48 +08:00
|
|
|
}
|
2023-06-10 11:59:12 +08:00
|
|
|
const blockElement = hasClosestBlock(rowElement);
|
|
|
|
|
if (!blockElement) {
|
|
|
|
|
return false;
|
|
|
|
|
}
|
2023-06-10 17:56:45 +08:00
|
|
|
event.preventDefault();
|
|
|
|
|
event.stopPropagation();
|
|
|
|
|
|
2023-06-30 23:57:11 +08:00
|
|
|
if (!rowElement.classList.contains("av__row--select")) {
|
|
|
|
|
blockElement.querySelectorAll(".av__row--select").forEach(item => {
|
|
|
|
|
item.classList.remove("av__row--select");
|
|
|
|
|
});
|
|
|
|
|
blockElement.querySelectorAll(".av__firstcol use").forEach(item => {
|
|
|
|
|
item.setAttribute("xlink:href", "#iconUncheck");
|
|
|
|
|
});
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
const menu = new Menu("av-row-menu");
|
2023-06-10 17:56:45 +08:00
|
|
|
if (menu.isOpen) {
|
2023-06-11 22:58:48 +08:00
|
|
|
return true;
|
2023-06-10 17:56:45 +08:00
|
|
|
}
|
|
|
|
|
rowElement.classList.add("av__row--select");
|
2023-06-30 23:57:11 +08:00
|
|
|
rowElement.querySelector(".av__firstcol use").setAttribute("xlink:href", "#iconCheck");
|
|
|
|
|
const rowIds: string[] = [];
|
|
|
|
|
const blockIds: string[] = [];
|
2023-08-02 00:18:31 +08:00
|
|
|
const rowElements = blockElement.querySelectorAll(".av__row--select:not(.av__row--header)");
|
|
|
|
|
rowElements.forEach(item => {
|
2023-06-30 23:57:11 +08:00
|
|
|
rowIds.push(item.getAttribute("data-id"));
|
|
|
|
|
blockIds.push(item.querySelector(".av__cell").getAttribute("data-block-id"));
|
2023-06-10 11:59:12 +08:00
|
|
|
});
|
2023-06-30 23:57:11 +08:00
|
|
|
updateHeader(rowElement);
|
2023-06-10 11:59:12 +08:00
|
|
|
menu.addItem({
|
|
|
|
|
icon: "iconTrashcan",
|
|
|
|
|
label: window.siyuan.languages.delete,
|
|
|
|
|
click() {
|
2023-08-02 00:18:31 +08:00
|
|
|
const previousElement = rowElements[0].previousElementSibling as HTMLElement;
|
2023-06-10 11:59:12 +08:00
|
|
|
transaction(protyle, [{
|
|
|
|
|
action: "removeAttrViewBlock",
|
2023-06-30 23:57:11 +08:00
|
|
|
srcIDs: blockIds,
|
2023-07-12 00:07:16 +08:00
|
|
|
avID: blockElement.getAttribute("data-av-id"),
|
2023-06-10 11:59:12 +08:00
|
|
|
}], [{
|
|
|
|
|
action: "insertAttrViewBlock",
|
2023-07-12 00:07:16 +08:00
|
|
|
avID: blockElement.getAttribute("data-av-id"),
|
2023-08-01 22:09:07 +08:00
|
|
|
previousID: previousElement?.getAttribute("data-id") || "",
|
2023-06-30 23:57:11 +08:00
|
|
|
srcIDs: rowIds,
|
2023-06-10 11:59:12 +08:00
|
|
|
}]);
|
2023-08-02 00:18:31 +08:00
|
|
|
rowElements.forEach(item => {
|
|
|
|
|
item.remove();
|
|
|
|
|
});
|
2023-08-01 22:09:07 +08:00
|
|
|
updateHeader(previousElement);
|
2023-06-10 11:59:12 +08:00
|
|
|
}
|
|
|
|
|
});
|
2023-06-30 23:57:11 +08:00
|
|
|
if (rowIds.length === 1) {
|
|
|
|
|
menu.addSeparator();
|
|
|
|
|
openEditorTab(protyle.app, rowIds[0]);
|
|
|
|
|
menu.addItem({
|
|
|
|
|
label: window.siyuan.languages.copy,
|
|
|
|
|
icon: "iconCopy",
|
|
|
|
|
type: "submenu",
|
|
|
|
|
submenu: copySubMenu(rowIds[0])
|
|
|
|
|
});
|
|
|
|
|
}
|
|
|
|
|
menu.addSeparator();
|
2023-06-10 17:45:04 +08:00
|
|
|
const editAttrSubmenu: IMenu[] = [];
|
2023-07-16 23:19:58 +08:00
|
|
|
rowElement.parentElement.querySelectorAll(".av__row--header .av__cell").forEach((cellElement: HTMLElement) => {
|
2023-10-10 16:15:24 +08:00
|
|
|
let hideBlock = false;
|
|
|
|
|
const selectElements: HTMLElement[] = Array.from(blockElement.querySelectorAll(`.av__row--select:not(.av__row--header) .av__cell[data-col-id="${cellElement.dataset.colId}"]`));
|
2023-10-08 09:38:39 +08:00
|
|
|
if (cellElement.dataset.dtype === "block") {
|
|
|
|
|
selectElements.find(item => {
|
|
|
|
|
if (!item.dataset.detached) {
|
|
|
|
|
hideBlock = true;
|
|
|
|
|
return true;
|
|
|
|
|
}
|
2023-10-10 16:15:24 +08:00
|
|
|
});
|
2023-10-08 09:38:39 +08:00
|
|
|
}
|
|
|
|
|
if (!hideBlock) {
|
|
|
|
|
editAttrSubmenu.push({
|
|
|
|
|
icon: getColIconByType(cellElement.getAttribute("data-dtype") as TAVCol),
|
|
|
|
|
label: cellElement.textContent.trim(),
|
|
|
|
|
click() {
|
|
|
|
|
popTextCell(protyle, selectElements);
|
|
|
|
|
}
|
|
|
|
|
});
|
|
|
|
|
}
|
2023-06-10 11:59:12 +08:00
|
|
|
});
|
|
|
|
|
menu.addItem({
|
2023-09-09 17:00:51 +08:00
|
|
|
icon: "iconAttr",
|
2023-06-10 11:59:12 +08:00
|
|
|
label: window.siyuan.languages.attr,
|
|
|
|
|
type: "submenu",
|
|
|
|
|
submenu: editAttrSubmenu
|
2023-06-10 17:45:04 +08:00
|
|
|
});
|
2023-06-29 18:56:46 +08:00
|
|
|
if (protyle?.app?.plugins) {
|
|
|
|
|
emitOpenMenu({
|
|
|
|
|
plugins: protyle.app.plugins,
|
|
|
|
|
type: "open-menu-av",
|
|
|
|
|
detail: {
|
|
|
|
|
protyle,
|
|
|
|
|
element: hasClosestByClassName(target, "av__cell"),
|
|
|
|
|
},
|
|
|
|
|
separatorPosition: "top",
|
|
|
|
|
});
|
|
|
|
|
}
|
2023-06-10 11:59:12 +08:00
|
|
|
menu.open({
|
|
|
|
|
x: event.clientX,
|
|
|
|
|
y: event.clientY,
|
|
|
|
|
});
|
|
|
|
|
return true;
|
2023-06-10 17:45:04 +08:00
|
|
|
};
|
2023-07-03 23:02:19 +08:00
|
|
|
|
|
|
|
|
export const updateAVName = (protyle: IProtyle, blockElement: Element) => {
|
|
|
|
|
const avId = blockElement.getAttribute("data-av-id");
|
|
|
|
|
const nameElement = blockElement.querySelector(".av__title") as HTMLElement;
|
|
|
|
|
if (nameElement.textContent.trim() === nameElement.dataset.title.trim()) {
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
transaction(protyle, [{
|
2023-07-11 22:48:48 +08:00
|
|
|
action: "setAttrViewName",
|
2023-07-03 23:02:19 +08:00
|
|
|
id: avId,
|
2023-07-16 23:19:58 +08:00
|
|
|
data: nameElement.textContent.trim(),
|
2023-07-03 23:02:19 +08:00
|
|
|
}], [{
|
2023-07-11 22:48:48 +08:00
|
|
|
action: "setAttrViewName",
|
2023-07-03 23:02:19 +08:00
|
|
|
id: avId,
|
2023-07-11 22:48:48 +08:00
|
|
|
name: nameElement.dataset.title,
|
2023-07-04 09:20:55 +08:00
|
|
|
}]);
|
2023-07-03 23:02:19 +08:00
|
|
|
nameElement.dataset.title = nameElement.textContent.trim();
|
2023-07-04 09:20:55 +08:00
|
|
|
};
|
2023-09-21 09:31:54 +08:00
|
|
|
|
2023-09-21 10:54:17 +08:00
|
|
|
export const updateAttrViewCellAnimation = (cellElement: HTMLElement) => {
|
2023-09-21 10:54:41 +08:00
|
|
|
cellElement.style.opacity = "0.38";
|
2023-09-21 10:54:17 +08:00
|
|
|
cellElement.style.backgroundColor = "var(--b3-theme-surface-light)";
|
2023-09-21 10:54:41 +08:00
|
|
|
};
|
2023-09-21 10:54:17 +08:00
|
|
|
|
|
|
|
|
export const removeAttrViewColAnimation = (blockElement: Element, id: string) => {
|
|
|
|
|
blockElement.querySelectorAll(`.av__cell[data-col-id="${id}"]`).forEach(item => {
|
|
|
|
|
item.remove();
|
2023-09-21 10:54:41 +08:00
|
|
|
});
|
|
|
|
|
};
|
2023-09-21 10:54:17 +08:00
|
|
|
|
2023-10-04 20:11:33 +08:00
|
|
|
export const insertAttrViewBlockAnimation = (blockElement: Element, size: number, previousId: string, avId?: string) => {
|
2023-09-21 10:54:41 +08:00
|
|
|
const previousElement = blockElement.querySelector(`.av__row[data-id="${previousId}"]`) || blockElement.querySelector(".av__row--header");
|
|
|
|
|
let colHTML = "";
|
2023-09-21 09:31:54 +08:00
|
|
|
previousElement.querySelectorAll(".av__cell").forEach((item: HTMLElement) => {
|
2023-09-28 00:33:00 +08:00
|
|
|
colHTML += `<div class="av__cell" style="width: ${item.style.width}" ${item.getAttribute("data-block-id") ? ' data-detached="true"' : ""}><span class="av__pulse"></span></div>`;
|
2023-09-21 10:54:41 +08:00
|
|
|
});
|
2023-09-21 09:31:54 +08:00
|
|
|
|
2023-09-21 10:54:41 +08:00
|
|
|
let html = "";
|
2023-09-21 09:31:54 +08:00
|
|
|
new Array(size).fill(1).forEach(() => {
|
2023-09-28 00:33:00 +08:00
|
|
|
html += `<div class="av__row" data-avid="${avId}">
|
2023-09-25 21:04:07 +08:00
|
|
|
<div style="width: 24px"></div>
|
2023-09-21 09:31:54 +08:00
|
|
|
${colHTML}
|
2023-09-21 10:54:41 +08:00
|
|
|
</div>`;
|
|
|
|
|
});
|
|
|
|
|
previousElement.insertAdjacentHTML("afterend", html);
|
|
|
|
|
};
|