mirror of
https://github.com/siyuan-note/siyuan.git
synced 2026-03-11 23:22:33 +01:00
This commit is contained in:
parent
2a6597f388
commit
67574984d0
6 changed files with 299 additions and 36 deletions
185
app/src/protyle/render/av/asset.ts
Normal file
185
app/src/protyle/render/av/asset.ts
Normal file
|
|
@ -0,0 +1,185 @@
|
|||
import {Menu} from "../../../plugin/Menu";
|
||||
import {transaction} from "../../wysiwyg/transaction";
|
||||
import {updateAttrViewCellAnimation} from "./action";
|
||||
import {isMobile} from "../../../util/functions";
|
||||
import {Constants} from "../../../constants";
|
||||
import {uploadFiles} from "../../upload";
|
||||
import {pathPosix} from "../../../util/pathName";
|
||||
|
||||
|
||||
export const bindAssetEvent = (options: {
|
||||
protyle: IProtyle,
|
||||
data: IAV,
|
||||
menuElement: HTMLElement,
|
||||
cellElements: HTMLElement[]
|
||||
}) => {
|
||||
options.menuElement.querySelector("input").addEventListener("change", (event: InputEvent & {
|
||||
target: HTMLInputElement
|
||||
}) => {
|
||||
if (event.target.files.length === 0) {
|
||||
return;
|
||||
}
|
||||
uploadFiles(options.protyle, event.target.files, event.target, (res) => {
|
||||
const resData = JSON.parse(res)
|
||||
const value: IAVCellAssetValue[] = []
|
||||
Object.keys(resData.data.succMap).forEach((key) => {
|
||||
value.push({
|
||||
name: key,
|
||||
content: resData.data.succMap[key],
|
||||
type: Constants.SIYUAN_ASSETS_IMAGE.includes(pathPosix().extname(resData.data.succMap[key]).toLowerCase()) ? "image" : "file"
|
||||
})
|
||||
})
|
||||
updateAssetCell({
|
||||
protyle: options.protyle,
|
||||
data: options.data,
|
||||
cellElements: options.cellElements,
|
||||
value
|
||||
})
|
||||
});
|
||||
});
|
||||
};
|
||||
|
||||
export const getAssetHTML = (data: IAVTable, cellElements: HTMLElement[]) => {
|
||||
const cellId = cellElements[0].dataset.id;
|
||||
const rowId = cellElements[0].parentElement.dataset.id;
|
||||
let cellData: IAVCell
|
||||
data.rows.find(row => {
|
||||
if (row.id === rowId) {
|
||||
row.cells.find(cell => {
|
||||
if (cell.id === cellId) {
|
||||
cellData = cell
|
||||
return true
|
||||
}
|
||||
})
|
||||
return true
|
||||
}
|
||||
})
|
||||
let html = ""
|
||||
if (cellData?.value?.mAsset) {
|
||||
cellData.value.mAsset.forEach(item => {
|
||||
if (!item.content) {
|
||||
return
|
||||
}
|
||||
let contentHTML
|
||||
if (item.type === "image") {
|
||||
contentHTML = `<img style="max-height: 180px;max-width: 360px;border-radius: var(--b3-border-radius);margin: 4px 0;" src="${item.content}"/>`
|
||||
} else {
|
||||
contentHTML = `<span class="fn__ellipsis b3-menu__label" style="max-width: 360px">${item.name}</span>`
|
||||
}
|
||||
|
||||
html += `<button data-type="addColOptionOrCell" class="b3-menu__item" draggable="true">
|
||||
<svg class="b3-menu__icon"><use xlink:href="#iconDrag"></use></svg>
|
||||
${contentHTML}
|
||||
<svg class="b3-menu__action" data-type="setColOption"><use xlink:href="#iconEdit"></use></svg>
|
||||
</button>`
|
||||
})
|
||||
}
|
||||
return `<div class="b3-menu__items">
|
||||
${html}
|
||||
<button class="b3-menu__item">
|
||||
<svg class="b3-menu__icon"><use xlink:href="#iconDownload"></use></svg>
|
||||
<span class="b3-menu__label">${window.siyuan.languages.insertAsset}</span>
|
||||
<input multiple class="b3-form__upload" type="file">
|
||||
</button>
|
||||
<button data-type="addAssetLink" class="b3-menu__item">
|
||||
<svg class="b3-menu__icon"><use xlink:href="#iconLink"></use></svg>
|
||||
<span class="b3-menu__label">${window.siyuan.languages.link}</span>
|
||||
</button>
|
||||
</div>`;
|
||||
};
|
||||
|
||||
const updateAssetCell = (options: {
|
||||
protyle: IProtyle,
|
||||
data: IAV,
|
||||
cellElements: HTMLElement[],
|
||||
value: IAVCellAssetValue[]
|
||||
}) => {
|
||||
if (!options.value || options.value.length === 0 || !options.value[0].content) {
|
||||
return;
|
||||
}
|
||||
let cellIndex = 0;
|
||||
Array.from(options.cellElements[0].parentElement.querySelectorAll(".av__cell")).find((item: HTMLElement, index) => {
|
||||
if (item.dataset.id === options.cellElements[0].dataset.id) {
|
||||
cellIndex = index;
|
||||
return true;
|
||||
}
|
||||
});
|
||||
|
||||
const colId = options.cellElements[0].dataset.colId;
|
||||
const cellDoOperations: IOperation[] = [];
|
||||
const cellUndoOperations: IOperation[] = [];
|
||||
options.cellElements.forEach(item => {
|
||||
let cellData: IAVCell;
|
||||
const rowID = item.parentElement.dataset.id;
|
||||
options.data.view.rows.find(row => {
|
||||
if (row.id === rowID) {
|
||||
cellData = row.cells[cellIndex];
|
||||
// 为空时 cellId 每次请求都不一致
|
||||
cellData.id = item.dataset.id;
|
||||
if (!cellData.value || !cellData.value.mAsset) {
|
||||
cellData.value = {mAsset: []} as IAVCellValue;
|
||||
}
|
||||
return true;
|
||||
}
|
||||
});
|
||||
const oldValue = Object.assign([], cellData.value.mAsset);
|
||||
options.value.forEach(item => {
|
||||
cellData.value.mAsset.push(item);
|
||||
})
|
||||
cellDoOperations.push({
|
||||
action: "updateAttrViewCell",
|
||||
id: cellData.id,
|
||||
keyID: colId,
|
||||
rowID,
|
||||
avID: options.data.id,
|
||||
data: cellData.value
|
||||
});
|
||||
cellUndoOperations.push({
|
||||
action: "updateAttrViewCell",
|
||||
id: cellData.id,
|
||||
keyID: colId,
|
||||
rowID,
|
||||
avID: options.data.id,
|
||||
data: {
|
||||
mAsset: oldValue
|
||||
}
|
||||
});
|
||||
updateAttrViewCellAnimation(item);
|
||||
});
|
||||
transaction(options.protyle, cellDoOperations, cellUndoOperations);
|
||||
}
|
||||
|
||||
export const addAssetLink = (protyle: IProtyle, data: IAV, cellElements: HTMLElement[], target: HTMLElement) => {
|
||||
const menu = new Menu("av-asset-link", () => {
|
||||
const textElements = menu.element.querySelectorAll("textarea")
|
||||
if (!textElements[0].value) {
|
||||
return
|
||||
}
|
||||
updateAssetCell({
|
||||
protyle,
|
||||
data,
|
||||
cellElements,
|
||||
value: [{
|
||||
type: "file",
|
||||
name: textElements[1].value,
|
||||
content: textElements[0].value,
|
||||
}]
|
||||
})
|
||||
})
|
||||
|
||||
menu.addItem({
|
||||
iconHTML: "",
|
||||
label: `<textarea rows="1" style="margin:4px 0;width: ${isMobile() ? "200" : "360"}px" class="b3-text-field" placeholder="${window.siyuan.languages.link}"></textarea>`,
|
||||
});
|
||||
menu.addItem({
|
||||
iconHTML: "",
|
||||
label: `<textarea rows="1" style="margin:4px 0;width: ${isMobile() ? "200" : "360"}px" class="b3-text-field" placeholder="${window.siyuan.languages.title}"></textarea>`,
|
||||
});
|
||||
const rect = target.getBoundingClientRect();
|
||||
menu.open({
|
||||
x: rect.right,
|
||||
y: rect.bottom,
|
||||
w: rect.width,
|
||||
h: rect.height,
|
||||
});
|
||||
}
|
||||
|
|
@ -356,6 +356,9 @@ export const popTextCell = (protyle: IProtyle, cellElements: HTMLElement[]) => {
|
|||
} else if (["select", "mSelect"].includes(type) && blockElement) {
|
||||
openMenuPanel({protyle, blockElement, type: "select", cellElements});
|
||||
return;
|
||||
} else if (type === "mAsset" && blockElement) {
|
||||
openMenuPanel({protyle, blockElement, type: "asset", cellElements});
|
||||
return;
|
||||
} else if (type === "date" && blockElement) {
|
||||
openMenuPanel({protyle, blockElement, type: "date", cellElements});
|
||||
return;
|
||||
|
|
|
|||
|
|
@ -10,11 +10,12 @@ import {addSort, bindSortsEvent, getSortsHTML} from "./sort";
|
|||
import {bindDateEvent, getDateHTML, setDateValue} from "./date";
|
||||
import {formatNumber} from "./number";
|
||||
import {removeAttrViewColAnimation} from "./action";
|
||||
import {addAssetLink, bindAssetEvent, getAssetHTML} from "./asset";
|
||||
|
||||
export const openMenuPanel = (options: {
|
||||
protyle: IProtyle,
|
||||
blockElement: Element,
|
||||
type: "select" | "properties" | "config" | "sorts" | "filters" | "edit" | "date",
|
||||
type: "select" | "properties" | "config" | "sorts" | "filters" | "edit" | "date" | "asset",
|
||||
colId?: string, // for edit
|
||||
cellElements?: HTMLElement[] // for select & date
|
||||
}) => {
|
||||
|
|
@ -42,6 +43,8 @@ export const openMenuPanel = (options: {
|
|||
html = getFiltersHTML(data.view);
|
||||
} else if (options.type === "select") {
|
||||
html = getSelectHTML(data.view, options.cellElements);
|
||||
} else if (options.type === "asset") {
|
||||
html = getAssetHTML(data.view, options.cellElements);
|
||||
} else if (options.type === "edit") {
|
||||
html = getEditHTML({protyle: options.protyle, data, colId: options.colId});
|
||||
} else if (options.type === "date") {
|
||||
|
|
@ -55,20 +58,21 @@ export const openMenuPanel = (options: {
|
|||
avPanelElement = document.querySelector(".av__panel");
|
||||
const menuElement = avPanelElement.lastElementChild as HTMLElement;
|
||||
const tabRect = options.blockElement.querySelector(".layout-tab-bar").getBoundingClientRect();
|
||||
if (options.type === "select") {
|
||||
if (["select", "date", "asset"].includes(options.type)) {
|
||||
const cellRect = options.cellElements[options.cellElements.length - 1].getBoundingClientRect();
|
||||
setPosition(menuElement, cellRect.left, cellRect.bottom, cellRect.height);
|
||||
bindSelectEvent(options.protyle, data, menuElement, options.cellElements);
|
||||
const inputElement = menuElement.querySelector("input");
|
||||
inputElement.select();
|
||||
inputElement.focus();
|
||||
} else if (options.type === "date") {
|
||||
const cellRect = options.cellElements[options.cellElements.length - 1].getBoundingClientRect();
|
||||
setPosition(menuElement, cellRect.left, cellRect.bottom, cellRect.height);
|
||||
bindDateEvent({protyle: options.protyle, data, menuElement, cellElements: options.cellElements});
|
||||
const inputElement = menuElement.querySelector("input");
|
||||
inputElement.select();
|
||||
inputElement.focus();
|
||||
if (options.type === "select") {
|
||||
bindSelectEvent(options.protyle, data, menuElement, options.cellElements);
|
||||
} else if (options.type === "date") {
|
||||
bindDateEvent({protyle: options.protyle, data, menuElement, cellElements: options.cellElements});
|
||||
} else if (options.type === "asset") {
|
||||
bindAssetEvent({protyle: options.protyle, data, menuElement, cellElements: options.cellElements});
|
||||
}
|
||||
if (["select", "date"].includes(options.type)) {
|
||||
const inputElement = menuElement.querySelector("input");
|
||||
inputElement.select();
|
||||
inputElement.focus();
|
||||
}
|
||||
} else {
|
||||
setPosition(menuElement, tabRect.right - menuElement.clientWidth, tabRect.bottom, tabRect.height);
|
||||
if (options.type === "sorts") {
|
||||
|
|
@ -630,6 +634,11 @@ export const openMenuPanel = (options: {
|
|||
event.preventDefault();
|
||||
event.stopPropagation();
|
||||
break;
|
||||
} else if (type === "addAssetLink") {
|
||||
addAssetLink(options.protyle, data, options.cellElements, target)
|
||||
event.preventDefault();
|
||||
event.stopPropagation();
|
||||
break;
|
||||
} else if (type === "clearDate") {
|
||||
setDateValue({
|
||||
cellElements: options.cellElements,
|
||||
|
|
|
|||
|
|
@ -101,7 +101,7 @@ style="width: ${column.width || "200px"}">${getCalcValue(column) || '<svg><use x
|
|||
} else if (cell.valueType === "mAsset") {
|
||||
cell.value?.mAsset?.forEach((item) => {
|
||||
if (item.type === "image") {
|
||||
text += `<span class="b3-chip b3-chip--middle" style="background-image:url("${item.content}")"></span>`;
|
||||
text += `<img class="av__cellassetimg" src="${item.content}">`;
|
||||
} else {
|
||||
text += `<span class="b3-chip b3-chip--middle" data-url="${item.content}">${item.name}</span>`;
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue