2022-05-26 15:18:53 +08:00
|
|
|
|
import {BlockPanel} from "./Panel";
|
|
|
|
|
|
import {hasClosestBlock, hasClosestByAttribute, hasClosestByClassName} from "../protyle/util/hasClosest";
|
|
|
|
|
|
import {fetchSyncPost} from "../util/fetch";
|
|
|
|
|
|
import {hideTooltip, showTooltip} from "../dialog/tooltip";
|
2023-04-19 11:27:32 +08:00
|
|
|
|
import {getIdFromSYProtocol} from "../util/pathName";
|
2023-05-18 19:27:21 +08:00
|
|
|
|
import {App} from "../index";
|
2023-11-17 21:57:08 +08:00
|
|
|
|
import {Constants} from "../constants";
|
2022-05-26 15:18:53 +08:00
|
|
|
|
|
2022-10-30 00:16:48 +08:00
|
|
|
|
let popoverTargetElement: HTMLElement;
|
2023-05-18 19:27:21 +08:00
|
|
|
|
export const initBlockPopover = (app: App) => {
|
2022-05-26 15:18:53 +08:00
|
|
|
|
let timeout: number;
|
|
|
|
|
|
let timeoutHide: number;
|
|
|
|
|
|
// 编辑器内容块引用/backlinks/tag/bookmark/套娃中使用
|
2023-01-15 23:16:48 +08:00
|
|
|
|
document.addEventListener("mouseover", (event: MouseEvent & { target: HTMLElement, path: HTMLElement[] }) => {
|
2022-10-29 21:58:09 +08:00
|
|
|
|
if (!window.siyuan.config) {
|
|
|
|
|
|
return;
|
|
|
|
|
|
}
|
2022-08-31 01:14:45 +08:00
|
|
|
|
const aElement = hasClosestByAttribute(event.target, "data-type", "a", true) ||
|
2022-05-26 15:18:53 +08:00
|
|
|
|
hasClosestByAttribute(event.target, "data-type", "tab-header") ||
|
2023-08-09 22:55:34 +08:00
|
|
|
|
hasClosestByClassName(event.target, "av__celltext") ||
|
2023-07-12 11:46:58 +08:00
|
|
|
|
hasClosestByClassName(event.target, "ariaLabel") ||
|
2022-09-17 23:14:02 +08:00
|
|
|
|
hasClosestByAttribute(event.target, "data-type", "inline-memo");
|
2022-05-26 15:18:53 +08:00
|
|
|
|
if (aElement) {
|
2022-09-17 23:14:02 +08:00
|
|
|
|
let tip = aElement.getAttribute("aria-label") || aElement.getAttribute("data-inline-memo-content");
|
2023-09-06 10:13:29 +08:00
|
|
|
|
if (aElement.classList.contains("av__celltext")) {
|
2023-11-15 18:40:01 +08:00
|
|
|
|
if (aElement.offsetWidth > aElement.parentElement.clientWidth - 5) { // 只能减左边 padding,换行时字体会穿透到右侧 padding
|
2023-11-02 10:15:56 +08:00
|
|
|
|
if (aElement.querySelector(".av__cellicon")) {
|
2023-11-14 22:23:15 +08:00
|
|
|
|
tip = `${aElement.firstChild.textContent} → ${aElement.lastChild.textContent}`;
|
2023-11-02 10:15:56 +08:00
|
|
|
|
} else {
|
|
|
|
|
|
tip = aElement.textContent;
|
|
|
|
|
|
}
|
2023-09-06 10:13:29 +08:00
|
|
|
|
} else {
|
|
|
|
|
|
return;
|
|
|
|
|
|
}
|
2023-08-09 22:55:34 +08:00
|
|
|
|
}
|
2022-05-26 15:18:53 +08:00
|
|
|
|
if (!tip) {
|
2023-11-20 22:53:38 +08:00
|
|
|
|
tip = aElement.getAttribute("data-href")?.substring(0, Constants.SIZE_TITLE) || "";
|
2022-05-26 15:18:53 +08:00
|
|
|
|
const title = aElement.getAttribute("data-title");
|
|
|
|
|
|
if (title) {
|
2022-10-09 22:22:33 +08:00
|
|
|
|
tip += "<br>" + title;
|
2022-05-26 15:18:53 +08:00
|
|
|
|
}
|
|
|
|
|
|
}
|
2022-09-15 11:57:33 +08:00
|
|
|
|
if (tip && !tip.startsWith("siyuan://blocks") && !aElement.classList.contains("b3-tooltips")) {
|
2022-05-26 15:18:53 +08:00
|
|
|
|
showTooltip(tip, aElement);
|
|
|
|
|
|
event.stopPropagation();
|
|
|
|
|
|
return;
|
|
|
|
|
|
}
|
2023-09-16 14:53:26 +08:00
|
|
|
|
} else if (!aElement) {
|
2023-09-17 22:27:55 +08:00
|
|
|
|
const tipElement = hasClosestByAttribute(event.target, "id", "tooltip", true);
|
2023-09-16 14:53:26 +08:00
|
|
|
|
if (!tipElement || (
|
|
|
|
|
|
tipElement && (tipElement.clientHeight >= tipElement.scrollHeight && tipElement.clientWidth >= tipElement.scrollWidth)
|
|
|
|
|
|
)) {
|
|
|
|
|
|
hideTooltip();
|
|
|
|
|
|
}
|
2022-05-26 15:18:53 +08:00
|
|
|
|
}
|
2023-05-17 18:48:42 +08:00
|
|
|
|
if (window.siyuan.config.editor.floatWindowMode === 1 || window.siyuan.shiftIsPressed) {
|
2022-10-29 00:10:08 +08:00
|
|
|
|
clearTimeout(timeoutHide);
|
|
|
|
|
|
timeoutHide = window.setTimeout(() => {
|
2022-10-30 00:16:48 +08:00
|
|
|
|
hidePopover(event);
|
2023-11-17 21:57:08 +08:00
|
|
|
|
}, Constants.TIMEOUT_INPUT);
|
2022-10-29 00:10:08 +08:00
|
|
|
|
|
2022-10-28 23:29:07 +08:00
|
|
|
|
if (!getTarget(event, aElement)) {
|
|
|
|
|
|
return;
|
|
|
|
|
|
}
|
2023-08-23 11:32:25 +08:00
|
|
|
|
// https://github.com/siyuan-note/siyuan/issues/9007
|
|
|
|
|
|
if (event.relatedTarget && !document.contains(event.relatedTarget as Node)) {
|
|
|
|
|
|
return;
|
|
|
|
|
|
}
|
2022-10-28 23:29:07 +08:00
|
|
|
|
if (window.siyuan.ctrlIsPressed) {
|
2022-10-29 00:10:08 +08:00
|
|
|
|
clearTimeout(timeoutHide);
|
2023-05-18 19:27:21 +08:00
|
|
|
|
showPopover(app);
|
2023-05-17 18:48:42 +08:00
|
|
|
|
} else if (window.siyuan.shiftIsPressed) {
|
|
|
|
|
|
clearTimeout(timeoutHide);
|
2023-05-18 19:27:21 +08:00
|
|
|
|
showPopover(app, true);
|
2022-10-28 23:29:07 +08:00
|
|
|
|
}
|
|
|
|
|
|
return;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2022-05-26 15:18:53 +08:00
|
|
|
|
clearTimeout(timeout);
|
|
|
|
|
|
clearTimeout(timeoutHide);
|
|
|
|
|
|
timeoutHide = window.setTimeout(() => {
|
2022-10-29 00:10:08 +08:00
|
|
|
|
if (!hidePopover(event)) {
|
2022-10-28 23:29:07 +08:00
|
|
|
|
return;
|
2022-05-26 15:18:53 +08:00
|
|
|
|
}
|
|
|
|
|
|
if (!popoverTargetElement && !aElement) {
|
|
|
|
|
|
clearTimeout(timeout);
|
|
|
|
|
|
}
|
2023-11-17 21:57:08 +08:00
|
|
|
|
}, Constants.TIMEOUT_INPUT);
|
2023-05-17 18:48:42 +08:00
|
|
|
|
timeout = window.setTimeout(() => {
|
2022-10-28 23:29:07 +08:00
|
|
|
|
if (!getTarget(event, aElement)) {
|
2022-05-26 15:18:53 +08:00
|
|
|
|
return;
|
|
|
|
|
|
}
|
|
|
|
|
|
clearTimeout(timeoutHide);
|
2023-05-18 19:27:21 +08:00
|
|
|
|
showPopover(app);
|
2022-10-28 23:29:07 +08:00
|
|
|
|
}, 620);
|
|
|
|
|
|
});
|
|
|
|
|
|
};
|
|
|
|
|
|
|
2023-11-17 21:57:08 +08:00
|
|
|
|
const hidePopover = (event: MouseEvent & { path: HTMLElement[] }) => {
|
|
|
|
|
|
// pad 端点击后 event.target 不会更新。
|
|
|
|
|
|
const target = document.elementFromPoint(event.clientX, event.clientY);
|
|
|
|
|
|
if (hasClosestByClassName(target, "b3-menu") ||
|
|
|
|
|
|
(target.id && target.tagName !== "svg" && (target.id.startsWith("minder_node") || target.id.startsWith("kity_") || target.id.startsWith("node_")))
|
|
|
|
|
|
|| target.classList.contains("counter")
|
|
|
|
|
|
|| target.tagName === "circle"
|
2022-10-29 00:10:08 +08:00
|
|
|
|
) {
|
|
|
|
|
|
// b3-menu 需要处理,(( 后的 hint 上的图表移上去需显示预览
|
|
|
|
|
|
// gutter & mindmap & 文件树上的数字 & 关系图节点不处理
|
|
|
|
|
|
return false;
|
|
|
|
|
|
}
|
2023-11-17 21:57:08 +08:00
|
|
|
|
popoverTargetElement = hasClosestByAttribute(target, "data-type", "block-ref") as HTMLElement ||
|
|
|
|
|
|
hasClosestByAttribute(target, "data-type", "virtual-block-ref") as HTMLElement;
|
2022-10-29 00:10:08 +08:00
|
|
|
|
if (popoverTargetElement && popoverTargetElement.classList.contains("b3-tooltips")) {
|
|
|
|
|
|
popoverTargetElement = undefined;
|
|
|
|
|
|
}
|
|
|
|
|
|
if (!popoverTargetElement) {
|
2023-11-17 21:57:08 +08:00
|
|
|
|
popoverTargetElement = hasClosestByClassName(target, "popover__block") as HTMLElement;
|
2022-10-29 00:10:08 +08:00
|
|
|
|
}
|
2023-11-17 21:57:08 +08:00
|
|
|
|
const linkElement = hasClosestByAttribute(target, "data-type", "a", true);
|
2022-10-29 00:10:08 +08:00
|
|
|
|
if (!popoverTargetElement && linkElement && linkElement.getAttribute("data-href")?.startsWith("siyuan://blocks")) {
|
|
|
|
|
|
popoverTargetElement = linkElement;
|
|
|
|
|
|
}
|
|
|
|
|
|
if (!popoverTargetElement) {
|
2023-01-15 23:16:48 +08:00
|
|
|
|
// 移动到弹窗的 loading 元素上,但经过 settimeout 后 loading 已经被移除了
|
|
|
|
|
|
// https://ld246.com/article/1673596577519/comment/1673767749885#comments
|
2023-11-17 21:57:08 +08:00
|
|
|
|
let targetElement = target;
|
2023-02-11 12:33:09 +08:00
|
|
|
|
if (!targetElement.parentElement && event.path && event.path[1]) {
|
2023-01-16 00:00:53 +08:00
|
|
|
|
targetElement = event.path[1];
|
2023-01-15 23:16:48 +08:00
|
|
|
|
}
|
|
|
|
|
|
const blockElement = hasClosestByClassName(targetElement, "block__popover", true);
|
2022-10-29 00:10:08 +08:00
|
|
|
|
const maxEditLevels: { [key: string]: number } = {oid: 0};
|
|
|
|
|
|
window.siyuan.blockPanels.forEach((item) => {
|
2023-05-19 20:39:32 +08:00
|
|
|
|
if ((item.targetElement || typeof item.x === "number") && item.element.getAttribute("data-pin") === "true") {
|
2022-10-29 00:10:08 +08:00
|
|
|
|
const level = parseInt(item.element.getAttribute("data-level"));
|
|
|
|
|
|
const oid = item.element.getAttribute("data-oid");
|
|
|
|
|
|
if (maxEditLevels[oid]) {
|
|
|
|
|
|
if (level > maxEditLevels[oid]) {
|
|
|
|
|
|
maxEditLevels[oid] = level;
|
|
|
|
|
|
}
|
|
|
|
|
|
} else {
|
|
|
|
|
|
maxEditLevels[oid] = level; // 不能为1,否则 pin 住第三层,第二层会消失
|
2022-05-26 15:18:53 +08:00
|
|
|
|
}
|
|
|
|
|
|
}
|
2022-10-29 00:10:08 +08:00
|
|
|
|
});
|
|
|
|
|
|
if (blockElement) {
|
|
|
|
|
|
for (let i = 0; i < window.siyuan.blockPanels.length; i++) {
|
|
|
|
|
|
const item = window.siyuan.blockPanels[i];
|
2023-05-19 20:39:32 +08:00
|
|
|
|
if ((item.targetElement || typeof item.x === "number") &&
|
2022-10-29 00:10:08 +08:00
|
|
|
|
parseInt(item.element.getAttribute("data-level")) > (maxEditLevels[item.element.getAttribute("data-oid")] || 0) &&
|
|
|
|
|
|
item.element.getAttribute("data-pin") === "false" &&
|
|
|
|
|
|
parseInt(item.element.getAttribute("data-level")) > parseInt(blockElement.getAttribute("data-level"))) {
|
|
|
|
|
|
item.destroy();
|
|
|
|
|
|
i--;
|
|
|
|
|
|
}
|
2022-10-28 23:29:07 +08:00
|
|
|
|
}
|
2022-10-29 00:10:08 +08:00
|
|
|
|
} else {
|
|
|
|
|
|
for (let i = 0; i < window.siyuan.blockPanels.length; i++) {
|
|
|
|
|
|
const item = window.siyuan.blockPanels[i];
|
2023-11-03 23:09:18 +08:00
|
|
|
|
if ((item.targetElement || typeof item.x === "number") && item.element.getAttribute("data-pin") === "false") {
|
2022-10-29 00:10:08 +08:00
|
|
|
|
item.destroy();
|
|
|
|
|
|
i--;
|
|
|
|
|
|
}
|
2022-10-28 23:29:07 +08:00
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
2022-10-30 00:16:48 +08:00
|
|
|
|
};
|
2022-05-26 15:18:53 +08:00
|
|
|
|
|
2022-10-28 23:29:07 +08:00
|
|
|
|
const getTarget = (event: MouseEvent & { target: HTMLElement }, aElement: false | HTMLElement) => {
|
|
|
|
|
|
if (hasClosestByClassName(event.target, "history__repo", true)) {
|
|
|
|
|
|
return false;
|
|
|
|
|
|
}
|
|
|
|
|
|
popoverTargetElement = hasClosestByAttribute(event.target, "data-type", "block-ref") as HTMLElement ||
|
|
|
|
|
|
hasClosestByAttribute(event.target, "data-type", "virtual-block-ref") as HTMLElement;
|
|
|
|
|
|
if (popoverTargetElement && popoverTargetElement.classList.contains("b3-tooltips")) {
|
|
|
|
|
|
popoverTargetElement = undefined;
|
|
|
|
|
|
}
|
|
|
|
|
|
if (!popoverTargetElement) {
|
|
|
|
|
|
popoverTargetElement = hasClosestByClassName(event.target, "popover__block") as HTMLElement;
|
|
|
|
|
|
}
|
2023-08-09 22:55:34 +08:00
|
|
|
|
if (!popoverTargetElement && aElement && (
|
|
|
|
|
|
(aElement.getAttribute("data-href")?.startsWith("siyuan://blocks") && aElement.getAttribute("prevent-popover") !== "true") ||
|
|
|
|
|
|
(aElement.classList.contains("av__celltext") && aElement.dataset.type === "url"))) {
|
2022-10-28 23:29:07 +08:00
|
|
|
|
popoverTargetElement = aElement;
|
|
|
|
|
|
}
|
2023-05-17 18:48:42 +08:00
|
|
|
|
if (!popoverTargetElement || window.siyuan.altIsPressed ||
|
2022-10-28 23:29:07 +08:00
|
|
|
|
(window.siyuan.config.editor.floatWindowMode === 0 && window.siyuan.ctrlIsPressed) ||
|
|
|
|
|
|
(popoverTargetElement && popoverTargetElement.getAttribute("prevent-popover") === "true")) {
|
|
|
|
|
|
return false;
|
|
|
|
|
|
}
|
|
|
|
|
|
// https://github.com/siyuan-note/siyuan/issues/4314
|
|
|
|
|
|
if (popoverTargetElement && getSelection().rangeCount > 0) {
|
|
|
|
|
|
const range = getSelection().getRangeAt(0);
|
|
|
|
|
|
if (range.toString() !== "" && popoverTargetElement.contains(range.startContainer)) {
|
|
|
|
|
|
return false;
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
2022-10-30 00:16:48 +08:00
|
|
|
|
return true;
|
|
|
|
|
|
};
|
2022-10-28 23:29:07 +08:00
|
|
|
|
|
2023-05-18 19:27:21 +08:00
|
|
|
|
export const showPopover = async (app: App, showRef = false) => {
|
2022-10-28 23:29:07 +08:00
|
|
|
|
if (!popoverTargetElement) {
|
|
|
|
|
|
return;
|
|
|
|
|
|
}
|
|
|
|
|
|
let ids: string[];
|
|
|
|
|
|
let defIds: string[];
|
|
|
|
|
|
const dataId = popoverTargetElement.getAttribute("data-id");
|
|
|
|
|
|
if (dataId) {
|
|
|
|
|
|
// backlink/util/hint/正文标题 上的弹层
|
2023-05-17 18:48:42 +08:00
|
|
|
|
if (showRef) {
|
|
|
|
|
|
const postResponse = await fetchSyncPost("/api/block/getRefIDs", {id: dataId});
|
|
|
|
|
|
ids = postResponse.data.refIDs;
|
|
|
|
|
|
defIds = postResponse.data.defIDs;
|
2022-10-28 23:29:07 +08:00
|
|
|
|
} else {
|
2023-05-17 18:48:42 +08:00
|
|
|
|
if (dataId.startsWith("[")) {
|
|
|
|
|
|
ids = JSON.parse(dataId);
|
|
|
|
|
|
} else {
|
|
|
|
|
|
ids = [dataId];
|
|
|
|
|
|
}
|
|
|
|
|
|
defIds = JSON.parse(popoverTargetElement.getAttribute("data-defids") || "[]");
|
2022-10-28 23:29:07 +08:00
|
|
|
|
}
|
|
|
|
|
|
} else if (popoverTargetElement.getAttribute("data-type")?.indexOf("virtual-block-ref") > -1) {
|
|
|
|
|
|
const nodeElement = hasClosestBlock(popoverTargetElement);
|
|
|
|
|
|
if (nodeElement) {
|
|
|
|
|
|
const postResponse = await fetchSyncPost("/api/block/getBlockDefIDsByRefText", {
|
|
|
|
|
|
anchor: popoverTargetElement.textContent,
|
|
|
|
|
|
excludeIDs: [nodeElement.getAttribute("data-node-id")]
|
2022-05-26 15:18:53 +08:00
|
|
|
|
});
|
2022-10-28 23:29:07 +08:00
|
|
|
|
ids = postResponse.data;
|
|
|
|
|
|
}
|
2023-08-09 22:55:34 +08:00
|
|
|
|
} else if (popoverTargetElement.getAttribute("data-type")?.split(" ").includes("a")) {
|
2022-10-28 23:29:07 +08:00
|
|
|
|
// 以思源协议开头的链接
|
2023-04-19 11:27:32 +08:00
|
|
|
|
ids = [getIdFromSYProtocol(popoverTargetElement.getAttribute("data-href"))];
|
2023-08-09 22:55:34 +08:00
|
|
|
|
} else if (popoverTargetElement.dataset.type === "url") {
|
|
|
|
|
|
// 在 database 的 url 列中以思源协议开头的链接
|
|
|
|
|
|
ids = [getIdFromSYProtocol(popoverTargetElement.textContent.trim())];
|
2022-10-28 23:29:07 +08:00
|
|
|
|
} else {
|
|
|
|
|
|
// pdf
|
|
|
|
|
|
let targetId;
|
|
|
|
|
|
let url = "/api/block/getRefIDs";
|
|
|
|
|
|
if (popoverTargetElement.classList.contains("protyle-attr--refcount")) {
|
|
|
|
|
|
// 编辑器中的引用数
|
|
|
|
|
|
targetId = popoverTargetElement.parentElement.parentElement.getAttribute("data-node-id");
|
|
|
|
|
|
} else if (popoverTargetElement.classList.contains("pdf__rect")) {
|
|
|
|
|
|
targetId = popoverTargetElement.getAttribute("data-node-id");
|
|
|
|
|
|
url = "/api/block/getRefIDsByFileAnnotationID";
|
|
|
|
|
|
} else if (!targetId) {
|
|
|
|
|
|
// 文件树中的引用数
|
|
|
|
|
|
targetId = popoverTargetElement.parentElement.getAttribute("data-node-id");
|
|
|
|
|
|
}
|
|
|
|
|
|
const postResponse = await fetchSyncPost(url, {id: targetId});
|
|
|
|
|
|
ids = postResponse.data.refIDs;
|
|
|
|
|
|
defIds = postResponse.data.defIDs;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
let hasPin = false;
|
|
|
|
|
|
window.siyuan.blockPanels.find((item) => {
|
2023-05-19 20:39:32 +08:00
|
|
|
|
if ((item.targetElement || typeof item.x === "number") && item.element.getAttribute("data-pin") === "true"
|
2022-10-28 23:29:07 +08:00
|
|
|
|
&& JSON.stringify(ids) === JSON.stringify(item.nodeIds)) {
|
|
|
|
|
|
hasPin = true;
|
|
|
|
|
|
return true;
|
|
|
|
|
|
}
|
2022-05-26 15:18:53 +08:00
|
|
|
|
});
|
2023-02-08 14:58:53 +08:00
|
|
|
|
if (!hasPin && popoverTargetElement.parentElement &&
|
2022-10-28 23:29:07 +08:00
|
|
|
|
popoverTargetElement.parentElement.style.opacity !== "0.1" // 反向面板图标拖拽时不应该弹层
|
|
|
|
|
|
) {
|
|
|
|
|
|
window.siyuan.blockPanels.push(new BlockPanel({
|
2023-05-18 19:27:21 +08:00
|
|
|
|
app,
|
2022-10-28 23:29:07 +08:00
|
|
|
|
targetElement: popoverTargetElement,
|
2023-05-19 20:27:14 +08:00
|
|
|
|
isBacklink: showRef || popoverTargetElement.classList.contains("protyle-attr--refcount") || popoverTargetElement.classList.contains("counter"),
|
2022-10-28 23:29:07 +08:00
|
|
|
|
nodeIds: ids,
|
|
|
|
|
|
defIds,
|
|
|
|
|
|
}));
|
|
|
|
|
|
}
|
2023-05-17 18:48:42 +08:00
|
|
|
|
// 不能清除,否则ctrl 后 shift 就 无效 popoverTargetElement = undefined;
|
2022-10-30 00:16:48 +08:00
|
|
|
|
};
|