Vanessa 2023-10-13 23:06:53 +08:00
parent a11ea9c347
commit f95084e96a
2 changed files with 13 additions and 0 deletions

View File

@ -20,6 +20,7 @@ import {openAsset} from "../../../editor/util";
import {getSearch, isMobile} from "../../../util/functions";
import {unicode2Emoji} from "../../../emoji";
import {selectRow} from "./row";
import * as dayjs from "dayjs";
export const avClick = (protyle: IProtyle, event: MouseEvent & { target: HTMLElement }) => {
const blockElement = hasClosestBlock(event.target);
@ -330,19 +331,30 @@ export const avContextmenu = (protyle: IProtyle, rowElement: HTMLElement, positi
export const updateAVName = (protyle: IProtyle, blockElement: Element) => {
const avId = blockElement.getAttribute("data-av-id");
const id = blockElement.getAttribute("data-node-id");
const nameElement = blockElement.querySelector(".av__title") as HTMLElement;
const newData = nameElement.textContent.trim();
if (newData === nameElement.dataset.title.trim()) {
return;
}
const newUpdated = dayjs().format("YYYYMMDDHHmmss")
blockElement.setAttribute("updated", newUpdated);
transaction(protyle, [{
action: "setAttrViewName",
id: avId,
data: newData,
}, {
action: "doUpdateUpdated",
id,
data: newUpdated,
}], [{
action: "setAttrViewName",
id: avId,
name: nameElement.dataset.title,
}, {
action: "doUpdateUpdated",
id,
data: blockElement.getAttribute("updated")
}]);
nameElement.dataset.title = newData;
};

View File

@ -34,6 +34,7 @@ type TOperation =
| "removeAttrViewColOption"
| "updateAttrViewColOption"
| "setAttrViewName"
| "doUpdateUpdated"
| "setAttrViewColIcon"
| "setAttrViewFilters"
| "setAttrViewSorts"