Merge remote-tracking branch 'origin/dev' into dev

This commit is contained in:
Vanessa 2024-10-19 17:55:30 +08:00
commit 3ff902e547
2 changed files with 13 additions and 30 deletions

View file

@ -44,20 +44,12 @@ func RefreshBacklink(id string) {
func refreshRefsByDefID(defID string) {
refs := sql.QueryRefsByDefID(defID, false)
trees := map[string]*parse.Tree{}
var rootIDs []string
for _, ref := range refs {
tree := trees[ref.RootID]
if nil != tree {
continue
}
var loadErr error
tree, loadErr = LoadTreeByBlockID(ref.RootID)
if nil != loadErr {
logging.LogErrorf("refresh tree refs failed: %s", loadErr)
continue
}
trees[ref.RootID] = tree
rootIDs = append(rootIDs, ref.RootID)
}
trees := filesys.LoadTrees(rootIDs)
for _, tree := range trees {
sql.UpdateRefsTreeQueue(tree)
}
}

View file

@ -28,6 +28,7 @@ import (
"github.com/88250/lute/parse"
"github.com/araddon/dateparse"
"github.com/siyuan-note/siyuan/kernel/cache"
"github.com/siyuan-note/siyuan/kernel/filesys"
"github.com/siyuan-note/siyuan/kernel/sql"
"github.com/siyuan-note/siyuan/kernel/treenode"
"github.com/siyuan-note/siyuan/kernel/util"
@ -101,31 +102,21 @@ func BatchSetBlockAttrs(blockAttrs []map[string]interface{}) (err error) {
}
WaitForWritingFiles()
trees := map[string]*parse.Tree{}
for _, blockAttr := range blockAttrs {
id := blockAttr["id"].(string)
bt := treenode.GetBlockTree(id)
if nil == bt {
return errors.New(fmt.Sprintf(Conf.Language(15), id))
}
if nil == trees[bt.RootID] {
tree, e := LoadTreeByBlockID(id)
if nil != e {
return e
}
trees[bt.RootID] = tree
}
var blockIDs []string
for _, blockAttr := range blockAttrs {
blockIDs = append(blockIDs, blockAttr["id"].(string))
}
trees := filesys.LoadTrees(blockIDs)
var nodes []*ast.Node
for _, blockAttr := range blockAttrs {
id := blockAttr["id"].(string)
bt := treenode.GetBlockTree(id)
if nil == bt {
tree := trees[id]
if nil == tree {
return errors.New(fmt.Sprintf(Conf.Language(15), id))
}
tree := trees[bt.RootID]
node := treenode.GetNodeInTree(tree, id)
if nil == node {
return errors.New(fmt.Sprintf(Conf.Language(15), id))