mirror of
https://github.com/siyuan-note/siyuan.git
synced 2025-09-22 00:20:47 +02:00
This commit is contained in:
parent
3182f7abb8
commit
92447342b6
1 changed files with 4 additions and 2 deletions
|
@ -9,7 +9,7 @@ import {updateAttrViewCellAnimation} from "./action";
|
||||||
import {focusBlock} from "../../util/selection";
|
import {focusBlock} from "../../util/selection";
|
||||||
import {setPosition} from "../../../util/setPosition";
|
import {setPosition} from "../../../util/setPosition";
|
||||||
import * as dayjs from "dayjs";
|
import * as dayjs from "dayjs";
|
||||||
import {getFieldsByData} from "./view";
|
import {getFieldsByData, getViewName} from "./view";
|
||||||
import {getColId} from "./col";
|
import {getColId} from "./col";
|
||||||
import {getFieldIdByCellElement} from "./row";
|
import {getFieldIdByCellElement} from "./row";
|
||||||
import {isMobile} from "../../../util/functions";
|
import {isMobile} from "../../../util/functions";
|
||||||
|
@ -21,6 +21,7 @@ interface IAVItem {
|
||||||
hPath: string;
|
hPath: string;
|
||||||
viewName: string;
|
viewName: string;
|
||||||
viewID: string;
|
viewID: string;
|
||||||
|
viewLayout: string;
|
||||||
}
|
}
|
||||||
|
|
||||||
const genSearchList = (element: Element, keyword: string, avId?: string, excludes = true, cb?: () => void) => {
|
const genSearchList = (element: Element, keyword: string, avId?: string, excludes = true, cb?: () => void) => {
|
||||||
|
@ -47,9 +48,10 @@ const genSearchList = (element: Element, keyword: string, avId?: string, exclude
|
||||||
if (hasChildren) {
|
if (hasChildren) {
|
||||||
html += '<div class="fn__none">';
|
html += '<div class="fn__none">';
|
||||||
item.children.forEach((subItem) => {
|
item.children.forEach((subItem) => {
|
||||||
|
const viewDefaultName = getViewName(subItem.viewLayout);
|
||||||
html += `<div style="padding-left: 48px;" class="b3-list-item b3-list-item--narrow" data-av-id="${subItem.avID}" data-view-id="${subItem.viewID}">
|
html += `<div style="padding-left: 48px;" class="b3-list-item b3-list-item--narrow" data-av-id="${subItem.avID}" data-view-id="${subItem.viewID}">
|
||||||
<span class="b3-list-item__text">${escapeHtml(subItem.avName || window.siyuan.languages._kernel[267])}</span>
|
<span class="b3-list-item__text">${escapeHtml(subItem.avName || window.siyuan.languages._kernel[267])}</span>
|
||||||
<span class="b3-list-item__meta">${escapeHtml(subItem.viewName)}</span>
|
<span class="b3-list-item__meta">${escapeHtml(subItem.viewName)}${viewDefaultName === subItem.viewName ? "" : " - " + viewDefaultName}</span>
|
||||||
</div>`;
|
</div>`;
|
||||||
});
|
});
|
||||||
html += "</div>";
|
html += "</div>";
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue