import {getAllModels} from "../layout/getAll"; import {Constants} from "../constants"; import {escapeAttr, escapeGreat, escapeHtml} from "../util/escape"; import {fetchPost} from "../util/fetch"; import {openFile, openFileById} from "../editor/util"; import {showMessage} from "../dialog/message"; import {reloadProtyle} from "../protyle/util/reload"; import {MenuItem} from "../menus/Menu"; import {getDisplayName, getNotebookIcon, getNotebookName, movePathTo, pathPosix} from "../util/pathName"; import {Protyle} from "../protyle"; import {disabledProtyle, onGet} from "../protyle/util/onGet"; import {addLoading, setPadding} from "../protyle/ui/initUI"; import {getIconByType} from "../editor/getIcon"; import {unicode2Emoji} from "../emoji"; import {hasClosestByClassName} from "../protyle/util/hasClosest"; import {setStorageVal, updateHotkeyTip} from "../protyle/util/compatibility"; import {newFileByName} from "../util/newFile"; import {matchHotKey} from "../protyle/util/hotKey"; import {filterMenu, getKeyByLiElement, initCriteriaMenu, moreMenu, queryMenu} from "./menu"; const saveKeyList = (type: "keys" | "replaceKeys", value: string) => { let list: string[] = window.siyuan.storage[Constants.LOCAL_SEARCHKEYS][type]; list.splice(0, 0, value); list = Array.from(new Set(list)); if (list.length > window.siyuan.config.search.limit) { list.splice(window.siyuan.config.search.limit, list.length - window.siyuan.config.search.limit); } // new Set 后需重新赋值 window.siyuan.storage[Constants.LOCAL_SEARCHKEYS][type] = list; setStorageVal(Constants.LOCAL_SEARCHKEYS, window.siyuan.storage[Constants.LOCAL_SEARCHKEYS]); }; export const openGlobalSearch = (text: string, replace: boolean) => { text = text.trim(); const searchModel = getAllModels().search.find((item) => { item.parent.parent.switchTab(item.parent.headElement); item.updateSearch(text, replace); return true; }); if (searchModel) { return; } const localData = window.siyuan.storage[Constants.LOCAL_SEARCHDATA]; openFile({ searchData: { k: text, r: "", hasReplace: false, method: localData.method, hPath: "", idPath: [], group: localData.group, sort: localData.sort, types: Object.assign({}, localData.types), removed: localData.removed, page: 1 }, position: "right" }); }; // closeCB 不存在为页签搜索 export const genSearch = (config: ISearchOption, element: Element, closeCB?: () => void) => { let methodText = window.siyuan.languages.keyword; if (config.method === 1) { methodText = window.siyuan.languages.querySyntax; } else if (config.method === 2) { methodText = "SQL"; } else if (config.method === 3) { methodText = window.siyuan.languages.regex; } let includeChild = true; let enableIncludeChild = false; config.idPath.forEach(item => { if (item.endsWith(".sy")) { includeChild = false; } if (item.split("/").length > 1) { enableIncludeChild = true; } }); const data = window.siyuan.storage[Constants.LOCAL_SEARCHKEYS]; element.innerHTML = `
${escapeHtml(config.hPath)}
↑/↓ ${window.siyuan.languages.searchTip1} ${updateHotkeyTip(window.siyuan.config.keymap.general.newFile.custom)} ${window.siyuan.languages.new} Enter/Double Click ${window.siyuan.languages.searchTip2} Click ${window.siyuan.languages.searchTip3} ${updateHotkeyTip("⌥Click")} ${window.siyuan.languages.searchTip4} Esc ${window.siyuan.languages.searchTip5}
`; const criteriaData: ISearchOption[] = []; initCriteriaMenu(element.querySelector("#criteria"), criteriaData); const searchPanelElement = element.querySelector("#searchList"); const searchInputElement = element.querySelector("#searchInput") as HTMLInputElement; const replaceInputElement = element.querySelector("#replaceInput") as HTMLInputElement; const replaceHistoryElement = element.querySelector("#replaceHistoryList"); const historyElement = element.querySelector("#searchHistoryList"); const lineHeight = 30; const edit = new Protyle(element.querySelector("#searchPreview") as HTMLElement, { blockId: "", render: { gutter: true, breadcrumbDocName: true }, }); if (window.siyuan.config.editor.readOnly) { disabledProtyle(edit.protyle); } if (closeCB) { if (data.layout === 1) { if (data.col) { edit.protyle.element.style.width = data.col; edit.protyle.element.classList.remove("fn__flex-1"); } } else { if (data.row) { edit.protyle.element.classList.remove("fn__flex-1"); edit.protyle.element.style.height = data.row; } } } else { if (data.layoutTab === 1) { if (data.colTab) { edit.protyle.element.style.width = data.colTab; edit.protyle.element.classList.remove("fn__flex-1"); } } else { if (data.rowTab) { edit.protyle.element.classList.remove("fn__flex-1"); edit.protyle.element.style.height = data.rowTab; } } } let clickTimeout: number; let inputTimeout: number; searchInputElement.value = config.k || ""; replaceInputElement.value = config.r || ""; searchInputElement.select(); const dragElement = element.querySelector(".search__drag"); dragElement.addEventListener("mousedown", (event: MouseEvent) => { const documentSelf = document; const nextElement = dragElement.nextElementSibling as HTMLElement; const previousElement = dragElement.previousElementSibling as HTMLElement; const direction = window.siyuan.storage[Constants.LOCAL_SEARCHKEYS][closeCB ? "layout" : "layoutTab"] === 1 ? "lr" : "tb"; const x = event[direction === "lr" ? "clientX" : "clientY"]; const previousSize = direction === "lr" ? previousElement.clientWidth : previousElement.clientHeight; const nextSize = direction === "lr" ? nextElement.clientWidth : nextElement.clientHeight; nextElement.classList.remove("fn__flex-1"); nextElement.style[direction === "lr" ? "width" : "height"] = nextSize + "px"; documentSelf.onmousemove = (moveEvent: MouseEvent) => { moveEvent.preventDefault(); moveEvent.stopPropagation(); const previousNowSize = (previousSize + (moveEvent[direction === "lr" ? "clientX" : "clientY"] - x)); const nextNowSize = (nextSize - (moveEvent[direction === "lr" ? "clientX" : "clientY"] - x)); if (previousNowSize < 120 || nextNowSize < 120) { return; } nextElement.style[direction === "lr" ? "width" : "height"] = nextNowSize + "px"; }; documentSelf.onmouseup = () => { documentSelf.onmousemove = null; documentSelf.onmouseup = null; documentSelf.ondragstart = null; documentSelf.onselectstart = null; documentSelf.onselect = null; window.siyuan.storage[Constants.LOCAL_SEARCHKEYS][direction === "lr" ? (closeCB ? "col" : "colTab") : (closeCB ? "row" : "rowTab")] = nextElement[direction === "lr" ? "clientWidth" : "clientHeight"] + "px"; setStorageVal(Constants.LOCAL_SEARCHKEYS, window.siyuan.storage[Constants.LOCAL_SEARCHKEYS]); if (direction === "lr") { setPadding(edit.protyle); } }; }); element.addEventListener("click", (event: MouseEvent) => { let target = event.target as HTMLElement; const searchPathInputElement = element.querySelector("#searchPathInput"); while (target && !target.isSameNode(element)) { const type = target.getAttribute("data-type"); if (type === "next") { if (!target.getAttribute("disabled")) { config.page++; inputTimeout = inputEvent(element, config, inputTimeout, edit); } event.stopPropagation(); event.preventDefault(); break; } else if (type === "previous") { if (!target.getAttribute("disabled")) { config.page--; inputTimeout = inputEvent(element, config, inputTimeout, edit); } event.stopPropagation(); event.preventDefault(); break; } else if (target.classList.contains("b3-chip") && type === "set-criteria") { config.removed = false; criteriaData.find(item => { if (item.name === target.innerText.trim()) { updateConfig(element, item, config, edit); return true; } }); event.stopPropagation(); event.preventDefault(); break; } else if (target.classList.contains("b3-chip__close") && type === "remove-criteria") { const name = target.parentElement.innerText.trim(); fetchPost("/api/storage/removeCriterion", {name}); criteriaData.find((item, index) => { if (item.name === name) { criteriaData.splice(index, 1); return true; } }); if (target.parentElement.parentElement.childElementCount === 1) { target.parentElement.parentElement.classList.add("fn__none"); target.parentElement.remove(); } else { target.parentElement.remove(); } event.stopPropagation(); event.preventDefault(); break; } else if (target.classList.contains("search__rmpath")) { config.idPath = []; config.hPath = ""; config.page = 1; searchPathInputElement.innerHTML = config.hPath; searchPathInputElement.setAttribute("title", ""); inputTimeout = inputEvent(element, config, inputTimeout, edit); const includeElement = element.querySelector("#searchInclude"); includeElement.classList.remove("b3-button--cancel"); includeElement.setAttribute("disabled", "disabled"); event.stopPropagation(); event.preventDefault(); break; } else if (target.id === "searchExpand") { Array.from(searchPanelElement.children).forEach(item => { if (item.classList.contains("b3-list-item")) { item.querySelector(".b3-list-item__arrow").classList.add("b3-list-item__arrow--open"); item.nextElementSibling.classList.remove("fn__none"); } }); event.stopPropagation(); event.preventDefault(); break; } else if (target.id === "searchCollapse") { Array.from(searchPanelElement.children).forEach(item => { if (item.classList.contains("b3-list-item")) { item.querySelector(".b3-list-item__arrow").classList.remove("b3-list-item__arrow--open"); item.nextElementSibling.classList.add("fn__none"); } }); event.stopPropagation(); event.preventDefault(); break; } else if (target.id === "searchPath") { movePathTo((toPath, toNotebook) => { fetchPost("/api/filetree/getHPathsByPaths", {paths: toPath}, (response) => { config.idPath = []; const hPathList: string[] = []; let enableIncludeChild = false; toPath.forEach((item, index) => { if (item === "/") { config.idPath.push(toNotebook[index]); hPathList.push(getNotebookName(toNotebook[index])); } else { enableIncludeChild = true; config.idPath.push(pathPosix().join(toNotebook[index], item.replace(".sy", ""))); } }); if (response.data) { hPathList.push(...response.data); } config.hPath = hPathList.join(" "); config.page = 1; searchPathInputElement.innerHTML = `${escapeHtml(config.hPath)}`; searchPathInputElement.setAttribute("title", config.hPath); const includeElement = element.querySelector("#searchInclude"); includeElement.classList.remove("b3-button--cancel"); if (enableIncludeChild) { includeElement.removeAttribute("disabled"); } else { includeElement.setAttribute("disabled", "disabled"); } inputTimeout = inputEvent(element, config, inputTimeout, edit); }); }, [], undefined, window.siyuan.languages.specifyPath); event.stopPropagation(); event.preventDefault(); break; } else if (target.id === "searchInclude") { target.classList.toggle("b3-button--cancel"); if (target.classList.contains("b3-button--cancel")) { config.idPath.forEach((item, index) => { if (!item.endsWith(".sy") && item.split("/").length > 1) { config.idPath[index] = item + ".sy"; } }); } else { config.idPath.forEach((item, index) => { if (item.endsWith(".sy")) { config.idPath[index] = item.replace(".sy", ""); } }); } config.page = 1; inputTimeout = inputEvent(element, config, inputTimeout, edit); event.stopPropagation(); event.preventDefault(); break; } else if (target.id === "searchReplace") { // ctrl+P 不需要保存 config.hasReplace = !config.hasReplace; element.querySelector("#replaceHistoryBtn").parentElement.classList.toggle("fn__none"); event.stopPropagation(); event.preventDefault(); break; } else if (target.id === "searchOpen") { config.k = searchInputElement.value; config.r = replaceInputElement.value; openFile({searchData: config, position: "right"}); if (closeCB) { closeCB(); } event.stopPropagation(); event.preventDefault(); break; } else if (target.id === "searchRefresh") { inputTimeout = inputEvent(element, config, inputTimeout, edit); event.stopPropagation(); event.preventDefault(); break; } else if (target.id === "searchMore") { moreMenu(config, criteriaData, element, () => { config.page = 1; inputEvent(element, config, undefined, edit); }, () => { updateConfig(element, { removed: true, sort: 0, group: 0, hasReplace: false, method: 0, hPath: "", idPath: [], k: "", r: "", page: 1, types: { document: window.siyuan.config.search.document, heading: window.siyuan.config.search.heading, list: window.siyuan.config.search.list, listItem: window.siyuan.config.search.listItem, codeBlock: window.siyuan.config.search.codeBlock, htmlBlock: window.siyuan.config.search.htmlBlock, mathBlock: window.siyuan.config.search.mathBlock, table: window.siyuan.config.search.table, blockquote: window.siyuan.config.search.blockquote, superBlock: window.siyuan.config.search.superBlock, paragraph: window.siyuan.config.search.paragraph, embedBlock: window.siyuan.config.search.embedBlock, } }, config, edit); }, () => { const localData = window.siyuan.storage[Constants.LOCAL_SEARCHKEYS]; const isPopover = hasClosestByClassName(element, "b3-dialog__container"); window.siyuan.menus.menu.append(new MenuItem({ iconHTML: Constants.ZWSP, label: window.siyuan.languages.layout, type: "submenu", submenu: [{ iconHTML: Constants.ZWSP, label: window.siyuan.languages.topBottomLayout, current: isPopover ? localData.layout === 0 : localData.layoutTab === 0, click() { element.querySelector(".search__layout").classList.remove("search__layout--row"); edit.protyle.element.style.width = ""; if ((isPopover && localData.row) || (!isPopover && localData.rowTab)) { edit.protyle.element.style.height = isPopover ? localData.row : localData.rowTab; edit.protyle.element.classList.remove("fn__flex-1"); } else { edit.protyle.element.classList.add("fn__flex-1"); } setPadding(edit.protyle); if (isPopover) { localData.layout = 0; } else { localData.layoutTab = 0; } setStorageVal(Constants.LOCAL_SEARCHKEYS, window.siyuan.storage[Constants.LOCAL_SEARCHKEYS]); } }, { iconHTML: Constants.ZWSP, label: window.siyuan.languages.leftRightLayout, current: isPopover ? localData.layout === 1 : localData.layoutTab === 1, click() { element.querySelector(".search__layout").classList.add("search__layout--row"); edit.protyle.element.style.height = ""; if ((isPopover && localData.col) || (!isPopover && localData.colTab)) { edit.protyle.element.style.width = isPopover ? localData.col : localData.colTab; edit.protyle.element.classList.remove("fn__flex-1"); } else { edit.protyle.element.classList.add("fn__flex-1"); } setPadding(edit.protyle); if (isPopover) { localData.layout = 1; } else { localData.layoutTab = 1; } setStorageVal(Constants.LOCAL_SEARCHKEYS, window.siyuan.storage[Constants.LOCAL_SEARCHKEYS]); } }] }).element); }); window.siyuan.menus.menu.popup({x: event.clientX - 16, y: event.clientY - 16}, true); event.stopPropagation(); event.preventDefault(); break; } else if (target.id === "searchFilter") { filterMenu(config, () => { config.page = 1; inputEvent(element, config, undefined, edit); }); event.stopPropagation(); event.preventDefault(); break; } else if (target.id === "searchSyntaxCheck") { queryMenu(config, () => { element.querySelector("#searchSyntaxCheck").setAttribute("aria-label", getQueryTip(config.method)); config.page = 1; inputEvent(element, config, undefined, edit); }); window.siyuan.menus.menu.popup({x: event.clientX - 16, y: event.clientY - 16}, true); event.stopPropagation(); event.preventDefault(); break; } else if (target.id === "searchHistoryBtn") { const list = window.siyuan.storage[Constants.LOCAL_SEARCHKEYS]; if (!list.keys || list.keys.length === 0) { return; } let html = ""; list.keys.forEach((s: string) => { if (s !== searchInputElement.value) { html += `
${escapeHtml(s)}
`; } }); if (html === "") { return; } historyElement.classList.remove("fn__none"); historyElement.innerHTML = html; replaceHistoryElement.classList.add("fn__none"); event.stopPropagation(); event.preventDefault(); return; } else if (target.id === "replaceHistoryBtn") { const list = window.siyuan.storage[Constants.LOCAL_SEARCHKEYS]; if (!list.replaceKeys || list.replaceKeys.length === 0) { return; } let html = ""; list.replaceKeys.forEach((s: string) => { if (s !== replaceInputElement.value) { html += `
${escapeHtml(s)}
`; } }); if (html === "") { return; } replaceHistoryElement.classList.remove("fn__none"); replaceHistoryElement.innerHTML = html; historyElement.classList.add("fn__none"); event.stopPropagation(); event.preventDefault(); return; } else if (target.id === "replaceAllBtn") { replace(element, config, edit, true); event.stopPropagation(); event.preventDefault(); break; } else if (target.id === "replaceBtn") { replace(element, config, edit, false); event.stopPropagation(); event.preventDefault(); break; } else if (target.classList.contains("b3-list-item__toggle")) { target.parentElement.nextElementSibling.classList.toggle("fn__none"); target.firstElementChild.classList.toggle("b3-list-item__arrow--open"); event.stopPropagation(); event.preventDefault(); break; } else if (target.classList.contains("b3-list-item")) { if (target.parentElement.id === "searchHistoryList") { searchInputElement.value = target.textContent; config.page = 1; inputTimeout = inputEvent(element, config, inputTimeout, edit); } else if (target.parentElement.id === "replaceHistoryList") { replaceInputElement.value = target.textContent; replaceHistoryElement.classList.add("fn__none"); } else if (type === "search-new") { newFileByName(searchInputElement.value); } else if (type === "search-item") { if (event.detail === 1) { clickTimeout = window.setTimeout(() => { if (event.altKey) { const id = target.getAttribute("data-node-id"); fetchPost("/api/block/checkBlockFold", {id}, (foldResponse) => { openFileById({ id, action: foldResponse.data ? [Constants.CB_GET_FOCUS, Constants.CB_GET_ALL] : [Constants.CB_GET_FOCUS, Constants.CB_GET_CONTEXT], zoomIn: foldResponse.data, position: "right" }); if (closeCB) { closeCB(); } }); } else if (!target.classList.contains("b3-list-item--focus")) { searchPanelElement.querySelector(".b3-list-item--focus").classList.remove("b3-list-item--focus"); target.classList.add("b3-list-item--focus"); getArticle({ edit, id: target.getAttribute("data-node-id"), k: getKeyByLiElement(target) }); searchInputElement.focus(); } else if (target.classList.contains("b3-list-item--focus")) { renderNextSearchMark({ edit, id: target.getAttribute("data-node-id"), target, }); searchInputElement.focus(); } }, Constants.TIMEOUT_DBLCLICK); } else if (event.detail === 2 && !event.ctrlKey) { clearTimeout(clickTimeout); const id = target.getAttribute("data-node-id"); fetchPost("/api/block/checkBlockFold", {id}, (foldResponse) => { openFileById({ id, action: foldResponse.data ? [Constants.CB_GET_FOCUS, Constants.CB_GET_ALL] : [Constants.CB_GET_FOCUS, Constants.CB_GET_CONTEXT], zoomIn: foldResponse.data }); if (closeCB) { closeCB(); } }); } window.siyuan.menus.menu.remove(); } else if (target.querySelector(".b3-list-item__toggle")) { target.nextElementSibling.classList.toggle("fn__none"); target.firstElementChild.firstElementChild.classList.toggle("b3-list-item__arrow--open"); } event.stopPropagation(); event.preventDefault(); break; } target = target.parentElement; } historyElement.classList.add("fn__none"); replaceHistoryElement.classList.add("fn__none"); }, false); searchInputElement.addEventListener("compositionend", (event: InputEvent) => { config.page = 1; inputTimeout = inputEvent(element, config, inputTimeout, edit, event); }); searchInputElement.addEventListener("input", (event: InputEvent) => { config.page = 1; inputTimeout = inputEvent(element, config, inputTimeout, edit, event); }); searchInputElement.addEventListener("blur", () => { if (config.removed) { config.k = searchInputElement.value; window.siyuan.storage[Constants.LOCAL_SEARCHDATA] = Object.assign({}, config); setStorageVal(Constants.LOCAL_SEARCHDATA, window.siyuan.storage[Constants.LOCAL_SEARCHDATA]); } saveKeyList("keys", searchInputElement.value); }); searchInputElement.addEventListener("keydown", (event: KeyboardEvent) => { let currentList: HTMLElement = searchPanelElement.querySelector(".b3-list-item--focus"); if (!currentList || event.isComposing) { return; } if (searchInputElement.value && matchHotKey(window.siyuan.config.keymap.general.newFile.custom, event)) { newFileByName(searchInputElement.value); event.preventDefault(); event.stopPropagation(); return; } const focusIsNew = currentList.getAttribute("data-type") === "search-new"; if (event.key === "Enter") { if (focusIsNew) { newFileByName(searchInputElement.value); } else { const id = currentList.getAttribute("data-node-id"); fetchPost("/api/block/checkBlockFold", {id}, (foldResponse) => { openFileById({ id, action: foldResponse.data ? [Constants.CB_GET_FOCUS, Constants.CB_GET_ALL] : [Constants.CB_GET_FOCUS, Constants.CB_GET_CONTEXT], zoomIn: foldResponse.data }); if (closeCB) { closeCB(); } }); } event.preventDefault(); } if (focusIsNew) { return; } if (event.key === "ArrowDown") { currentList.classList.remove("b3-list-item--focus"); if (!currentList.nextElementSibling) { if (config.group === 1) { if (currentList.parentElement.nextElementSibling) { currentList.parentElement.nextElementSibling.nextElementSibling.firstElementChild.classList.add("b3-list-item--focus"); } else { searchPanelElement.children[1].firstElementChild.classList.add("b3-list-item--focus"); } } else { searchPanelElement.firstElementChild.classList.add("b3-list-item--focus"); } } else { currentList.nextElementSibling.classList.add("b3-list-item--focus"); } currentList = searchPanelElement.querySelector(".b3-list-item--focus"); if (searchPanelElement.scrollTop < currentList.offsetTop - searchPanelElement.clientHeight + lineHeight || searchPanelElement.scrollTop > currentList.offsetTop) { searchPanelElement.scrollTop = currentList.offsetTop - searchPanelElement.clientHeight + lineHeight; } getArticle({ id: currentList.getAttribute("data-node-id"), k: getKeyByLiElement(currentList), edit }); event.preventDefault(); } else if (event.key === "ArrowUp") { currentList.classList.remove("b3-list-item--focus"); if (!currentList.previousElementSibling) { if (config.group === 1) { if (currentList.parentElement.previousElementSibling.previousElementSibling) { currentList.parentElement.previousElementSibling.previousElementSibling.lastElementChild.classList.add("b3-list-item--focus"); } else { searchPanelElement.lastElementChild.lastElementChild.classList.add("b3-list-item--focus"); } } else { searchPanelElement.lastElementChild.classList.add("b3-list-item--focus"); } } else { currentList.previousElementSibling.classList.add("b3-list-item--focus"); } currentList = searchPanelElement.querySelector(".b3-list-item--focus"); if (searchPanelElement.scrollTop < currentList.offsetTop - searchPanelElement.clientHeight + lineHeight || searchPanelElement.scrollTop > currentList.offsetTop - lineHeight * 2) { searchPanelElement.scrollTop = currentList.offsetTop - lineHeight * 2; } getArticle({ id: currentList.getAttribute("data-node-id"), k: getKeyByLiElement(currentList), edit }); event.preventDefault(); } }); replaceInputElement.addEventListener("keydown", (event: KeyboardEvent) => { if (event.isComposing || event.key !== "Enter") { return; } replace(element, config, edit, false); event.preventDefault(); }); inputTimeout = inputEvent(element, config, inputTimeout, edit); return edit; }; const getQueryTip = (method: number) => { let methodTip = window.siyuan.languages.searchMethod + " "; switch (method) { case 0: methodTip += window.siyuan.languages.keyword; break; case 1: methodTip += window.siyuan.languages.querySyntax; break; case 2: methodTip += "SQL"; break; case 3: methodTip += window.siyuan.languages.regex; break; } return methodTip; }; const updateConfig = (element: Element, item: ISearchOption, config: ISearchOption, edit: Protyle) => { const dialogElement = hasClosestByClassName(element, "b3-dialog--open"); if (dialogElement && dialogElement.getAttribute("data-key") === window.siyuan.config.keymap.general.search.custom) { // https://github.com/siyuan-note/siyuan/issues/6828 item.hPath = config.hPath; item.idPath = config.idPath.join(",").split(","); } if (config.hasReplace !== item.hasReplace) { if (item.hasReplace) { element.querySelector("#replaceHistoryBtn").parentElement.classList.remove("fn__none"); } else { element.querySelector("#replaceHistoryBtn").parentElement.classList.add("fn__none"); } } const searchPathInputElement = element.querySelector("#searchPathInput"); if (item.hPath) { searchPathInputElement.innerHTML = `${escapeHtml(item.hPath)}`; searchPathInputElement.setAttribute("title", item.hPath); } else { searchPathInputElement.innerHTML = ""; searchPathInputElement.setAttribute("title", ""); } if (config.group !== item.group) { if (item.group === 0) { element.querySelector("#searchExpand").parentElement.classList.add("fn__none"); } else { element.querySelector("#searchExpand").parentElement.classList.remove("fn__none"); } } let includeChild = true; let enableIncludeChild = false; item.idPath.forEach(item => { if (item.endsWith(".sy")) { includeChild = false; } if (item.split("/").length > 1) { enableIncludeChild = true; } }); const searchIncludeElement = element.querySelector("#searchInclude"); if (includeChild) { searchIncludeElement.classList.remove("b3-button--cancel"); } else { searchIncludeElement.classList.add("b3-button--cancel"); } if (enableIncludeChild) { searchIncludeElement.removeAttribute("disabled"); } else { searchIncludeElement.setAttribute("disabled", "disabled"); } (element.querySelector("#searchInput") as HTMLInputElement).value = item.k; (element.querySelector("#replaceInput") as HTMLInputElement).value = item.r; element.querySelector("#searchSyntaxCheck").setAttribute("aria-label", getQueryTip(item.method)); Object.assign(config, item); window.siyuan.storage[Constants.LOCAL_SEARCHDATA] = Object.assign({}, config); setStorageVal(Constants.LOCAL_SEARCHDATA, window.siyuan.storage[Constants.LOCAL_SEARCHDATA]); inputEvent(element, config, undefined, edit); window.siyuan.menus.menu.remove(); }; const renderNextSearchMark = (options: { id: string, edit: Protyle, target: Element, }) => { let matchElement; const allMatchElements = Array.from(options.edit.protyle.wysiwyg.element.querySelectorAll(`div[data-node-id="${options.id}"] span[data-type~="search-mark"]`)); allMatchElements.find((item, itemIndex) => { if (item.classList.contains("search-mark--hl")) { item.classList.remove("search-mark--hl"); matchElement = allMatchElements[itemIndex + 1]; return; } }); if (!matchElement) { matchElement = allMatchElements[0]; } if (matchElement) { matchElement.classList.add("search-mark--hl"); const contentRect = options.edit.protyle.contentElement.getBoundingClientRect(); options.edit.protyle.contentElement.scrollTop = options.edit.protyle.contentElement.scrollTop + matchElement.getBoundingClientRect().top - contentRect.top - contentRect.height / 2; } }; const getArticle = (options: { id: string, k: string, edit: Protyle }) => { fetchPost("/api/block/checkBlockFold", {id: options.id}, (foldResponse) => { options.edit.protyle.scroll.lastScrollTop = 0; addLoading(options.edit.protyle); fetchPost("/api/filetree/getDoc", { id: options.id, k: options.k, mode: foldResponse.data ? 0 : 3, size: foldResponse.data ? Constants.SIZE_GET_MAX : window.siyuan.config.editor.dynamicLoadBlocks, zoom: foldResponse.data, }, getResponse => { onGet(getResponse, options.edit.protyle, foldResponse.data ? [Constants.CB_GET_ALL, Constants.CB_GET_HTML] : [Constants.CB_GET_HL, Constants.CB_GET_HTML]); const matchElement = options.edit.protyle.wysiwyg.element.querySelector(`div[data-node-id="${options.id}"] span[data-type~="search-mark"]`); if (matchElement) { matchElement.classList.add("search-mark--hl"); const contentRect = options.edit.protyle.contentElement.getBoundingClientRect(); options.edit.protyle.contentElement.scrollTop = options.edit.protyle.contentElement.scrollTop + matchElement.getBoundingClientRect().top - contentRect.top - contentRect.height / 2; } const exitFocusElement = options.edit.protyle.breadcrumb.element.parentElement.querySelector('[data-type="exit-focus"]'); if (!foldResponse.data) { exitFocusElement.classList.add("fn__none"); exitFocusElement.nextElementSibling.classList.add("fn__none"); } else { exitFocusElement.classList.remove("fn__none"); exitFocusElement.nextElementSibling.classList.remove("fn__none"); } }); }); }; const replace = (element: Element, config: ISearchOption, edit: Protyle, isAll: boolean) => { if (config.method === 1 || config.method === 2) { showMessage(window.siyuan.languages._kernel[132]); return; } const searchPanelElement = element.querySelector("#searchList"); const replaceInputElement = element.querySelector("#replaceInput") as HTMLInputElement; const loadElement = replaceInputElement.nextElementSibling; if (!loadElement.classList.contains("fn__none")) { return; } saveKeyList("replaceKeys", replaceInputElement.value); let currentList: HTMLElement = searchPanelElement.querySelector(".b3-list-item--focus"); if (!currentList) { return; } loadElement.classList.remove("fn__none"); let ids: string[] = []; let rootIds: string[] = []; if (isAll) { searchPanelElement.querySelectorAll('.b3-list-item[data-type="search-item"]').forEach(item => { ids.push(item.getAttribute("data-node-id")); rootIds.push(item.getAttribute("data-root-id")); }); } else { ids = [currentList.getAttribute("data-node-id")]; rootIds = [currentList.getAttribute("data-root-id")]; } fetchPost("/api/search/findReplace", { k: config.method === 0 ? getKeyByLiElement(currentList) : (element.querySelector("#searchInput") as HTMLInputElement).value, r: replaceInputElement.value, ids, types: config.types, method: config.method, }, (response) => { loadElement.classList.add("fn__none"); if (response.code === 1) { showMessage(response.msg); return; } if (ids.length > 1) { return; } getAllModels().editor.forEach(item => { if (rootIds[0] === item.editor.protyle.block.rootID) { reloadProtyle(item.editor.protyle); } }); if (currentList.nextElementSibling) { currentList.nextElementSibling.classList.add("b3-list-item--focus"); } else if (currentList.previousElementSibling) { currentList.previousElementSibling.classList.add("b3-list-item--focus"); } if (config.group === 1) { if (currentList.nextElementSibling || currentList.previousElementSibling) { currentList.remove(); } else { const nextDocElement = currentList.parentElement.nextElementSibling || currentList.parentElement.previousElementSibling.previousElementSibling?.previousElementSibling; if (nextDocElement) { nextDocElement.nextElementSibling.firstElementChild.classList.add("b3-list-item--focus"); nextDocElement.nextElementSibling.classList.remove("fn__none"); nextDocElement.firstElementChild.firstElementChild.classList.add("b3-list-item__arrow--open"); } currentList.parentElement.previousElementSibling.remove(); currentList.parentElement.remove(); } } else { currentList.remove(); } currentList = searchPanelElement.querySelector(".b3-list-item--focus"); if (!currentList) { searchPanelElement.innerHTML = `
${window.siyuan.languages.emptyContent}
`; edit.protyle.element.classList.add("fn__none"); element.querySelector(".search__drag").classList.add("fn__none"); return; } if (searchPanelElement.scrollTop < currentList.offsetTop - searchPanelElement.clientHeight + 30 || searchPanelElement.scrollTop > currentList.offsetTop) { searchPanelElement.scrollTop = currentList.offsetTop - searchPanelElement.clientHeight + 30; } getArticle({ edit, id: currentList.getAttribute("data-node-id"), k: getKeyByLiElement(currentList) }); }); }; const inputEvent = (element: Element, config: ISearchOption, inputTimeout: number, edit: Protyle, event?: InputEvent) => { if (event && event.isComposing) { return; } clearTimeout(inputTimeout); inputTimeout = window.setTimeout(() => { const searchInputElement = element.querySelector("#searchInput") as HTMLInputElement; const loadingElement = element.querySelector(".fn__loading--top"); loadingElement.classList.remove("fn__none"); const inputValue = searchInputElement.value; element.querySelector("#searchList").scrollTo(0, 0); const previousElement = element.querySelector('[data-type="previous"]'); const nextElement = element.querySelector('[data-type="next"]'); if (inputValue === "" && (!config.idPath || config.idPath.length === 0)) { fetchPost("/api/block/getRecentUpdatedBlocks", {}, (response) => { onSearch(response.data, edit, element); loadingElement.classList.add("fn__none"); element.querySelector("#searchResult").innerHTML = ""; previousElement.setAttribute("disabled", "true"); nextElement.setAttribute("disabled", "true"); }); } else { if (config.page > 1) { previousElement.removeAttribute("disabled"); } else { previousElement.setAttribute("disabled", "disabled"); } fetchPost("/api/search/fullTextSearchBlock", { query: inputValue, method: config.method, types: config.types, paths: config.idPath || [], groupBy: config.group, orderBy: config.sort, page: config.page || 1, }, (response) => { if (!config.page) { config.page = 1; } if (config.page < response.data.pageCount) { nextElement.removeAttribute("disabled"); } else { nextElement.setAttribute("disabled", "disabled"); } onSearch(response.data.blocks, edit, element); element.querySelector("#searchResult").innerHTML = `${config.page}/${response.data.pageCount || 1} ${window.siyuan.languages.findInDoc.replace("${x}", response.data.matchedRootCount).replace("${y}", response.data.matchedBlockCount)}`; loadingElement.classList.add("fn__none"); }); } }, Constants.TIMEOUT_SEARCH); return inputTimeout; }; const onSearch = (data: IBlock[], edit: Protyle, element: Element) => { let resultHTML = ""; data.forEach((item, index) => { const title = getNotebookName(item.box) + getDisplayName(item.hPath, false); if (item.children) { resultHTML += `
${unicode2Emoji(getNotebookIcon(item.box) || Constants.SIYUAN_IMAGE_NOTE, false, "b3-list-item__graphic", true)} ${escapeGreat(title)}
`; item.children.forEach((childItem, childIndex) => { resultHTML += `
${unicode2Emoji(childItem.ial.icon, false, "b3-list-item__graphic", true)} ${childItem.content}
`; }); resultHTML += "
"; } else { resultHTML += `
${unicode2Emoji(item.ial.icon, false, "b3-list-item__graphic", true)} ${item.content} ${escapeGreat(title)}
`; } }); if (data[0]) { edit.protyle.element.classList.remove("fn__none"); element.querySelector(".search__drag").classList.remove("fn__none"); const contentElement = document.createElement("div"); if (data[0].children) { contentElement.innerHTML = data[0].children[0].content; getArticle({ edit, id: data[0].children[0].id, k: getKeyByLiElement(contentElement), }); } else { contentElement.innerHTML = data[0].content; getArticle({ edit, id: data[0].id, k: getKeyByLiElement(contentElement), }); } } else { edit.protyle.element.classList.add("fn__none"); element.querySelector(".search__drag").classList.add("fn__none"); } element.querySelector("#searchList").innerHTML = resultHTML || `
${window.siyuan.languages.newFile} ${(element.querySelector("#searchInput") as HTMLInputElement).value} ${window.siyuan.languages.enterNew}
${window.siyuan.languages.enterNewTip}
`; };