From 82ecfe1c192e904a8fb1a552765d698aa66a15fa Mon Sep 17 00:00:00 2001 From: Vanessa Date: Tue, 5 Mar 2024 23:07:56 +0800 Subject: [PATCH] :art: https://github.com/siyuan-note/siyuan/issues/10513 --- app/src/protyle/wysiwyg/index.ts | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) diff --git a/app/src/protyle/wysiwyg/index.ts b/app/src/protyle/wysiwyg/index.ts index b8dd2439b..f967b28d0 100644 --- a/app/src/protyle/wysiwyg/index.ts +++ b/app/src/protyle/wysiwyg/index.ts @@ -2036,6 +2036,26 @@ export class WYSIWYG { /// #endif return; } + /// #if MOBILE + // https://github.com/siyuan-note/siyuan/issues/10513 + const virtualRefElement = hasClosestByAttribute(event.target, "data-type", "virtual-block-ref"); + if (virtualRefElement) { + const blockElement = hasClosestBlock(virtualRefElement) + if (blockElement) { + fetchPost("/api/block/getBlockDefIDsByRefText", { + anchor: virtualRefElement.textContent, + excludeIDs: [blockElement.getAttribute("data-node-id")] + }, (response) => { + checkFold(response.data[0], (zoomIn) => { + openMobileFileById(protyle.app, response.data[0], zoomIn ? [Constants.CB_GET_ALL, Constants.CB_GET_HL] : [Constants.CB_GET_HL, Constants.CB_GET_CONTEXT, Constants.CB_GET_ROOTSCROLL]); + activeBlur(); + hideKeyboardToolbar(); + }); + }); + } + return; + } + /// #endif const fileElement = hasClosestByAttribute(event.target, "data-type", "file-annotation-ref"); if (fileElement && range.toString() === "") {