🎨 Clean code

This commit is contained in:
Daniel 2024-04-25 17:33:35 +08:00
parent 571a44b7b8
commit 5536545f22
No known key found for this signature in database
GPG key ID: 86211BA83DF03017

View file

@ -186,7 +186,7 @@ type SearchAttributeViewResult struct {
HPath string `json:"hPath"`
}
func SearchAttributeView(keyword string, excludes []string) (ret []*SearchAttributeViewResult) {
func SearchAttributeView(keyword string, excludeAvIDs []string) (ret []*SearchAttributeViewResult) {
waitForSyncingStorages()
ret = []*SearchAttributeViewResult{}
@ -311,6 +311,9 @@ func SearchAttributeView(keyword string, excludes []string) (ret []*SearchAttrib
break
}
}
if exist {
continue
}
var hPath string
baseBlock := treenode.GetBlockTreeRootByPath(node.Box, node.Path)
@ -322,7 +325,7 @@ func SearchAttributeView(keyword string, excludes []string) (ret []*SearchAttrib
hPath = box.Name + hPath
}
if !exist && !gulu.Str.Contains(avID, excludes) {
if !gulu.Str.Contains(avID, excludeAvIDs) {
ret = append(ret, &SearchAttributeViewResult{
AvID: avID,
AvName: existAv.AvName,