🎨 Support doc/snapshot history for database table view https://github.com/siyuan-note/siyuan/issues/9567

This commit is contained in:
Daniel 2023-11-24 00:07:58 +08:00
parent 27b370133d
commit faeaec707d
No known key found for this signature in database
GPG key ID: 86211BA83DF03017

View file

@ -209,9 +209,8 @@ func RenderRepoSnapshotAttributeView(indexID, avID string) (viewable av.Viewable
}
if nil == avFile {
return
}
attrView = av.NewAttributeView(avID)
} else {
data, readErr := repo.OpenFile(avFile)
if nil != readErr {
logging.LogErrorf("read attribute view [%s] failed: %s", avID, readErr)
@ -223,6 +222,7 @@ func RenderRepoSnapshotAttributeView(indexID, avID string) (viewable av.Viewable
logging.LogErrorf("unmarshal attribute view [%s] failed: %s", avID, err)
return
}
}
viewable, err = renderAttributeView(attrView)
return
@ -249,9 +249,11 @@ func RenderHistoryAttributeView(avID, created string) (viewable av.Viewable, att
historyDir := matches[0]
avJSONPath := filepath.Join(historyDir, "storage", "av", avID+".json")
if !gulu.File.IsExist(avJSONPath) {
return
avJSONPath = filepath.Join(util.DataDir, "storage", "av", avID+".json")
}
if !gulu.File.IsExist(avJSONPath) {
attrView = av.NewAttributeView(avID)
} else {
data, readErr := os.ReadFile(avJSONPath)
if nil != readErr {
logging.LogErrorf("read attribute view [%s] failed: %s", avID, readErr)
@ -263,6 +265,7 @@ func RenderHistoryAttributeView(avID, created string) (viewable av.Viewable, att
logging.LogErrorf("unmarshal attribute view [%s] failed: %s", avID, err)
return
}
}
viewable, err = renderAttributeView(attrView)
return