🎨 Show count in spaced repetition tree filter floating window https://github.com/siyuan-note/siyuan/issues/8202

This commit is contained in:
Liang Ding 2023-05-09 10:19:13 +08:00
parent ba5449a0b4
commit 2678dfc827
No known key found for this signature in database
GPG key ID: 136F30F901A2231D
2 changed files with 34 additions and 18 deletions

View file

@ -255,6 +255,21 @@ func RemoveBlockTreesByPathPrefix(pathPrefix string) {
}
}
func GetBlockTreesByBoxID(boxID string) (ret []*BlockTree) {
blockTrees.Range(func(key, value interface{}) bool {
slice := value.(*btSlice)
slice.m.Lock()
for _, b := range slice.data {
if b.BoxID == boxID {
ret = append(ret, b)
}
}
slice.m.Unlock()
return true
})
return
}
func RemoveBlockTreesByBoxID(boxID string) (ids []string) {
blockTrees.Range(func(key, value interface{}) bool {
slice := value.(*btSlice)