Skip to content

Commit

Permalink
🎨 New a row in the database no longer require to create a relevant doc
Browse files Browse the repository at this point in the history
  • Loading branch information
88250 committed Sep 27, 2023
1 parent bef5a71 commit 12162eb
Showing 1 changed file with 30 additions and 0 deletions.
30 changes: 30 additions & 0 deletions kernel/model/attribute_view.go
Original file line number Diff line number Diff line change
Expand Up @@ -925,6 +925,8 @@ func UpdateAttributeViewCell(avID, keyID, rowID, cellID string, valueData interf
break
}

oldIsDetached := val.IsDetached

data, err := gulu.JSON.MarshalJSON(valueData)
if nil != err {
return
Expand All @@ -933,6 +935,34 @@ func UpdateAttributeViewCell(avID, keyID, rowID, cellID string, valueData interf
return
}

if oldIsDetached && !val.IsDetached {
// 将游离行绑定到新建的块上
tree, loadErr := loadTreeByBlockID(rowID)
if nil != loadErr {
logging.LogWarnf("load tree by block id [%s] failed: %s", rowID, loadErr)
} else {
node := treenode.GetNodeInTree(tree, rowID)
if nil == node {
logging.LogWarnf("node [%s] not found in tree [%s]", rowID, tree.ID)
} else {
attrs := parse.IAL2Map(node.KramdownIAL)

if "" == attrs[NodeAttrNameAvs] {
attrs[NodeAttrNameAvs] = avID
} else {
avIDs := strings.Split(attrs[NodeAttrNameAvs], ",")
avIDs = append(avIDs, avID)
avIDs = gulu.Str.RemoveDuplicatedElem(avIDs)
attrs[NodeAttrNameAvs] = strings.Join(avIDs, ",")
}

if err = setNodeAttrs(node, tree, attrs); nil != err {
logging.LogWarnf("set node [%s] attrs failed: %s", rowID, err)
}
}
}
}

if err = av.SaveAttributeView(attrView); nil != err {
return
}
Expand Down

0 comments on commit 12162eb

Please sign in to comment.