This commit is contained in:
Vanessa 2023-09-26 10:33:33 +08:00
parent 56d12a2009
commit 4d908e62bd
9 changed files with 14 additions and 17 deletions

View file

@ -115,7 +115,7 @@ export const updateAssetCell = (options: {
const colId = options.cellElements[0].dataset.colId;
const cellDoOperations: IOperation[] = [];
const cellUndoOperations: IOperation[] = [];
let newValue: IAVCellAssetValue[] = []
let newValue: IAVCellAssetValue[] = [];
options.cellElements.forEach((item, elementIndex) => {
let cellData: IAVCell;
const rowID = item.parentElement.dataset.id;
@ -197,7 +197,7 @@ export const updateAssetCell = (options: {
}
});
if (item.classList.contains("custom-attr__avvalue")) {
item.innerHTML = genAVValueHTML(cellData.value)
item.innerHTML = genAVValueHTML(cellData.value);
} else {
updateAttrViewCellAnimation(item);
}

View file

@ -2,8 +2,6 @@ import {fetchPost} from "../../../util/fetch";
import {getColIconByType} from "./col";
import {escapeAttr} from "../../../util/escape";
import {hasClosestByAttribute} from "../../util/hasClosest";
import {Menu} from "../../../plugin/Menu";
import {Constants} from "../../../constants";
import * as dayjs from "dayjs";
import {popTextCell} from "./cell";

View file

@ -232,7 +232,7 @@ export const openMenuPanel = (options: {
}
if (type === "assets") {
if (isTop) {
targetElement.before(sourceElement)
targetElement.before(sourceElement);
} else {
targetElement.after(sourceElement);
}
@ -243,9 +243,9 @@ export const openMenuPanel = (options: {
content: item.dataset.content,
name: item.dataset.name,
type: item.dataset.type as "image" | "file",
})
});
}
})
});
updateAssetCell({
protyle: options.protyle,
data,

View file

@ -52,7 +52,7 @@ export const removeCellOption = (protyle: IProtyle, data: IAV, cellElements: HTM
const colId = cellElements[0].dataset.colId;
const doOperations: IOperation[] = [];
const undoOperations: IOperation[] = [];
let newData: IAVCellSelectValue[]
let newData: IAVCellSelectValue[];
cellElements.forEach((item, elementIndex) => {
const rowID = item.parentElement.dataset.id;
const cellId = item.dataset.id;
@ -434,7 +434,7 @@ export const addColOptionOrCell = (protyle: IProtyle, data: IAV, cellElements: H
const cellDoOperations: IOperation[] = [];
const cellUndoOperations: IOperation[] = [];
let newValue: IAVCellSelectValue[]
let newValue: IAVCellSelectValue[];
cellElements.forEach((item, index) => {
let cellData: IAVCell;
const rowID = item.parentElement.dataset.id;
@ -474,7 +474,7 @@ export const addColOptionOrCell = (protyle: IProtyle, data: IAV, cellElements: H
content: currentElement.dataset.name
});
}
newValue = cellData.value.mSelect
newValue = cellData.value.mSelect;
} else {
cellData.value.mSelect = newValue;
}