mirror of
https://github.com/siyuan-note/siyuan.git
synced 2025-12-19 16:10:12 +01:00
This commit is contained in:
parent
87f3047174
commit
4abc67c046
1 changed files with 7 additions and 3 deletions
|
|
@ -170,9 +170,10 @@ export const setDefRefCount = (data: {
|
|||
"rootRefCount": number,
|
||||
"rootID": string
|
||||
refIDs: string[]
|
||||
rootRefIDs: string[]
|
||||
}) => {
|
||||
getAllEditor().forEach(editor => {
|
||||
if (data.rootID === data.blockID && editor.protyle.block.rootID === data.rootID) {
|
||||
if (editor.protyle.block.rootID === data.rootID) {
|
||||
if (!editor.protyle.title) {
|
||||
return;
|
||||
}
|
||||
|
|
@ -183,13 +184,16 @@ export const setDefRefCount = (data: {
|
|||
countElement.remove();
|
||||
} else {
|
||||
countElement.textContent = data.rootRefCount.toString();
|
||||
countElement.setAttribute("data-id", JSON.stringify(data.refIDs));
|
||||
countElement.setAttribute("data-id", JSON.stringify(data.rootRefIDs));
|
||||
}
|
||||
} else if (data.rootRefCount > 0) {
|
||||
attrElement.insertAdjacentHTML("beforeend", `<div class="protyle-attr--refcount popover__block" data-defids="["${data.blockID}"]" data-id="${JSON.stringify(data.refIDs)}" style="">${data.rootRefCount}</div>`);
|
||||
attrElement.insertAdjacentHTML("beforeend", `<div class="protyle-attr--refcount popover__block" data-defids="["${data.rootID}"]" data-id="${JSON.stringify(data.rootRefIDs)}" style="">${data.rootRefCount}</div>`);
|
||||
}
|
||||
return;
|
||||
}
|
||||
if (data.rootID === data.blockID) {
|
||||
return;
|
||||
}
|
||||
// 不能对比 rootId,否则嵌入块中的锚文本无法更新
|
||||
editor.protyle.wysiwyg.element.querySelectorAll(`[data-node-id="${data.blockID}"]`).forEach(item => {
|
||||
// 不能直接查询,否则列表中会获取到第一个列表项的 attr https://github.com/siyuan-note/siyuan/issues/12738
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue