🎨 Simplify document block paths in block ref search list https://github.com/siyuan-note/siyuan/issues/13364

This commit is contained in:
Daniel 2024-12-04 23:19:36 +08:00
parent 1a48215076
commit a1c21e9261
No known key found for this signature in database
GPG key ID: 86211BA83DF03017
2 changed files with 15 additions and 0 deletions

View file

@ -101,6 +101,10 @@ func (block *Block) IsContainerBlock() bool {
return false
}
func (block *Block) IsDoc() bool {
return "NodeDocument" == block.Type
}
type Path struct {
ID string `json:"id"` // 块 ID
Box string `json:"box"` // 块 Box

View file

@ -425,9 +425,20 @@ func SearchRefBlock(id, rootID, keyword string, beforeLen int, isSquareBrackets,
// 在 hPath 中加入笔记本名 Show notebooks in hpath of block ref search list results https://github.com/siyuan-note/siyuan/issues/9378
prependNotebookNameInHPath(ret)
// 简化块引搜索列表中的文档块路径 Simplify document block paths in block ref search list https://github.com/siyuan-note/siyuan/issues/13364
// 文档块不显示自己的路径(最后一层)
filterSelfHPath(ret)
return
}
func filterSelfHPath(blocks []*Block) {
for _, b := range blocks {
if b.IsDoc() {
b.HPath = strings.TrimSuffix(b.HPath, path.Base(b.HPath))
}
}
}
func prependNotebookNameInHPath(blocks []*Block) {
var boxIDs []string
for _, b := range blocks {