Skip to content

Commit

Permalink
🎨 Improve database block text in breadcrumbs #10891
Browse files Browse the repository at this point in the history
  • Loading branch information
88250 committed Apr 5, 2024
1 parent 4f6a2e7 commit 1d2516a
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 24 deletions.
4 changes: 2 additions & 2 deletions kernel/model/attribute_view.go
Original file line number Diff line number Diff line change
Expand Up @@ -2943,12 +2943,12 @@ func UpdateAttributeViewCell(tx *Transaction, avID, keyID, rowID, cellID string,
// 将游离行绑定到新建的块上
bindBlockAv(tx, avID, rowID)
}
} else { // 之前绑定了块
} else { // 之前绑定了块
if isUpdatingBlockKey { // 正在更新主键
if val.IsDetached { // 现在是游离行
// 将绑定的块从属性视图中移除
unbindBlockAv(tx, avID, rowID)
} else { // 现在绑定了块
} else { // 现在绑定了块
if oldBoundBlockID != val.BlockID { // 之前绑定的块和现在绑定的块不一样
// 换绑块
unbindBlockAv(tx, avID, oldBoundBlockID)
Expand Down
2 changes: 1 addition & 1 deletion kernel/model/blockinfo.go
Original file line number Diff line number Diff line change
Expand Up @@ -365,7 +365,7 @@ func buildBlockBreadcrumb(node *ast.Node, excludeTypes []string) (ret []*BlockPa
if ast.NodeDocument == parent.Type {
name = box.Name + hPath
} else if ast.NodeAttributeView == parent.Type {
name = treenode.GetAttributeViewName(parent.AttributeViewID)
name, _ = av.GetAttributeViewName(parent.AttributeViewID)
} else {
if "" == name {
if ast.NodeListItem == parent.Type {
Expand Down
21 changes: 0 additions & 21 deletions kernel/treenode/node.go
Original file line number Diff line number Diff line change
Expand Up @@ -546,27 +546,6 @@ func IsChartCodeBlockCode(code *ast.Node) bool {
return render.NoHighlight(language)
}

func GetAttributeViewName(avID string) (name string) {
if "" == avID {
return
}

attrView, err := av.ParseAttributeView(avID)
if nil != err {
logging.LogErrorf("parse attribute view [%s] failed: %s", avID, err)
return
}

buf := bytes.Buffer{}
for _, v := range attrView.Views {
buf.WriteString(v.Name)
buf.WriteByte(' ')
}

name = strings.TrimSpace(buf.String())
return
}

func getAttributeViewContent(avID string) (content string) {
if "" == avID {
return
Expand Down

0 comments on commit 1d2516a

Please sign in to comment.