mirror of
https://github.com/siyuan-note/siyuan.git
synced 2025-05-10 22:23:28 +08:00
88 lines
3.7 KiB
TypeScript
88 lines
3.7 KiB
TypeScript
import {fetchPost} from "../../../util/fetch";
|
|
|
|
export const getIconByType = (type: string) => {
|
|
switch (type) {
|
|
case "text":
|
|
return "iconAlignLeft";
|
|
case "block":
|
|
return "iconParagraph";
|
|
}
|
|
};
|
|
|
|
export const avRender = (element: Element) => {
|
|
let avElements: Element[] = [];
|
|
if (element.getAttribute("data-type") === "NodeAttributeView") {
|
|
// 编辑器内代码块编辑渲染
|
|
avElements = [element];
|
|
} else {
|
|
avElements = Array.from(element.querySelectorAll('[data-type="NodeAttributeView"]'));
|
|
}
|
|
if (avElements.length === 0) {
|
|
return;
|
|
}
|
|
if (avElements.length > 0) {
|
|
avElements.forEach((e: HTMLElement) => {
|
|
if (e.getAttribute("data-render") === "true") {
|
|
return;
|
|
}
|
|
fetchPost("/api/av/renderAttributeView", {id: e.getAttribute("data-av-id")}, (response) => {
|
|
const data = response.data.av;
|
|
this.data = data;
|
|
// header
|
|
let tableHTML = '<div class="av__row av__row--header"><div class="av__firstcol"><input style="margin-top: 14px" type="checkbox"></div>';
|
|
data.columns.forEach((column: IAVColumn) => {
|
|
if (column.hidden) {
|
|
return;
|
|
}
|
|
tableHTML += `<div class="av__cell" data-id="${column.id}" data-dtype="${column.type}" data-wrap="${column.wrap}" style="width: ${column.width || 200}px;">
|
|
<svg><use xlink:href="#${column.icon || getIconByType(column.type)}"></use></svg>
|
|
<span>${column.name}</span>
|
|
</div>`;
|
|
});
|
|
tableHTML += `<div class="block__icons">
|
|
<div class="block__icon block__icon--show" data-type="av-header-add"><svg><use xlink:href="#iconAdd"></use></svg></div>
|
|
<div class="fn__space"></div>
|
|
<div class="block__icon block__icon--show" data-type="av-header-more"><svg><use xlink:href="#iconMore"></use></svg></div>
|
|
</div>
|
|
</div>`;
|
|
|
|
// body
|
|
data.rows.forEach((row: IAVRow) => {
|
|
tableHTML += `<div class="av__row" data-id="${row.id}"><div class="av__firstcol"><input type="checkbox"></div>`;
|
|
row.cells.forEach((cell, index) => {
|
|
tableHTML += `<div class="av__cell" style="width: ${data.columns[index].width || 200}px;background-color: ${cell.bgColor || ""};color: ${cell.color || ""}">${cell.value}</div>`;
|
|
});
|
|
tableHTML += "<div></div></div>";
|
|
});
|
|
const paddingLeft = e.parentElement.style.paddingLeft;
|
|
const paddingRight = e.parentElement.style.paddingRight;
|
|
// 10: ::-webkit-scrollbar width
|
|
e.style.width = (e.parentElement.clientWidth - 10) + "px";
|
|
e.style.alignSelf = "center";
|
|
e.firstElementChild.outerHTML = `<div>
|
|
<div style="padding-left: ${paddingLeft};padding-right: ${paddingRight}">
|
|
<div>
|
|
<div>tab1</div>
|
|
</div>
|
|
<div contenteditable="true">
|
|
${data.title}
|
|
</div>
|
|
</div>
|
|
<div class="av__scroll">
|
|
<div style="padding-left: ${paddingLeft};padding-right: ${paddingRight};float: left;">
|
|
${tableHTML}
|
|
<div class="block__icon block__icon--show">
|
|
<div class="fn__space"></div>
|
|
<svg><use xlink:href="#iconAdd"></use></svg><span class="fn__space"></span>
|
|
${window.siyuan.languages.addAttr}
|
|
</div>
|
|
<div class="av__row--footer">Calculate</div>
|
|
</div>
|
|
</div>
|
|
</div>`;
|
|
e.setAttribute("data-render", "true");
|
|
});
|
|
});
|
|
}
|
|
};
|