mirror of
https://github.com/siyuan-note/siyuan.git
synced 2025-12-17 23:20:13 +01:00
♻️ Improve av structure
This commit is contained in:
parent
f75d5e50b4
commit
373bce9791
10 changed files with 819 additions and 1165 deletions
|
|
@ -25,7 +25,6 @@ import (
|
||||||
"sort"
|
"sort"
|
||||||
"strconv"
|
"strconv"
|
||||||
"strings"
|
"strings"
|
||||||
"text/template"
|
|
||||||
"time"
|
"time"
|
||||||
|
|
||||||
"github.com/88250/gulu"
|
"github.com/88250/gulu"
|
||||||
|
|
@ -36,6 +35,7 @@ import (
|
||||||
"github.com/siyuan-note/logging"
|
"github.com/siyuan-note/logging"
|
||||||
"github.com/siyuan-note/siyuan/kernel/av"
|
"github.com/siyuan-note/siyuan/kernel/av"
|
||||||
"github.com/siyuan-note/siyuan/kernel/cache"
|
"github.com/siyuan-note/siyuan/kernel/cache"
|
||||||
|
"github.com/siyuan-note/siyuan/kernel/sql"
|
||||||
"github.com/siyuan-note/siyuan/kernel/treenode"
|
"github.com/siyuan-note/siyuan/kernel/treenode"
|
||||||
"github.com/siyuan-note/siyuan/kernel/util"
|
"github.com/siyuan-note/siyuan/kernel/util"
|
||||||
"github.com/xrash/smetrics"
|
"github.com/xrash/smetrics"
|
||||||
|
|
@ -498,18 +498,6 @@ func GetBlockAttributeViewKeys(blockID string) (ret []*BlockAttributeViewKeys) {
|
||||||
}
|
}
|
||||||
|
|
||||||
// 再处理模板列
|
// 再处理模板列
|
||||||
// 获取闪卡信息
|
|
||||||
// TODO 目前看来使用场景不多,暂时不实现了 https://github.com/siyuan-note/siyuan/issues/10502#issuecomment-1986703280
|
|
||||||
var flashcard *Flashcard
|
|
||||||
//deck := Decks[builtinDeckID]
|
|
||||||
//if nil != deck {
|
|
||||||
// blockIDs := []string{blockID}
|
|
||||||
// cards := deck.GetCardsByBlockIDs(blockIDs)
|
|
||||||
// now := time.Now()
|
|
||||||
// if 0 < len(cards) {
|
|
||||||
// flashcard = newFlashcard(cards[0], builtinDeckID, now)
|
|
||||||
// }
|
|
||||||
//}
|
|
||||||
|
|
||||||
// 渲染模板
|
// 渲染模板
|
||||||
var renderTemplateErr error
|
var renderTemplateErr error
|
||||||
|
|
@ -524,7 +512,7 @@ func GetBlockAttributeViewKeys(blockID string) (ret []*BlockAttributeViewKeys) {
|
||||||
}
|
}
|
||||||
|
|
||||||
var renderErr error
|
var renderErr error
|
||||||
kv.Values[0].Template.Content, renderErr = renderTemplateCol(ial, flashcard, keyValues, kv.Key.Template)
|
kv.Values[0].Template.Content, renderErr = sql.RenderTemplateCol(ial, keyValues, kv.Key.Template)
|
||||||
if nil != renderErr {
|
if nil != renderErr {
|
||||||
renderTemplateErr = fmt.Errorf("database [%s] template field [%s] rendering failed: %s", getAttrViewName(attrView), kv.Key.Name, renderErr)
|
renderTemplateErr = fmt.Errorf("database [%s] template field [%s] rendering failed: %s", getAttrViewName(attrView), kv.Key.Name, renderErr)
|
||||||
}
|
}
|
||||||
|
|
@ -830,7 +818,7 @@ func renderAttributeView(attrView *av.AttributeView, viewID, query string, page,
|
||||||
}
|
}
|
||||||
view.Table.Sorts = tmpSorts
|
view.Table.Sorts = tmpSorts
|
||||||
|
|
||||||
viewable, err = renderAttributeViewTable(attrView, view, query)
|
viewable, err = sql.RenderAttributeViewTable(attrView, view, query, GetBlockAttrsWithoutWaitWriting)
|
||||||
}
|
}
|
||||||
|
|
||||||
viewable.FilterRows(attrView)
|
viewable.FilterRows(attrView)
|
||||||
|
|
@ -860,468 +848,6 @@ func renderAttributeView(attrView *av.AttributeView, viewID, query string, page,
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
|
|
||||||
func renderTemplateCol(ial map[string]string, flashcard *Flashcard, rowValues []*av.KeyValues, tplContent string) (ret string, err error) {
|
|
||||||
if "" == ial["id"] {
|
|
||||||
block := getRowBlockValue(rowValues)
|
|
||||||
if nil != block && nil != block.Block {
|
|
||||||
ial["id"] = block.Block.ID
|
|
||||||
}
|
|
||||||
}
|
|
||||||
if "" == ial["updated"] {
|
|
||||||
block := getRowBlockValue(rowValues)
|
|
||||||
if nil != block && nil != block.Block {
|
|
||||||
ial["updated"] = time.UnixMilli(block.Block.Updated).Format("20060102150405")
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
goTpl := template.New("").Delims(".action{", "}")
|
|
||||||
tplFuncMap := util.BuiltInTemplateFuncs()
|
|
||||||
SQLTemplateFuncs(&tplFuncMap)
|
|
||||||
goTpl = goTpl.Funcs(tplFuncMap)
|
|
||||||
tpl, err := goTpl.Parse(tplContent)
|
|
||||||
if nil != err {
|
|
||||||
logging.LogWarnf("parse template [%s] failed: %s", tplContent, err)
|
|
||||||
return
|
|
||||||
}
|
|
||||||
|
|
||||||
buf := &bytes.Buffer{}
|
|
||||||
dataModel := map[string]interface{}{} // 复制一份 IAL 以避免修改原始数据
|
|
||||||
for k, v := range ial {
|
|
||||||
dataModel[k] = v
|
|
||||||
|
|
||||||
// Database template column supports `created` and `updated` built-in variables https://github.com/siyuan-note/siyuan/issues/9364
|
|
||||||
createdStr := ial["id"]
|
|
||||||
if "" != createdStr {
|
|
||||||
createdStr = createdStr[:len("20060102150405")]
|
|
||||||
}
|
|
||||||
created, parseErr := time.ParseInLocation("20060102150405", createdStr, time.Local)
|
|
||||||
if nil == parseErr {
|
|
||||||
dataModel["created"] = created
|
|
||||||
} else {
|
|
||||||
logging.LogWarnf("parse created [%s] failed: %s", createdStr, parseErr)
|
|
||||||
dataModel["created"] = time.Now()
|
|
||||||
}
|
|
||||||
updatedStr := ial["updated"]
|
|
||||||
updated, parseErr := time.ParseInLocation("20060102150405", updatedStr, time.Local)
|
|
||||||
if nil == parseErr {
|
|
||||||
dataModel["updated"] = updated
|
|
||||||
} else {
|
|
||||||
dataModel["updated"] = time.Now()
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
if nil != flashcard {
|
|
||||||
dataModel["flashcard"] = flashcard
|
|
||||||
}
|
|
||||||
|
|
||||||
for _, rowValue := range rowValues {
|
|
||||||
if 1 > len(rowValue.Values) {
|
|
||||||
continue
|
|
||||||
}
|
|
||||||
|
|
||||||
v := rowValue.Values[0]
|
|
||||||
if av.KeyTypeNumber == v.Type {
|
|
||||||
if nil != v.Number && v.Number.IsNotEmpty {
|
|
||||||
dataModel[rowValue.Key.Name] = v.Number.Content
|
|
||||||
}
|
|
||||||
} else if av.KeyTypeDate == v.Type {
|
|
||||||
if nil != v.Date {
|
|
||||||
if v.Date.IsNotEmpty {
|
|
||||||
dataModel[rowValue.Key.Name] = time.UnixMilli(v.Date.Content)
|
|
||||||
}
|
|
||||||
if v.Date.IsNotEmpty2 {
|
|
||||||
dataModel[rowValue.Key.Name+"_end"] = time.UnixMilli(v.Date.Content2)
|
|
||||||
}
|
|
||||||
}
|
|
||||||
} else if av.KeyTypeRollup == v.Type {
|
|
||||||
if 0 < len(v.Rollup.Contents) {
|
|
||||||
var numbers []float64
|
|
||||||
var contents []string
|
|
||||||
for _, content := range v.Rollup.Contents {
|
|
||||||
if av.KeyTypeNumber == content.Type {
|
|
||||||
numbers = append(numbers, content.Number.Content)
|
|
||||||
} else {
|
|
||||||
contents = append(contents, content.String(true))
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
if 0 < len(numbers) {
|
|
||||||
dataModel[rowValue.Key.Name] = numbers
|
|
||||||
} else {
|
|
||||||
dataModel[rowValue.Key.Name] = contents
|
|
||||||
}
|
|
||||||
}
|
|
||||||
} else if av.KeyTypeRelation == v.Type {
|
|
||||||
if 0 < len(v.Relation.Contents) {
|
|
||||||
var contents []string
|
|
||||||
for _, content := range v.Relation.Contents {
|
|
||||||
contents = append(contents, content.String(true))
|
|
||||||
}
|
|
||||||
dataModel[rowValue.Key.Name] = contents
|
|
||||||
}
|
|
||||||
} else {
|
|
||||||
dataModel[rowValue.Key.Name] = v.String(true)
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
if err = tpl.Execute(buf, dataModel); nil != err {
|
|
||||||
logging.LogWarnf("execute template [%s] failed: %s", tplContent, err)
|
|
||||||
return
|
|
||||||
}
|
|
||||||
ret = buf.String()
|
|
||||||
return
|
|
||||||
}
|
|
||||||
|
|
||||||
func renderAttributeViewTable(attrView *av.AttributeView, view *av.View, query string) (ret *av.Table, err error) {
|
|
||||||
ret = &av.Table{
|
|
||||||
ID: view.ID,
|
|
||||||
Icon: view.Icon,
|
|
||||||
Name: view.Name,
|
|
||||||
HideAttrViewName: view.HideAttrViewName,
|
|
||||||
Columns: []*av.TableColumn{},
|
|
||||||
Rows: []*av.TableRow{},
|
|
||||||
Filters: view.Table.Filters,
|
|
||||||
Sorts: view.Table.Sorts,
|
|
||||||
}
|
|
||||||
|
|
||||||
// 组装列
|
|
||||||
for _, col := range view.Table.Columns {
|
|
||||||
key, getErr := attrView.GetKey(col.ID)
|
|
||||||
if nil != getErr {
|
|
||||||
err = getErr
|
|
||||||
return
|
|
||||||
}
|
|
||||||
|
|
||||||
ret.Columns = append(ret.Columns, &av.TableColumn{
|
|
||||||
ID: key.ID,
|
|
||||||
Name: key.Name,
|
|
||||||
Type: key.Type,
|
|
||||||
Icon: key.Icon,
|
|
||||||
Options: key.Options,
|
|
||||||
NumberFormat: key.NumberFormat,
|
|
||||||
Template: key.Template,
|
|
||||||
Relation: key.Relation,
|
|
||||||
Rollup: key.Rollup,
|
|
||||||
Date: key.Date,
|
|
||||||
Wrap: col.Wrap,
|
|
||||||
Hidden: col.Hidden,
|
|
||||||
Width: col.Width,
|
|
||||||
Pin: col.Pin,
|
|
||||||
Calc: col.Calc,
|
|
||||||
})
|
|
||||||
}
|
|
||||||
|
|
||||||
// 生成行
|
|
||||||
rows := map[string][]*av.KeyValues{}
|
|
||||||
for _, keyValues := range attrView.KeyValues {
|
|
||||||
for _, val := range keyValues.Values {
|
|
||||||
values := rows[val.BlockID]
|
|
||||||
if nil == values {
|
|
||||||
values = []*av.KeyValues{{Key: keyValues.Key, Values: []*av.Value{val}}}
|
|
||||||
} else {
|
|
||||||
values = append(values, &av.KeyValues{Key: keyValues.Key, Values: []*av.Value{val}})
|
|
||||||
}
|
|
||||||
rows[val.BlockID] = values
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
// 过滤掉不存在的行
|
|
||||||
var notFound []string
|
|
||||||
for blockID, keyValues := range rows {
|
|
||||||
blockValue := getRowBlockValue(keyValues)
|
|
||||||
if nil == blockValue {
|
|
||||||
notFound = append(notFound, blockID)
|
|
||||||
continue
|
|
||||||
}
|
|
||||||
|
|
||||||
if blockValue.IsDetached {
|
|
||||||
continue
|
|
||||||
}
|
|
||||||
|
|
||||||
if nil != blockValue.Block && "" == blockValue.Block.ID {
|
|
||||||
notFound = append(notFound, blockID)
|
|
||||||
continue
|
|
||||||
}
|
|
||||||
|
|
||||||
if nil == treenode.GetBlockTree(blockID) {
|
|
||||||
notFound = append(notFound, blockID)
|
|
||||||
}
|
|
||||||
}
|
|
||||||
for _, blockID := range notFound {
|
|
||||||
delete(rows, blockID)
|
|
||||||
}
|
|
||||||
|
|
||||||
// 生成行单元格
|
|
||||||
for rowID, row := range rows {
|
|
||||||
var tableRow av.TableRow
|
|
||||||
for _, col := range ret.Columns {
|
|
||||||
var tableCell *av.TableCell
|
|
||||||
for _, keyValues := range row {
|
|
||||||
if keyValues.Key.ID == col.ID {
|
|
||||||
tableCell = &av.TableCell{
|
|
||||||
ID: keyValues.Values[0].ID,
|
|
||||||
Value: keyValues.Values[0],
|
|
||||||
ValueType: col.Type,
|
|
||||||
}
|
|
||||||
break
|
|
||||||
}
|
|
||||||
}
|
|
||||||
if nil == tableCell {
|
|
||||||
tableCell = &av.TableCell{
|
|
||||||
ID: ast.NewNodeID(),
|
|
||||||
ValueType: col.Type,
|
|
||||||
}
|
|
||||||
}
|
|
||||||
tableRow.ID = rowID
|
|
||||||
|
|
||||||
switch tableCell.ValueType {
|
|
||||||
case av.KeyTypeNumber: // 格式化数字
|
|
||||||
if nil != tableCell.Value && nil != tableCell.Value.Number && tableCell.Value.Number.IsNotEmpty {
|
|
||||||
tableCell.Value.Number.Format = col.NumberFormat
|
|
||||||
tableCell.Value.Number.FormatNumber()
|
|
||||||
}
|
|
||||||
case av.KeyTypeTemplate: // 渲染模板列
|
|
||||||
tableCell.Value = &av.Value{ID: tableCell.ID, KeyID: col.ID, BlockID: rowID, Type: av.KeyTypeTemplate, Template: &av.ValueTemplate{Content: col.Template}}
|
|
||||||
case av.KeyTypeCreated: // 填充创建时间列值,后面再渲染
|
|
||||||
tableCell.Value = &av.Value{ID: tableCell.ID, KeyID: col.ID, BlockID: rowID, Type: av.KeyTypeCreated}
|
|
||||||
case av.KeyTypeUpdated: // 填充更新时间列值,后面再渲染
|
|
||||||
tableCell.Value = &av.Value{ID: tableCell.ID, KeyID: col.ID, BlockID: rowID, Type: av.KeyTypeUpdated}
|
|
||||||
case av.KeyTypeRelation: // 清空关联列值,后面再渲染 https://ld246.com/article/1703831044435
|
|
||||||
if nil != tableCell.Value && nil != tableCell.Value.Relation {
|
|
||||||
tableCell.Value.Relation.Contents = nil
|
|
||||||
}
|
|
||||||
case av.KeyTypeText:
|
|
||||||
if nil != tableCell.Value && nil != tableCell.Value.Text {
|
|
||||||
tableCell.Value.Text.Content = util.EscapeHTML(tableCell.Value.Text.Content)
|
|
||||||
}
|
|
||||||
case av.KeyTypeEmail:
|
|
||||||
if nil != tableCell.Value && nil != tableCell.Value.Email {
|
|
||||||
tableCell.Value.Email.Content = util.EscapeHTML(tableCell.Value.Email.Content)
|
|
||||||
}
|
|
||||||
case av.KeyTypeURL:
|
|
||||||
if nil != tableCell.Value && nil != tableCell.Value.URL {
|
|
||||||
tableCell.Value.URL.Content = util.EscapeHTML(tableCell.Value.URL.Content)
|
|
||||||
}
|
|
||||||
case av.KeyTypePhone:
|
|
||||||
if nil != tableCell.Value && nil != tableCell.Value.Phone {
|
|
||||||
tableCell.Value.Phone.Content = util.EscapeHTML(tableCell.Value.Phone.Content)
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
treenode.FillAttributeViewTableCellNilValue(tableCell, rowID, col.ID)
|
|
||||||
|
|
||||||
tableRow.Cells = append(tableRow.Cells, tableCell)
|
|
||||||
}
|
|
||||||
ret.Rows = append(ret.Rows, &tableRow)
|
|
||||||
}
|
|
||||||
|
|
||||||
// 渲染自动生成的列值,比如关联列、汇总列、创建时间列和更新时间列
|
|
||||||
for _, row := range ret.Rows {
|
|
||||||
for _, cell := range row.Cells {
|
|
||||||
switch cell.ValueType {
|
|
||||||
case av.KeyTypeRollup: // 渲染汇总列
|
|
||||||
rollupKey, _ := attrView.GetKey(cell.Value.KeyID)
|
|
||||||
if nil == rollupKey || nil == rollupKey.Rollup {
|
|
||||||
break
|
|
||||||
}
|
|
||||||
|
|
||||||
relKey, _ := attrView.GetKey(rollupKey.Rollup.RelationKeyID)
|
|
||||||
if nil == relKey || nil == relKey.Relation {
|
|
||||||
break
|
|
||||||
}
|
|
||||||
|
|
||||||
relVal := attrView.GetValue(relKey.ID, row.ID)
|
|
||||||
if nil == relVal || nil == relVal.Relation {
|
|
||||||
break
|
|
||||||
}
|
|
||||||
|
|
||||||
destAv, _ := av.ParseAttributeView(relKey.Relation.AvID)
|
|
||||||
if nil == destAv {
|
|
||||||
break
|
|
||||||
}
|
|
||||||
|
|
||||||
destKey, _ := destAv.GetKey(rollupKey.Rollup.KeyID)
|
|
||||||
if nil == destKey {
|
|
||||||
continue
|
|
||||||
}
|
|
||||||
|
|
||||||
for _, blockID := range relVal.Relation.BlockIDs {
|
|
||||||
destVal := destAv.GetValue(rollupKey.Rollup.KeyID, blockID)
|
|
||||||
if nil == destVal {
|
|
||||||
if destAv.ExistBlock(blockID) { // 数据库中存在行但是列值不存在是数据未初始化,这里补一个默认值
|
|
||||||
destVal = av.GetAttributeViewDefaultValue(ast.NewNodeID(), rollupKey.Rollup.KeyID, blockID, destKey.Type)
|
|
||||||
}
|
|
||||||
if nil == destVal {
|
|
||||||
continue
|
|
||||||
}
|
|
||||||
}
|
|
||||||
if av.KeyTypeNumber == destKey.Type {
|
|
||||||
destVal.Number.Format = destKey.NumberFormat
|
|
||||||
destVal.Number.FormatNumber()
|
|
||||||
}
|
|
||||||
|
|
||||||
cell.Value.Rollup.Contents = append(cell.Value.Rollup.Contents, destVal.Clone())
|
|
||||||
}
|
|
||||||
|
|
||||||
cell.Value.Rollup.RenderContents(rollupKey.Rollup.Calc, destKey)
|
|
||||||
|
|
||||||
// 将汇总列的值保存到 rows 中,后续渲染模板列的时候会用到,下同
|
|
||||||
// Database table view template columns support reading relation, rollup, created and updated columns https://github.com/siyuan-note/siyuan/issues/10442
|
|
||||||
keyValues := rows[row.ID]
|
|
||||||
keyValues = append(keyValues, &av.KeyValues{Key: rollupKey, Values: []*av.Value{{ID: cell.Value.ID, KeyID: rollupKey.ID, BlockID: row.ID, Type: av.KeyTypeRollup, Rollup: cell.Value.Rollup}}})
|
|
||||||
rows[row.ID] = keyValues
|
|
||||||
case av.KeyTypeRelation: // 渲染关联列
|
|
||||||
relKey, _ := attrView.GetKey(cell.Value.KeyID)
|
|
||||||
if nil != relKey && nil != relKey.Relation {
|
|
||||||
destAv, _ := av.ParseAttributeView(relKey.Relation.AvID)
|
|
||||||
if nil != destAv {
|
|
||||||
blocks := map[string]*av.Value{}
|
|
||||||
for _, blockValue := range destAv.GetBlockKeyValues().Values {
|
|
||||||
blocks[blockValue.BlockID] = blockValue
|
|
||||||
}
|
|
||||||
for _, blockID := range cell.Value.Relation.BlockIDs {
|
|
||||||
if val := blocks[blockID]; nil != val {
|
|
||||||
cell.Value.Relation.Contents = append(cell.Value.Relation.Contents, val)
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
keyValues := rows[row.ID]
|
|
||||||
keyValues = append(keyValues, &av.KeyValues{Key: relKey, Values: []*av.Value{{ID: cell.Value.ID, KeyID: relKey.ID, BlockID: row.ID, Type: av.KeyTypeRelation, Relation: cell.Value.Relation}}})
|
|
||||||
rows[row.ID] = keyValues
|
|
||||||
case av.KeyTypeCreated: // 渲染创建时间
|
|
||||||
createdStr := row.ID[:len("20060102150405")]
|
|
||||||
created, parseErr := time.ParseInLocation("20060102150405", createdStr, time.Local)
|
|
||||||
if nil == parseErr {
|
|
||||||
cell.Value.Created = av.NewFormattedValueCreated(created.UnixMilli(), 0, av.CreatedFormatNone)
|
|
||||||
cell.Value.Created.IsNotEmpty = true
|
|
||||||
} else {
|
|
||||||
cell.Value.Created = av.NewFormattedValueCreated(time.Now().UnixMilli(), 0, av.CreatedFormatNone)
|
|
||||||
}
|
|
||||||
|
|
||||||
keyValues := rows[row.ID]
|
|
||||||
createdKey, _ := attrView.GetKey(cell.Value.KeyID)
|
|
||||||
keyValues = append(keyValues, &av.KeyValues{Key: createdKey, Values: []*av.Value{{ID: cell.Value.ID, KeyID: createdKey.ID, BlockID: row.ID, Type: av.KeyTypeCreated, Created: cell.Value.Created}}})
|
|
||||||
rows[row.ID] = keyValues
|
|
||||||
case av.KeyTypeUpdated: // 渲染更新时间
|
|
||||||
ial := map[string]string{}
|
|
||||||
block := row.GetBlockValue()
|
|
||||||
if nil != block && !block.IsDetached {
|
|
||||||
ial = GetBlockAttrsWithoutWaitWriting(row.ID)
|
|
||||||
}
|
|
||||||
updatedStr := ial["updated"]
|
|
||||||
if "" == updatedStr && nil != block {
|
|
||||||
cell.Value.Updated = av.NewFormattedValueUpdated(block.Block.Updated, 0, av.UpdatedFormatNone)
|
|
||||||
cell.Value.Updated.IsNotEmpty = true
|
|
||||||
} else {
|
|
||||||
updated, parseErr := time.ParseInLocation("20060102150405", updatedStr, time.Local)
|
|
||||||
if nil == parseErr {
|
|
||||||
cell.Value.Updated = av.NewFormattedValueUpdated(updated.UnixMilli(), 0, av.UpdatedFormatNone)
|
|
||||||
cell.Value.Updated.IsNotEmpty = true
|
|
||||||
} else {
|
|
||||||
cell.Value.Updated = av.NewFormattedValueUpdated(time.Now().UnixMilli(), 0, av.UpdatedFormatNone)
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
keyValues := rows[row.ID]
|
|
||||||
updatedKey, _ := attrView.GetKey(cell.Value.KeyID)
|
|
||||||
keyValues = append(keyValues, &av.KeyValues{Key: updatedKey, Values: []*av.Value{{ID: cell.Value.ID, KeyID: updatedKey.ID, BlockID: row.ID, Type: av.KeyTypeUpdated, Updated: cell.Value.Updated}}})
|
|
||||||
rows[row.ID] = keyValues
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
// 最后单独渲染模板列,这样模板列就可以使用汇总、关联、创建时间和更新时间列的值了
|
|
||||||
// Database table view template columns support reading relation, rollup, created and updated columns https://github.com/siyuan-note/siyuan/issues/10442
|
|
||||||
|
|
||||||
// 获取闪卡信息
|
|
||||||
flashcards := map[string]*Flashcard{}
|
|
||||||
//deck := Decks[builtinDeckID]
|
|
||||||
//if nil != deck {
|
|
||||||
// var blockIDs []string
|
|
||||||
// for _, row := range ret.Rows {
|
|
||||||
// blockIDs = append(blockIDs, row.ID)
|
|
||||||
// }
|
|
||||||
// cards := deck.GetCardsByBlockIDs(blockIDs)
|
|
||||||
// now := time.Now()
|
|
||||||
// for _, card := range cards {
|
|
||||||
// flashcards[card.BlockID()] = newFlashcard(card, builtinDeckID, now)
|
|
||||||
// }
|
|
||||||
//}
|
|
||||||
|
|
||||||
var renderTemplateErr error
|
|
||||||
for _, row := range ret.Rows {
|
|
||||||
for _, cell := range row.Cells {
|
|
||||||
switch cell.ValueType {
|
|
||||||
case av.KeyTypeTemplate: // 渲染模板列
|
|
||||||
keyValues := rows[row.ID]
|
|
||||||
ial := map[string]string{}
|
|
||||||
block := row.GetBlockValue()
|
|
||||||
if nil != block && !block.IsDetached {
|
|
||||||
ial = GetBlockAttrsWithoutWaitWriting(row.ID)
|
|
||||||
}
|
|
||||||
content, renderErr := renderTemplateCol(ial, flashcards[row.ID], keyValues, cell.Value.Template.Content)
|
|
||||||
cell.Value.Template.Content = content
|
|
||||||
if nil != renderErr {
|
|
||||||
key, _ := attrView.GetKey(cell.Value.KeyID)
|
|
||||||
keyName := ""
|
|
||||||
if nil != key {
|
|
||||||
keyName = key.Name
|
|
||||||
}
|
|
||||||
renderTemplateErr = fmt.Errorf("database [%s] template field [%s] rendering failed: %s", getAttrViewName(attrView), keyName, renderErr)
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
if nil != renderTemplateErr {
|
|
||||||
util.PushErrMsg(fmt.Sprintf(Conf.Language(44), util.EscapeHTML(renderTemplateErr.Error())), 30000)
|
|
||||||
}
|
|
||||||
|
|
||||||
// 根据搜索条件过滤
|
|
||||||
query = strings.TrimSpace(query)
|
|
||||||
if "" != query {
|
|
||||||
keywords := strings.Split(query, " ")
|
|
||||||
var hitRows []*av.TableRow
|
|
||||||
for _, row := range ret.Rows {
|
|
||||||
hit := false
|
|
||||||
for _, cell := range row.Cells {
|
|
||||||
for _, keyword := range keywords {
|
|
||||||
if strings.Contains(strings.ToLower(cell.Value.String(true)), strings.ToLower(keyword)) {
|
|
||||||
hit = true
|
|
||||||
break
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
if hit {
|
|
||||||
hitRows = append(hitRows, row)
|
|
||||||
}
|
|
||||||
}
|
|
||||||
ret.Rows = hitRows
|
|
||||||
if 1 > len(ret.Rows) {
|
|
||||||
ret.Rows = []*av.TableRow{}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
// 自定义排序
|
|
||||||
sortRowIDs := map[string]int{}
|
|
||||||
if 0 < len(view.Table.RowIDs) {
|
|
||||||
for i, rowID := range view.Table.RowIDs {
|
|
||||||
sortRowIDs[rowID] = i
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
sort.Slice(ret.Rows, func(i, j int) bool {
|
|
||||||
iv := sortRowIDs[ret.Rows[i].ID]
|
|
||||||
jv := sortRowIDs[ret.Rows[j].ID]
|
|
||||||
if iv == jv {
|
|
||||||
return ret.Rows[i].ID < ret.Rows[j].ID
|
|
||||||
}
|
|
||||||
return iv < jv
|
|
||||||
})
|
|
||||||
return
|
|
||||||
}
|
|
||||||
|
|
||||||
func getRowBlockValue(keyValues []*av.KeyValues) (ret *av.Value) {
|
func getRowBlockValue(keyValues []*av.KeyValues) (ret *av.Value) {
|
||||||
for _, kv := range keyValues {
|
for _, kv := range keyValues {
|
||||||
if av.KeyTypeBlock == kv.Key.Type && 0 < len(kv.Values) {
|
if av.KeyTypeBlock == kv.Key.Type && 0 < len(kv.Values) {
|
||||||
|
|
@ -2316,7 +1842,7 @@ func addAttributeViewBlock(now int64, avID, blockID, previousBlockID, addingBloc
|
||||||
// 如果存在过滤条件,则将过滤条件应用到新添加的块上
|
// 如果存在过滤条件,则将过滤条件应用到新添加的块上
|
||||||
view, _ := getAttrViewViewByBlockID(attrView, blockID)
|
view, _ := getAttrViewViewByBlockID(attrView, blockID)
|
||||||
if nil != view && 0 < len(view.Table.Filters) && !ignoreFillFilter {
|
if nil != view && 0 < len(view.Table.Filters) && !ignoreFillFilter {
|
||||||
viewable, _ := renderAttributeViewTable(attrView, view, "")
|
viewable, _ := sql.RenderAttributeViewTable(attrView, view, "", GetBlockAttrsWithoutWaitWriting)
|
||||||
viewable.FilterRows(attrView)
|
viewable.FilterRows(attrView)
|
||||||
viewable.SortRows(attrView)
|
viewable.SortRows(attrView)
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -66,7 +66,7 @@ func SetBlockReminder(id string, timed string) (err error) {
|
||||||
if ast.NodeDocument != node.Type && node.IsContainerBlock() {
|
if ast.NodeDocument != node.Type && node.IsContainerBlock() {
|
||||||
node = treenode.FirstLeafBlock(node)
|
node = treenode.FirstLeafBlock(node)
|
||||||
}
|
}
|
||||||
content := treenode.NodeStaticContent(node, nil, false, false, false)
|
content := sql.NodeStaticContent(node, nil, false, false, false, GetBlockAttrsWithoutWaitWriting)
|
||||||
content = gulu.Str.SubStr(content, 128)
|
content = gulu.Str.SubStr(content, 128)
|
||||||
err = SetCloudBlockReminder(id, content, timedMills)
|
err = SetCloudBlockReminder(id, content, timedMills)
|
||||||
if nil != err {
|
if nil != err {
|
||||||
|
|
|
||||||
|
|
@ -79,7 +79,7 @@ func ExportAv2CSV(avID, blockID string) (zipPath string, err error) {
|
||||||
name = Conf.language(105)
|
name = Conf.language(105)
|
||||||
}
|
}
|
||||||
|
|
||||||
table, err := renderAttributeViewTable(attrView, view, "")
|
table, err := sql.RenderAttributeViewTable(attrView, view, "", GetBlockAttrsWithoutWaitWriting)
|
||||||
if nil != err {
|
if nil != err {
|
||||||
logging.LogErrorf("render attribute view [%s] table failed: %s", avID, err)
|
logging.LogErrorf("render attribute view [%s] table failed: %s", avID, err)
|
||||||
return
|
return
|
||||||
|
|
@ -2297,7 +2297,7 @@ func exportTree(tree *parse.Tree, wysiwyg, expandKaTexMacros, keepFold bool,
|
||||||
return ast.WalkContinue
|
return ast.WalkContinue
|
||||||
}
|
}
|
||||||
|
|
||||||
table, err := renderAttributeViewTable(attrView, view, "")
|
table, err := sql.RenderAttributeViewTable(attrView, view, "", GetBlockAttrsWithoutWaitWriting)
|
||||||
if nil != err {
|
if nil != err {
|
||||||
logging.LogErrorf("render attribute view [%s] table failed: %s", avID, err)
|
logging.LogErrorf("render attribute view [%s] table failed: %s", avID, err)
|
||||||
return ast.WalkContinue
|
return ast.WalkContinue
|
||||||
|
|
|
||||||
|
|
@ -93,7 +93,7 @@ func renderOutline(heading *ast.Node, luteEngine *lute.Lute) (ret string) {
|
||||||
}
|
}
|
||||||
|
|
||||||
func renderBlockText(node *ast.Node, excludeTypes []string) (ret string) {
|
func renderBlockText(node *ast.Node, excludeTypes []string) (ret string) {
|
||||||
ret = treenode.NodeStaticContent(node, excludeTypes, false, false, false)
|
ret = sql.NodeStaticContent(node, excludeTypes, false, false, false, GetBlockAttrsWithoutWaitWriting)
|
||||||
ret = strings.TrimSpace(ret)
|
ret = strings.TrimSpace(ret)
|
||||||
ret = strings.ReplaceAll(ret, "\n", "")
|
ret = strings.ReplaceAll(ret, "\n", "")
|
||||||
ret = util.EscapeHTML(ret)
|
ret = util.EscapeHTML(ret)
|
||||||
|
|
@ -156,7 +156,7 @@ func renderBlockContentByNodes(nodes []*ast.Node) string {
|
||||||
|
|
||||||
buf := bytes.Buffer{}
|
buf := bytes.Buffer{}
|
||||||
for _, n := range subNodes {
|
for _, n := range subNodes {
|
||||||
buf.WriteString(treenode.NodeStaticContent(n, nil, false, false, false))
|
buf.WriteString(sql.NodeStaticContent(n, nil, false, false, false, GetBlockAttrsWithoutWaitWriting))
|
||||||
}
|
}
|
||||||
return buf.String()
|
return buf.String()
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -43,7 +43,7 @@ import (
|
||||||
func RenderGoTemplate(templateContent string) (ret string, err error) {
|
func RenderGoTemplate(templateContent string) (ret string, err error) {
|
||||||
tmpl := template.New("")
|
tmpl := template.New("")
|
||||||
tplFuncMap := util.BuiltInTemplateFuncs()
|
tplFuncMap := util.BuiltInTemplateFuncs()
|
||||||
SQLTemplateFuncs(&tplFuncMap)
|
sql.SQLTemplateFuncs(&tplFuncMap)
|
||||||
tmpl = tmpl.Funcs(tplFuncMap)
|
tmpl = tmpl.Funcs(tplFuncMap)
|
||||||
tpl, err := tmpl.Parse(templateContent)
|
tpl, err := tmpl.Parse(templateContent)
|
||||||
if nil != err {
|
if nil != err {
|
||||||
|
|
@ -225,7 +225,7 @@ func RenderTemplate(p, id string, preview bool) (tree *parse.Tree, dom string, e
|
||||||
|
|
||||||
goTpl := template.New("").Delims(".action{", "}")
|
goTpl := template.New("").Delims(".action{", "}")
|
||||||
tplFuncMap := util.BuiltInTemplateFuncs()
|
tplFuncMap := util.BuiltInTemplateFuncs()
|
||||||
SQLTemplateFuncs(&tplFuncMap)
|
sql.SQLTemplateFuncs(&tplFuncMap)
|
||||||
goTpl = goTpl.Funcs(tplFuncMap)
|
goTpl = goTpl.Funcs(tplFuncMap)
|
||||||
tpl, err := goTpl.Funcs(tplFuncMap).Parse(gulu.Str.FromBytes(md))
|
tpl, err := goTpl.Funcs(tplFuncMap).Parse(gulu.Str.FromBytes(md))
|
||||||
if nil != err {
|
if nil != err {
|
||||||
|
|
@ -314,7 +314,7 @@ func RenderTemplate(p, id string, preview bool) (tree *parse.Tree, dom string, e
|
||||||
return ast.WalkContinue
|
return ast.WalkContinue
|
||||||
}
|
}
|
||||||
|
|
||||||
table, renderErr := renderAttributeViewTable(attrView, view, "")
|
table, renderErr := sql.RenderAttributeViewTable(attrView, view, "", GetBlockAttrsWithoutWaitWriting)
|
||||||
if nil != renderErr {
|
if nil != renderErr {
|
||||||
logging.LogErrorf("render attribute view [%s] table failed: %s", n.AttributeViewID, renderErr)
|
logging.LogErrorf("render attribute view [%s] table failed: %s", n.AttributeViewID, renderErr)
|
||||||
return ast.WalkContinue
|
return ast.WalkContinue
|
||||||
|
|
@ -405,20 +405,3 @@ func addBlockIALNodes(tree *parse.Tree, removeUpdated bool) {
|
||||||
block.InsertAfter(&ast.Node{Type: ast.NodeKramdownBlockIAL, Tokens: parse.IAL2Tokens(block.KramdownIAL)})
|
block.InsertAfter(&ast.Node{Type: ast.NodeKramdownBlockIAL, Tokens: parse.IAL2Tokens(block.KramdownIAL)})
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
func SQLTemplateFuncs(templateFuncMap *template.FuncMap) {
|
|
||||||
(*templateFuncMap)["queryBlocks"] = func(stmt string, args ...string) (retBlocks []*sql.Block) {
|
|
||||||
for _, arg := range args {
|
|
||||||
stmt = strings.Replace(stmt, "?", arg, 1)
|
|
||||||
}
|
|
||||||
retBlocks = sql.SelectBlocksRawStmt(stmt, 1, 512)
|
|
||||||
return
|
|
||||||
}
|
|
||||||
(*templateFuncMap)["querySpans"] = func(stmt string, args ...string) (retSpans []*sql.Span) {
|
|
||||||
for _, arg := range args {
|
|
||||||
stmt = strings.Replace(stmt, "?", arg, 1)
|
|
||||||
}
|
|
||||||
retSpans = sql.SelectSpansRawStmt(stmt, 512)
|
|
||||||
return
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
|
||||||
|
|
@ -52,7 +52,7 @@ func getBlockVirtualRefKeywords(root *ast.Node) (ret []string) {
|
||||||
return ast.WalkContinue
|
return ast.WalkContinue
|
||||||
}
|
}
|
||||||
|
|
||||||
content := treenode.NodeStaticContent(n, nil, false, false, false)
|
content := sql.NodeStaticContent(n, nil, false, false, false, GetBlockAttrsWithoutWaitWriting)
|
||||||
buf.WriteString(content)
|
buf.WriteString(content)
|
||||||
return ast.WalkContinue
|
return ast.WalkContinue
|
||||||
})
|
})
|
||||||
|
|
|
||||||
638
kernel/sql/av.go
Normal file
638
kernel/sql/av.go
Normal file
|
|
@ -0,0 +1,638 @@
|
||||||
|
// SiYuan - Refactor your thinking
|
||||||
|
// Copyright (c) 2020-present, b3log.org
|
||||||
|
//
|
||||||
|
// This program is free software: you can redistribute it and/or modify
|
||||||
|
// it under the terms of the GNU Affero General Public License as published by
|
||||||
|
// the Free Software Foundation, either version 3 of the License, or
|
||||||
|
// (at your option) any later version.
|
||||||
|
//
|
||||||
|
// This program is distributed in the hope that it will be useful,
|
||||||
|
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||||
|
// GNU Affero General Public License for more details.
|
||||||
|
//
|
||||||
|
// You should have received a copy of the GNU Affero General Public License
|
||||||
|
// along with this program. If not, see <https://www.gnu.org/licenses/>.
|
||||||
|
|
||||||
|
package sql
|
||||||
|
|
||||||
|
import (
|
||||||
|
"bytes"
|
||||||
|
"fmt"
|
||||||
|
"sort"
|
||||||
|
"strings"
|
||||||
|
"text/template"
|
||||||
|
"time"
|
||||||
|
|
||||||
|
"github.com/88250/lute/ast"
|
||||||
|
"github.com/siyuan-note/logging"
|
||||||
|
"github.com/siyuan-note/siyuan/kernel/av"
|
||||||
|
"github.com/siyuan-note/siyuan/kernel/cache"
|
||||||
|
"github.com/siyuan-note/siyuan/kernel/treenode"
|
||||||
|
"github.com/siyuan-note/siyuan/kernel/util"
|
||||||
|
)
|
||||||
|
|
||||||
|
func RenderAttributeViewTable(attrView *av.AttributeView, view *av.View, query string,
|
||||||
|
GetBlockAttrsWithoutWaitWriting func(id string) (ret map[string]string)) (ret *av.Table, err error) {
|
||||||
|
if nil == GetBlockAttrsWithoutWaitWriting {
|
||||||
|
GetBlockAttrsWithoutWaitWriting = func(id string) (ret map[string]string) {
|
||||||
|
ret = cache.GetBlockIAL(id)
|
||||||
|
if nil == ret {
|
||||||
|
ret = map[string]string{}
|
||||||
|
}
|
||||||
|
return
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
ret = &av.Table{
|
||||||
|
ID: view.ID,
|
||||||
|
Icon: view.Icon,
|
||||||
|
Name: view.Name,
|
||||||
|
HideAttrViewName: view.HideAttrViewName,
|
||||||
|
Columns: []*av.TableColumn{},
|
||||||
|
Rows: []*av.TableRow{},
|
||||||
|
Filters: view.Table.Filters,
|
||||||
|
Sorts: view.Table.Sorts,
|
||||||
|
}
|
||||||
|
|
||||||
|
// 组装列
|
||||||
|
for _, col := range view.Table.Columns {
|
||||||
|
key, getErr := attrView.GetKey(col.ID)
|
||||||
|
if nil != getErr {
|
||||||
|
err = getErr
|
||||||
|
return
|
||||||
|
}
|
||||||
|
|
||||||
|
ret.Columns = append(ret.Columns, &av.TableColumn{
|
||||||
|
ID: key.ID,
|
||||||
|
Name: key.Name,
|
||||||
|
Type: key.Type,
|
||||||
|
Icon: key.Icon,
|
||||||
|
Options: key.Options,
|
||||||
|
NumberFormat: key.NumberFormat,
|
||||||
|
Template: key.Template,
|
||||||
|
Relation: key.Relation,
|
||||||
|
Rollup: key.Rollup,
|
||||||
|
Date: key.Date,
|
||||||
|
Wrap: col.Wrap,
|
||||||
|
Hidden: col.Hidden,
|
||||||
|
Width: col.Width,
|
||||||
|
Pin: col.Pin,
|
||||||
|
Calc: col.Calc,
|
||||||
|
})
|
||||||
|
}
|
||||||
|
|
||||||
|
// 生成行
|
||||||
|
rows := map[string][]*av.KeyValues{}
|
||||||
|
for _, keyValues := range attrView.KeyValues {
|
||||||
|
for _, val := range keyValues.Values {
|
||||||
|
values := rows[val.BlockID]
|
||||||
|
if nil == values {
|
||||||
|
values = []*av.KeyValues{{Key: keyValues.Key, Values: []*av.Value{val}}}
|
||||||
|
} else {
|
||||||
|
values = append(values, &av.KeyValues{Key: keyValues.Key, Values: []*av.Value{val}})
|
||||||
|
}
|
||||||
|
rows[val.BlockID] = values
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
// 过滤掉不存在的行
|
||||||
|
var notFound []string
|
||||||
|
for blockID, keyValues := range rows {
|
||||||
|
blockValue := getRowBlockValue(keyValues)
|
||||||
|
if nil == blockValue {
|
||||||
|
notFound = append(notFound, blockID)
|
||||||
|
continue
|
||||||
|
}
|
||||||
|
|
||||||
|
if blockValue.IsDetached {
|
||||||
|
continue
|
||||||
|
}
|
||||||
|
|
||||||
|
if nil != blockValue.Block && "" == blockValue.Block.ID {
|
||||||
|
notFound = append(notFound, blockID)
|
||||||
|
continue
|
||||||
|
}
|
||||||
|
|
||||||
|
if nil == treenode.GetBlockTree(blockID) {
|
||||||
|
notFound = append(notFound, blockID)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
for _, blockID := range notFound {
|
||||||
|
delete(rows, blockID)
|
||||||
|
}
|
||||||
|
|
||||||
|
// 生成行单元格
|
||||||
|
for rowID, row := range rows {
|
||||||
|
var tableRow av.TableRow
|
||||||
|
for _, col := range ret.Columns {
|
||||||
|
var tableCell *av.TableCell
|
||||||
|
for _, keyValues := range row {
|
||||||
|
if keyValues.Key.ID == col.ID {
|
||||||
|
tableCell = &av.TableCell{
|
||||||
|
ID: keyValues.Values[0].ID,
|
||||||
|
Value: keyValues.Values[0],
|
||||||
|
ValueType: col.Type,
|
||||||
|
}
|
||||||
|
break
|
||||||
|
}
|
||||||
|
}
|
||||||
|
if nil == tableCell {
|
||||||
|
tableCell = &av.TableCell{
|
||||||
|
ID: ast.NewNodeID(),
|
||||||
|
ValueType: col.Type,
|
||||||
|
}
|
||||||
|
}
|
||||||
|
tableRow.ID = rowID
|
||||||
|
|
||||||
|
switch tableCell.ValueType {
|
||||||
|
case av.KeyTypeNumber: // 格式化数字
|
||||||
|
if nil != tableCell.Value && nil != tableCell.Value.Number && tableCell.Value.Number.IsNotEmpty {
|
||||||
|
tableCell.Value.Number.Format = col.NumberFormat
|
||||||
|
tableCell.Value.Number.FormatNumber()
|
||||||
|
}
|
||||||
|
case av.KeyTypeTemplate: // 渲染模板列
|
||||||
|
tableCell.Value = &av.Value{ID: tableCell.ID, KeyID: col.ID, BlockID: rowID, Type: av.KeyTypeTemplate, Template: &av.ValueTemplate{Content: col.Template}}
|
||||||
|
case av.KeyTypeCreated: // 填充创建时间列值,后面再渲染
|
||||||
|
tableCell.Value = &av.Value{ID: tableCell.ID, KeyID: col.ID, BlockID: rowID, Type: av.KeyTypeCreated}
|
||||||
|
case av.KeyTypeUpdated: // 填充更新时间列值,后面再渲染
|
||||||
|
tableCell.Value = &av.Value{ID: tableCell.ID, KeyID: col.ID, BlockID: rowID, Type: av.KeyTypeUpdated}
|
||||||
|
case av.KeyTypeRelation: // 清空关联列值,后面再渲染 https://ld246.com/article/1703831044435
|
||||||
|
if nil != tableCell.Value && nil != tableCell.Value.Relation {
|
||||||
|
tableCell.Value.Relation.Contents = nil
|
||||||
|
}
|
||||||
|
case av.KeyTypeText:
|
||||||
|
if nil != tableCell.Value && nil != tableCell.Value.Text {
|
||||||
|
tableCell.Value.Text.Content = util.EscapeHTML(tableCell.Value.Text.Content)
|
||||||
|
}
|
||||||
|
case av.KeyTypeEmail:
|
||||||
|
if nil != tableCell.Value && nil != tableCell.Value.Email {
|
||||||
|
tableCell.Value.Email.Content = util.EscapeHTML(tableCell.Value.Email.Content)
|
||||||
|
}
|
||||||
|
case av.KeyTypeURL:
|
||||||
|
if nil != tableCell.Value && nil != tableCell.Value.URL {
|
||||||
|
tableCell.Value.URL.Content = util.EscapeHTML(tableCell.Value.URL.Content)
|
||||||
|
}
|
||||||
|
case av.KeyTypePhone:
|
||||||
|
if nil != tableCell.Value && nil != tableCell.Value.Phone {
|
||||||
|
tableCell.Value.Phone.Content = util.EscapeHTML(tableCell.Value.Phone.Content)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
FillAttributeViewTableCellNilValue(tableCell, rowID, col.ID)
|
||||||
|
|
||||||
|
tableRow.Cells = append(tableRow.Cells, tableCell)
|
||||||
|
}
|
||||||
|
ret.Rows = append(ret.Rows, &tableRow)
|
||||||
|
}
|
||||||
|
|
||||||
|
// 渲染自动生成的列值,比如关联列、汇总列、创建时间列和更新时间列
|
||||||
|
for _, row := range ret.Rows {
|
||||||
|
for _, cell := range row.Cells {
|
||||||
|
switch cell.ValueType {
|
||||||
|
case av.KeyTypeRollup: // 渲染汇总列
|
||||||
|
rollupKey, _ := attrView.GetKey(cell.Value.KeyID)
|
||||||
|
if nil == rollupKey || nil == rollupKey.Rollup {
|
||||||
|
break
|
||||||
|
}
|
||||||
|
|
||||||
|
relKey, _ := attrView.GetKey(rollupKey.Rollup.RelationKeyID)
|
||||||
|
if nil == relKey || nil == relKey.Relation {
|
||||||
|
break
|
||||||
|
}
|
||||||
|
|
||||||
|
relVal := attrView.GetValue(relKey.ID, row.ID)
|
||||||
|
if nil == relVal || nil == relVal.Relation {
|
||||||
|
break
|
||||||
|
}
|
||||||
|
|
||||||
|
destAv, _ := av.ParseAttributeView(relKey.Relation.AvID)
|
||||||
|
if nil == destAv {
|
||||||
|
break
|
||||||
|
}
|
||||||
|
|
||||||
|
destKey, _ := destAv.GetKey(rollupKey.Rollup.KeyID)
|
||||||
|
if nil == destKey {
|
||||||
|
continue
|
||||||
|
}
|
||||||
|
|
||||||
|
for _, blockID := range relVal.Relation.BlockIDs {
|
||||||
|
destVal := destAv.GetValue(rollupKey.Rollup.KeyID, blockID)
|
||||||
|
if nil == destVal {
|
||||||
|
if destAv.ExistBlock(blockID) { // 数据库中存在行但是列值不存在是数据未初始化,这里补一个默认值
|
||||||
|
destVal = av.GetAttributeViewDefaultValue(ast.NewNodeID(), rollupKey.Rollup.KeyID, blockID, destKey.Type)
|
||||||
|
}
|
||||||
|
if nil == destVal {
|
||||||
|
continue
|
||||||
|
}
|
||||||
|
}
|
||||||
|
if av.KeyTypeNumber == destKey.Type {
|
||||||
|
destVal.Number.Format = destKey.NumberFormat
|
||||||
|
destVal.Number.FormatNumber()
|
||||||
|
}
|
||||||
|
|
||||||
|
cell.Value.Rollup.Contents = append(cell.Value.Rollup.Contents, destVal.Clone())
|
||||||
|
}
|
||||||
|
|
||||||
|
cell.Value.Rollup.RenderContents(rollupKey.Rollup.Calc, destKey)
|
||||||
|
|
||||||
|
// 将汇总列的值保存到 rows 中,后续渲染模板列的时候会用到,下同
|
||||||
|
// Database table view template columns support reading relation, rollup, created and updated columns https://github.com/siyuan-note/siyuan/issues/10442
|
||||||
|
keyValues := rows[row.ID]
|
||||||
|
keyValues = append(keyValues, &av.KeyValues{Key: rollupKey, Values: []*av.Value{{ID: cell.Value.ID, KeyID: rollupKey.ID, BlockID: row.ID, Type: av.KeyTypeRollup, Rollup: cell.Value.Rollup}}})
|
||||||
|
rows[row.ID] = keyValues
|
||||||
|
case av.KeyTypeRelation: // 渲染关联列
|
||||||
|
relKey, _ := attrView.GetKey(cell.Value.KeyID)
|
||||||
|
if nil != relKey && nil != relKey.Relation {
|
||||||
|
destAv, _ := av.ParseAttributeView(relKey.Relation.AvID)
|
||||||
|
if nil != destAv {
|
||||||
|
blocks := map[string]*av.Value{}
|
||||||
|
for _, blockValue := range destAv.GetBlockKeyValues().Values {
|
||||||
|
blocks[blockValue.BlockID] = blockValue
|
||||||
|
}
|
||||||
|
for _, blockID := range cell.Value.Relation.BlockIDs {
|
||||||
|
if val := blocks[blockID]; nil != val {
|
||||||
|
cell.Value.Relation.Contents = append(cell.Value.Relation.Contents, val)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
keyValues := rows[row.ID]
|
||||||
|
keyValues = append(keyValues, &av.KeyValues{Key: relKey, Values: []*av.Value{{ID: cell.Value.ID, KeyID: relKey.ID, BlockID: row.ID, Type: av.KeyTypeRelation, Relation: cell.Value.Relation}}})
|
||||||
|
rows[row.ID] = keyValues
|
||||||
|
case av.KeyTypeCreated: // 渲染创建时间
|
||||||
|
createdStr := row.ID[:len("20060102150405")]
|
||||||
|
created, parseErr := time.ParseInLocation("20060102150405", createdStr, time.Local)
|
||||||
|
if nil == parseErr {
|
||||||
|
cell.Value.Created = av.NewFormattedValueCreated(created.UnixMilli(), 0, av.CreatedFormatNone)
|
||||||
|
cell.Value.Created.IsNotEmpty = true
|
||||||
|
} else {
|
||||||
|
cell.Value.Created = av.NewFormattedValueCreated(time.Now().UnixMilli(), 0, av.CreatedFormatNone)
|
||||||
|
}
|
||||||
|
|
||||||
|
keyValues := rows[row.ID]
|
||||||
|
createdKey, _ := attrView.GetKey(cell.Value.KeyID)
|
||||||
|
keyValues = append(keyValues, &av.KeyValues{Key: createdKey, Values: []*av.Value{{ID: cell.Value.ID, KeyID: createdKey.ID, BlockID: row.ID, Type: av.KeyTypeCreated, Created: cell.Value.Created}}})
|
||||||
|
rows[row.ID] = keyValues
|
||||||
|
case av.KeyTypeUpdated: // 渲染更新时间
|
||||||
|
ial := map[string]string{}
|
||||||
|
block := row.GetBlockValue()
|
||||||
|
if nil != block && !block.IsDetached {
|
||||||
|
ial = GetBlockAttrsWithoutWaitWriting(row.ID)
|
||||||
|
}
|
||||||
|
updatedStr := ial["updated"]
|
||||||
|
if "" == updatedStr && nil != block {
|
||||||
|
cell.Value.Updated = av.NewFormattedValueUpdated(block.Block.Updated, 0, av.UpdatedFormatNone)
|
||||||
|
cell.Value.Updated.IsNotEmpty = true
|
||||||
|
} else {
|
||||||
|
updated, parseErr := time.ParseInLocation("20060102150405", updatedStr, time.Local)
|
||||||
|
if nil == parseErr {
|
||||||
|
cell.Value.Updated = av.NewFormattedValueUpdated(updated.UnixMilli(), 0, av.UpdatedFormatNone)
|
||||||
|
cell.Value.Updated.IsNotEmpty = true
|
||||||
|
} else {
|
||||||
|
cell.Value.Updated = av.NewFormattedValueUpdated(time.Now().UnixMilli(), 0, av.UpdatedFormatNone)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
keyValues := rows[row.ID]
|
||||||
|
updatedKey, _ := attrView.GetKey(cell.Value.KeyID)
|
||||||
|
keyValues = append(keyValues, &av.KeyValues{Key: updatedKey, Values: []*av.Value{{ID: cell.Value.ID, KeyID: updatedKey.ID, BlockID: row.ID, Type: av.KeyTypeUpdated, Updated: cell.Value.Updated}}})
|
||||||
|
rows[row.ID] = keyValues
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
// 最后单独渲染模板列,这样模板列就可以使用汇总、关联、创建时间和更新时间列的值了
|
||||||
|
// Database table view template columns support reading relation, rollup, created and updated columns https://github.com/siyuan-note/siyuan/issues/10442
|
||||||
|
|
||||||
|
var renderTemplateErr error
|
||||||
|
for _, row := range ret.Rows {
|
||||||
|
for _, cell := range row.Cells {
|
||||||
|
switch cell.ValueType {
|
||||||
|
case av.KeyTypeTemplate: // 渲染模板列
|
||||||
|
keyValues := rows[row.ID]
|
||||||
|
ial := map[string]string{}
|
||||||
|
block := row.GetBlockValue()
|
||||||
|
if nil != block && !block.IsDetached {
|
||||||
|
ial = GetBlockAttrsWithoutWaitWriting(row.ID)
|
||||||
|
}
|
||||||
|
content, renderErr := RenderTemplateCol(ial, keyValues, cell.Value.Template.Content)
|
||||||
|
cell.Value.Template.Content = content
|
||||||
|
if nil != renderErr {
|
||||||
|
key, _ := attrView.GetKey(cell.Value.KeyID)
|
||||||
|
keyName := ""
|
||||||
|
if nil != key {
|
||||||
|
keyName = key.Name
|
||||||
|
}
|
||||||
|
renderTemplateErr = fmt.Errorf("database [%s] template field [%s] rendering failed: %s", getAttrViewName(attrView), keyName, renderErr)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
if nil != renderTemplateErr {
|
||||||
|
util.PushErrMsg(fmt.Sprintf(util.Langs[util.Lang][44], util.EscapeHTML(renderTemplateErr.Error())), 30000)
|
||||||
|
}
|
||||||
|
|
||||||
|
// 根据搜索条件过滤
|
||||||
|
query = strings.TrimSpace(query)
|
||||||
|
if "" != query {
|
||||||
|
keywords := strings.Split(query, " ")
|
||||||
|
var hitRows []*av.TableRow
|
||||||
|
for _, row := range ret.Rows {
|
||||||
|
hit := false
|
||||||
|
for _, cell := range row.Cells {
|
||||||
|
for _, keyword := range keywords {
|
||||||
|
if strings.Contains(strings.ToLower(cell.Value.String(true)), strings.ToLower(keyword)) {
|
||||||
|
hit = true
|
||||||
|
break
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
if hit {
|
||||||
|
hitRows = append(hitRows, row)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
ret.Rows = hitRows
|
||||||
|
if 1 > len(ret.Rows) {
|
||||||
|
ret.Rows = []*av.TableRow{}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
// 自定义排序
|
||||||
|
sortRowIDs := map[string]int{}
|
||||||
|
if 0 < len(view.Table.RowIDs) {
|
||||||
|
for i, rowID := range view.Table.RowIDs {
|
||||||
|
sortRowIDs[rowID] = i
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
sort.Slice(ret.Rows, func(i, j int) bool {
|
||||||
|
iv := sortRowIDs[ret.Rows[i].ID]
|
||||||
|
jv := sortRowIDs[ret.Rows[j].ID]
|
||||||
|
if iv == jv {
|
||||||
|
return ret.Rows[i].ID < ret.Rows[j].ID
|
||||||
|
}
|
||||||
|
return iv < jv
|
||||||
|
})
|
||||||
|
return
|
||||||
|
}
|
||||||
|
|
||||||
|
func RenderTemplateCol(ial map[string]string, rowValues []*av.KeyValues, tplContent string) (ret string, err error) {
|
||||||
|
if "" == ial["id"] {
|
||||||
|
block := getRowBlockValue(rowValues)
|
||||||
|
if nil != block && nil != block.Block {
|
||||||
|
ial["id"] = block.Block.ID
|
||||||
|
}
|
||||||
|
}
|
||||||
|
if "" == ial["updated"] {
|
||||||
|
block := getRowBlockValue(rowValues)
|
||||||
|
if nil != block && nil != block.Block {
|
||||||
|
ial["updated"] = time.UnixMilli(block.Block.Updated).Format("20060102150405")
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
goTpl := template.New("").Delims(".action{", "}")
|
||||||
|
tplFuncMap := util.BuiltInTemplateFuncs()
|
||||||
|
SQLTemplateFuncs(&tplFuncMap)
|
||||||
|
goTpl = goTpl.Funcs(tplFuncMap)
|
||||||
|
tpl, err := goTpl.Parse(tplContent)
|
||||||
|
if nil != err {
|
||||||
|
logging.LogWarnf("parse template [%s] failed: %s", tplContent, err)
|
||||||
|
return
|
||||||
|
}
|
||||||
|
|
||||||
|
buf := &bytes.Buffer{}
|
||||||
|
dataModel := map[string]interface{}{} // 复制一份 IAL 以避免修改原始数据
|
||||||
|
for k, v := range ial {
|
||||||
|
dataModel[k] = v
|
||||||
|
|
||||||
|
// Database template column supports `created` and `updated` built-in variables https://github.com/siyuan-note/siyuan/issues/9364
|
||||||
|
createdStr := ial["id"]
|
||||||
|
if "" != createdStr {
|
||||||
|
createdStr = createdStr[:len("20060102150405")]
|
||||||
|
}
|
||||||
|
created, parseErr := time.ParseInLocation("20060102150405", createdStr, time.Local)
|
||||||
|
if nil == parseErr {
|
||||||
|
dataModel["created"] = created
|
||||||
|
} else {
|
||||||
|
logging.LogWarnf("parse created [%s] failed: %s", createdStr, parseErr)
|
||||||
|
dataModel["created"] = time.Now()
|
||||||
|
}
|
||||||
|
updatedStr := ial["updated"]
|
||||||
|
updated, parseErr := time.ParseInLocation("20060102150405", updatedStr, time.Local)
|
||||||
|
if nil == parseErr {
|
||||||
|
dataModel["updated"] = updated
|
||||||
|
} else {
|
||||||
|
dataModel["updated"] = time.Now()
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
for _, rowValue := range rowValues {
|
||||||
|
if 1 > len(rowValue.Values) {
|
||||||
|
continue
|
||||||
|
}
|
||||||
|
|
||||||
|
v := rowValue.Values[0]
|
||||||
|
if av.KeyTypeNumber == v.Type {
|
||||||
|
if nil != v.Number && v.Number.IsNotEmpty {
|
||||||
|
dataModel[rowValue.Key.Name] = v.Number.Content
|
||||||
|
}
|
||||||
|
} else if av.KeyTypeDate == v.Type {
|
||||||
|
if nil != v.Date {
|
||||||
|
if v.Date.IsNotEmpty {
|
||||||
|
dataModel[rowValue.Key.Name] = time.UnixMilli(v.Date.Content)
|
||||||
|
}
|
||||||
|
if v.Date.IsNotEmpty2 {
|
||||||
|
dataModel[rowValue.Key.Name+"_end"] = time.UnixMilli(v.Date.Content2)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
} else if av.KeyTypeRollup == v.Type {
|
||||||
|
if 0 < len(v.Rollup.Contents) {
|
||||||
|
var numbers []float64
|
||||||
|
var contents []string
|
||||||
|
for _, content := range v.Rollup.Contents {
|
||||||
|
if av.KeyTypeNumber == content.Type {
|
||||||
|
numbers = append(numbers, content.Number.Content)
|
||||||
|
} else {
|
||||||
|
contents = append(contents, content.String(true))
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
if 0 < len(numbers) {
|
||||||
|
dataModel[rowValue.Key.Name] = numbers
|
||||||
|
} else {
|
||||||
|
dataModel[rowValue.Key.Name] = contents
|
||||||
|
}
|
||||||
|
}
|
||||||
|
} else if av.KeyTypeRelation == v.Type {
|
||||||
|
if 0 < len(v.Relation.Contents) {
|
||||||
|
var contents []string
|
||||||
|
for _, content := range v.Relation.Contents {
|
||||||
|
contents = append(contents, content.String(true))
|
||||||
|
}
|
||||||
|
dataModel[rowValue.Key.Name] = contents
|
||||||
|
}
|
||||||
|
} else {
|
||||||
|
dataModel[rowValue.Key.Name] = v.String(true)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
if err = tpl.Execute(buf, dataModel); nil != err {
|
||||||
|
logging.LogWarnf("execute template [%s] failed: %s", tplContent, err)
|
||||||
|
return
|
||||||
|
}
|
||||||
|
ret = buf.String()
|
||||||
|
return
|
||||||
|
}
|
||||||
|
|
||||||
|
func FillAttributeViewTableCellNilValue(tableCell *av.TableCell, rowID, colID string) {
|
||||||
|
if nil == tableCell.Value {
|
||||||
|
tableCell.Value = av.GetAttributeViewDefaultValue(tableCell.ID, colID, rowID, tableCell.ValueType)
|
||||||
|
return
|
||||||
|
}
|
||||||
|
|
||||||
|
tableCell.Value.Type = tableCell.ValueType
|
||||||
|
switch tableCell.ValueType {
|
||||||
|
case av.KeyTypeText:
|
||||||
|
if nil == tableCell.Value.Text {
|
||||||
|
tableCell.Value.Text = &av.ValueText{}
|
||||||
|
}
|
||||||
|
case av.KeyTypeNumber:
|
||||||
|
if nil == tableCell.Value.Number {
|
||||||
|
tableCell.Value.Number = &av.ValueNumber{}
|
||||||
|
}
|
||||||
|
case av.KeyTypeDate:
|
||||||
|
if nil == tableCell.Value.Date {
|
||||||
|
tableCell.Value.Date = &av.ValueDate{}
|
||||||
|
}
|
||||||
|
case av.KeyTypeSelect:
|
||||||
|
if 1 > len(tableCell.Value.MSelect) {
|
||||||
|
tableCell.Value.MSelect = []*av.ValueSelect{}
|
||||||
|
}
|
||||||
|
case av.KeyTypeMSelect:
|
||||||
|
if 1 > len(tableCell.Value.MSelect) {
|
||||||
|
tableCell.Value.MSelect = []*av.ValueSelect{}
|
||||||
|
}
|
||||||
|
case av.KeyTypeURL:
|
||||||
|
if nil == tableCell.Value.URL {
|
||||||
|
tableCell.Value.URL = &av.ValueURL{}
|
||||||
|
}
|
||||||
|
case av.KeyTypeEmail:
|
||||||
|
if nil == tableCell.Value.Email {
|
||||||
|
tableCell.Value.Email = &av.ValueEmail{}
|
||||||
|
}
|
||||||
|
case av.KeyTypePhone:
|
||||||
|
if nil == tableCell.Value.Phone {
|
||||||
|
tableCell.Value.Phone = &av.ValuePhone{}
|
||||||
|
}
|
||||||
|
case av.KeyTypeMAsset:
|
||||||
|
if 1 > len(tableCell.Value.MAsset) {
|
||||||
|
tableCell.Value.MAsset = []*av.ValueAsset{}
|
||||||
|
}
|
||||||
|
case av.KeyTypeTemplate:
|
||||||
|
if nil == tableCell.Value.Template {
|
||||||
|
tableCell.Value.Template = &av.ValueTemplate{}
|
||||||
|
}
|
||||||
|
case av.KeyTypeCreated:
|
||||||
|
if nil == tableCell.Value.Created {
|
||||||
|
tableCell.Value.Created = &av.ValueCreated{}
|
||||||
|
}
|
||||||
|
case av.KeyTypeUpdated:
|
||||||
|
if nil == tableCell.Value.Updated {
|
||||||
|
tableCell.Value.Updated = &av.ValueUpdated{}
|
||||||
|
}
|
||||||
|
case av.KeyTypeCheckbox:
|
||||||
|
if nil == tableCell.Value.Checkbox {
|
||||||
|
tableCell.Value.Checkbox = &av.ValueCheckbox{}
|
||||||
|
}
|
||||||
|
case av.KeyTypeRelation:
|
||||||
|
if nil == tableCell.Value.Relation {
|
||||||
|
tableCell.Value.Relation = &av.ValueRelation{}
|
||||||
|
}
|
||||||
|
case av.KeyTypeRollup:
|
||||||
|
if nil == tableCell.Value.Rollup {
|
||||||
|
tableCell.Value.Rollup = &av.ValueRollup{}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
func getAttributeViewContent(avID string,
|
||||||
|
GetBlockAttrsWithoutWaitWriting func(id string) (ret map[string]string)) (content 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{}
|
||||||
|
buf.WriteString(attrView.Name)
|
||||||
|
buf.WriteByte(' ')
|
||||||
|
for _, v := range attrView.Views {
|
||||||
|
buf.WriteString(v.Name)
|
||||||
|
buf.WriteByte(' ')
|
||||||
|
}
|
||||||
|
|
||||||
|
if 1 > len(attrView.Views) {
|
||||||
|
content = strings.TrimSpace(buf.String())
|
||||||
|
return
|
||||||
|
}
|
||||||
|
|
||||||
|
var view *av.View
|
||||||
|
for _, v := range attrView.Views {
|
||||||
|
if av.LayoutTypeTable == v.LayoutType {
|
||||||
|
view = v
|
||||||
|
break
|
||||||
|
}
|
||||||
|
}
|
||||||
|
if nil == view {
|
||||||
|
content = strings.TrimSpace(buf.String())
|
||||||
|
return
|
||||||
|
}
|
||||||
|
|
||||||
|
table, err := RenderAttributeViewTable(attrView, view, "", GetBlockAttrsWithoutWaitWriting)
|
||||||
|
if nil != err {
|
||||||
|
content = strings.TrimSpace(buf.String())
|
||||||
|
return
|
||||||
|
}
|
||||||
|
|
||||||
|
for _, col := range table.Columns {
|
||||||
|
buf.WriteString(col.Name)
|
||||||
|
buf.WriteByte(' ')
|
||||||
|
}
|
||||||
|
|
||||||
|
for _, row := range table.Rows {
|
||||||
|
for _, cell := range row.Cells {
|
||||||
|
if nil == cell.Value {
|
||||||
|
continue
|
||||||
|
}
|
||||||
|
buf.WriteString(cell.Value.String(true))
|
||||||
|
buf.WriteByte(' ')
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
content = strings.TrimSpace(buf.String())
|
||||||
|
return
|
||||||
|
}
|
||||||
|
|
||||||
|
func getRowBlockValue(keyValues []*av.KeyValues) (ret *av.Value) {
|
||||||
|
for _, kv := range keyValues {
|
||||||
|
if av.KeyTypeBlock == kv.Key.Type && 0 < len(kv.Values) {
|
||||||
|
ret = kv.Values[0]
|
||||||
|
break
|
||||||
|
}
|
||||||
|
}
|
||||||
|
return
|
||||||
|
}
|
||||||
|
|
||||||
|
func getAttrViewName(attrView *av.AttributeView) string {
|
||||||
|
ret := attrView.Name
|
||||||
|
if "" == ret {
|
||||||
|
ret = util.Langs[util.Lang][105]
|
||||||
|
}
|
||||||
|
return ret
|
||||||
|
}
|
||||||
|
|
@ -17,8 +17,15 @@
|
||||||
package sql
|
package sql
|
||||||
|
|
||||||
import (
|
import (
|
||||||
|
"bytes"
|
||||||
"database/sql"
|
"database/sql"
|
||||||
|
"strings"
|
||||||
|
|
||||||
|
"github.com/88250/gulu"
|
||||||
|
"github.com/88250/lute/ast"
|
||||||
|
"github.com/88250/lute/html"
|
||||||
|
"github.com/88250/lute/lex"
|
||||||
|
"github.com/siyuan-note/siyuan/kernel/av"
|
||||||
"github.com/siyuan-note/siyuan/kernel/cache"
|
"github.com/siyuan-note/siyuan/kernel/cache"
|
||||||
"github.com/siyuan-note/siyuan/kernel/filesys"
|
"github.com/siyuan-note/siyuan/kernel/filesys"
|
||||||
"github.com/siyuan-note/siyuan/kernel/treenode"
|
"github.com/siyuan-note/siyuan/kernel/treenode"
|
||||||
|
|
@ -109,7 +116,7 @@ func indexNode(tx *sql.Tx, id string) (err error) {
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
|
|
||||||
content := treenode.NodeStaticContent(node, nil, true, indexAssetPath, true)
|
content := NodeStaticContent(node, nil, true, indexAssetPath, true, nil)
|
||||||
stmt := "UPDATE blocks SET content = ? WHERE id = ?"
|
stmt := "UPDATE blocks SET content = ? WHERE id = ?"
|
||||||
if err = execStmtTx(tx, stmt, content, id); nil != err {
|
if err = execStmtTx(tx, stmt, content, id); nil != err {
|
||||||
tx.Rollback()
|
tx.Rollback()
|
||||||
|
|
@ -129,3 +136,140 @@ func indexNode(tx *sql.Tx, id string) (err error) {
|
||||||
}
|
}
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
|
|
||||||
|
func NodeStaticContent(node *ast.Node, excludeTypes []string, includeTextMarkATitleURL, includeAssetPath, fullAttrView bool,
|
||||||
|
GetBlockAttrsWithoutWaitWriting func(id string) (ret map[string]string)) string {
|
||||||
|
if ast.NodeAttributeView == node.Type {
|
||||||
|
if fullAttrView {
|
||||||
|
return getAttributeViewContent(node.AttributeViewID, GetBlockAttrsWithoutWaitWriting)
|
||||||
|
}
|
||||||
|
|
||||||
|
ret, _ := av.GetAttributeViewName(node.AttributeViewID)
|
||||||
|
return ret
|
||||||
|
}
|
||||||
|
return nodeStaticContent(node, excludeTypes, includeTextMarkATitleURL, includeAssetPath)
|
||||||
|
}
|
||||||
|
|
||||||
|
func nodeStaticContent(node *ast.Node, excludeTypes []string, includeTextMarkATitleURL, includeAssetPath bool) string {
|
||||||
|
if nil == node {
|
||||||
|
return ""
|
||||||
|
}
|
||||||
|
|
||||||
|
if ast.NodeDocument == node.Type {
|
||||||
|
return node.IALAttr("title")
|
||||||
|
}
|
||||||
|
|
||||||
|
if ast.NodeAttributeView == node.Type {
|
||||||
|
return ""
|
||||||
|
}
|
||||||
|
|
||||||
|
buf := bytes.Buffer{}
|
||||||
|
buf.Grow(4096)
|
||||||
|
lastSpace := false
|
||||||
|
ast.Walk(node, func(n *ast.Node, entering bool) ast.WalkStatus {
|
||||||
|
if !entering {
|
||||||
|
return ast.WalkContinue
|
||||||
|
}
|
||||||
|
|
||||||
|
if n.IsContainerBlock() {
|
||||||
|
if !lastSpace {
|
||||||
|
buf.WriteByte(' ')
|
||||||
|
lastSpace = true
|
||||||
|
}
|
||||||
|
return ast.WalkContinue
|
||||||
|
}
|
||||||
|
|
||||||
|
if gulu.Str.Contains(n.Type.String(), excludeTypes) {
|
||||||
|
return ast.WalkContinue
|
||||||
|
}
|
||||||
|
|
||||||
|
switch n.Type {
|
||||||
|
case ast.NodeTableCell:
|
||||||
|
// 表格块写入数据库表时在单元格之间添加空格 https://github.com/siyuan-note/siyuan/issues/7654
|
||||||
|
if 0 < buf.Len() && ' ' != buf.Bytes()[buf.Len()-1] {
|
||||||
|
buf.WriteByte(' ')
|
||||||
|
}
|
||||||
|
case ast.NodeImage:
|
||||||
|
linkDest := n.ChildByType(ast.NodeLinkDest)
|
||||||
|
var linkDestStr, ocrText string
|
||||||
|
if nil != linkDest {
|
||||||
|
linkDestStr = linkDest.TokensStr()
|
||||||
|
ocrText = util.GetAssetText(linkDestStr, false)
|
||||||
|
}
|
||||||
|
|
||||||
|
linkText := n.ChildByType(ast.NodeLinkText)
|
||||||
|
if nil != linkText {
|
||||||
|
buf.Write(linkText.Tokens)
|
||||||
|
buf.WriteByte(' ')
|
||||||
|
}
|
||||||
|
if "" != ocrText {
|
||||||
|
buf.WriteString(ocrText)
|
||||||
|
buf.WriteByte(' ')
|
||||||
|
}
|
||||||
|
if nil != linkDest {
|
||||||
|
if !bytes.HasPrefix(linkDest.Tokens, []byte("assets/")) || includeAssetPath {
|
||||||
|
buf.Write(linkDest.Tokens)
|
||||||
|
buf.WriteByte(' ')
|
||||||
|
}
|
||||||
|
}
|
||||||
|
if linkTitle := n.ChildByType(ast.NodeLinkTitle); nil != linkTitle {
|
||||||
|
buf.Write(linkTitle.Tokens)
|
||||||
|
}
|
||||||
|
return ast.WalkSkipChildren
|
||||||
|
case ast.NodeLinkText:
|
||||||
|
buf.Write(n.Tokens)
|
||||||
|
buf.WriteByte(' ')
|
||||||
|
case ast.NodeLinkDest:
|
||||||
|
buf.Write(n.Tokens)
|
||||||
|
buf.WriteByte(' ')
|
||||||
|
case ast.NodeLinkTitle:
|
||||||
|
buf.Write(n.Tokens)
|
||||||
|
case ast.NodeText, ast.NodeCodeBlockCode, ast.NodeMathBlockContent, ast.NodeHTMLBlock:
|
||||||
|
tokens := n.Tokens
|
||||||
|
if treenode.IsChartCodeBlockCode(n) {
|
||||||
|
// 图表块的内容在数据库 `blocks` 表 `content` 字段中被转义 https://github.com/siyuan-note/siyuan/issues/6326
|
||||||
|
tokens = html.UnescapeHTML(tokens)
|
||||||
|
}
|
||||||
|
buf.Write(tokens)
|
||||||
|
case ast.NodeTextMark:
|
||||||
|
for _, excludeType := range excludeTypes {
|
||||||
|
if strings.HasPrefix(excludeType, "NodeTextMark-") {
|
||||||
|
if n.IsTextMarkType(excludeType[len("NodeTextMark-"):]) {
|
||||||
|
return ast.WalkContinue
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
if n.IsTextMarkType("tag") {
|
||||||
|
buf.WriteByte('#')
|
||||||
|
}
|
||||||
|
buf.WriteString(n.Content())
|
||||||
|
if n.IsTextMarkType("tag") {
|
||||||
|
buf.WriteByte('#')
|
||||||
|
}
|
||||||
|
if n.IsTextMarkType("a") && includeTextMarkATitleURL {
|
||||||
|
// 搜索不到超链接元素的 URL 和标题 https://github.com/siyuan-note/siyuan/issues/7352
|
||||||
|
if "" != n.TextMarkATitle {
|
||||||
|
buf.WriteString(" " + html.UnescapeHTMLStr(n.TextMarkATitle))
|
||||||
|
}
|
||||||
|
|
||||||
|
if !strings.HasPrefix(n.TextMarkAHref, "assets/") || includeAssetPath {
|
||||||
|
buf.WriteString(" " + html.UnescapeHTMLStr(n.TextMarkAHref))
|
||||||
|
}
|
||||||
|
}
|
||||||
|
case ast.NodeBackslash:
|
||||||
|
buf.WriteByte(lex.ItemBackslash)
|
||||||
|
case ast.NodeBackslashContent:
|
||||||
|
buf.Write(n.Tokens)
|
||||||
|
case ast.NodeAudio, ast.NodeVideo:
|
||||||
|
buf.WriteString(treenode.GetNodeSrcTokens(n))
|
||||||
|
buf.WriteByte(' ')
|
||||||
|
}
|
||||||
|
lastSpace = false
|
||||||
|
return ast.WalkContinue
|
||||||
|
})
|
||||||
|
|
||||||
|
// 这里不要 trim,否则无法搜索首尾空格
|
||||||
|
// Improve search and replace for spaces https://github.com/siyuan-note/siyuan/issues/10231
|
||||||
|
return buf.String()
|
||||||
|
}
|
||||||
|
|
|
||||||
|
|
@ -30,6 +30,7 @@ import (
|
||||||
"strconv"
|
"strconv"
|
||||||
"strings"
|
"strings"
|
||||||
"sync"
|
"sync"
|
||||||
|
"text/template"
|
||||||
"time"
|
"time"
|
||||||
"unicode/utf8"
|
"unicode/utf8"
|
||||||
|
|
||||||
|
|
@ -824,13 +825,13 @@ func buildBlockFromNode(n *ast.Node, tree *parse.Tree) (block *Block, attributes
|
||||||
if !treenode.IsNodeOCRed(n) {
|
if !treenode.IsNodeOCRed(n) {
|
||||||
util.PushNodeOCRQueue(n)
|
util.PushNodeOCRQueue(n)
|
||||||
}
|
}
|
||||||
content = treenode.NodeStaticContent(n, nil, true, indexAssetPath, true)
|
content = NodeStaticContent(n, nil, true, indexAssetPath, true, nil)
|
||||||
|
|
||||||
fc := treenode.FirstLeafBlock(n)
|
fc := treenode.FirstLeafBlock(n)
|
||||||
if !treenode.IsNodeOCRed(fc) {
|
if !treenode.IsNodeOCRed(fc) {
|
||||||
util.PushNodeOCRQueue(fc)
|
util.PushNodeOCRQueue(fc)
|
||||||
}
|
}
|
||||||
fcontent = treenode.NodeStaticContent(fc, nil, true, false, true)
|
fcontent = NodeStaticContent(fc, nil, true, false, true, nil)
|
||||||
|
|
||||||
parentID = n.Parent.ID
|
parentID = n.Parent.ID
|
||||||
if h := heading(n); nil != h { // 如果在标题块下方,则将标题块作为父节点
|
if h := heading(n); nil != h { // 如果在标题块下方,则将标题块作为父节点
|
||||||
|
|
@ -842,7 +843,7 @@ func buildBlockFromNode(n *ast.Node, tree *parse.Tree) (block *Block, attributes
|
||||||
if !treenode.IsNodeOCRed(n) {
|
if !treenode.IsNodeOCRed(n) {
|
||||||
util.PushNodeOCRQueue(n)
|
util.PushNodeOCRQueue(n)
|
||||||
}
|
}
|
||||||
content = treenode.NodeStaticContent(n, nil, true, indexAssetPath, true)
|
content = NodeStaticContent(n, nil, true, indexAssetPath, true, nil)
|
||||||
|
|
||||||
parentID = n.Parent.ID
|
parentID = n.Parent.ID
|
||||||
if h := heading(n); nil != h {
|
if h := heading(n); nil != h {
|
||||||
|
|
@ -1461,3 +1462,20 @@ func closeDatabase() (err error) {
|
||||||
runtime.GC() // 没有这句的话文件句柄不会释放,后面就无法删除文件
|
runtime.GC() // 没有这句的话文件句柄不会释放,后面就无法删除文件
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
|
|
||||||
|
func SQLTemplateFuncs(templateFuncMap *template.FuncMap) {
|
||||||
|
(*templateFuncMap)["queryBlocks"] = func(stmt string, args ...string) (retBlocks []*Block) {
|
||||||
|
for _, arg := range args {
|
||||||
|
stmt = strings.Replace(stmt, "?", arg, 1)
|
||||||
|
}
|
||||||
|
retBlocks = SelectBlocksRawStmt(stmt, 1, 512)
|
||||||
|
return
|
||||||
|
}
|
||||||
|
(*templateFuncMap)["querySpans"] = func(stmt string, args ...string) (retSpans []*Span) {
|
||||||
|
for _, arg := range args {
|
||||||
|
stmt = strings.Replace(stmt, "?", arg, 1)
|
||||||
|
}
|
||||||
|
retSpans = SelectSpansRawStmt(stmt, 512)
|
||||||
|
return
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
|
||||||
|
|
@ -18,25 +18,20 @@ package treenode
|
||||||
|
|
||||||
import (
|
import (
|
||||||
"bytes"
|
"bytes"
|
||||||
"strings"
|
|
||||||
"sync"
|
|
||||||
"text/template"
|
|
||||||
"time"
|
|
||||||
|
|
||||||
"github.com/88250/gulu"
|
"github.com/88250/gulu"
|
||||||
"github.com/88250/lute"
|
"github.com/88250/lute"
|
||||||
"github.com/88250/lute/ast"
|
"github.com/88250/lute/ast"
|
||||||
"github.com/88250/lute/editor"
|
"github.com/88250/lute/editor"
|
||||||
"github.com/88250/lute/html"
|
"github.com/88250/lute/html"
|
||||||
"github.com/88250/lute/lex"
|
|
||||||
"github.com/88250/lute/parse"
|
"github.com/88250/lute/parse"
|
||||||
"github.com/88250/lute/render"
|
"github.com/88250/lute/render"
|
||||||
"github.com/88250/vitess-sqlparser/sqlparser"
|
"github.com/88250/vitess-sqlparser/sqlparser"
|
||||||
"github.com/emirpasic/gods/sets/hashset"
|
"github.com/emirpasic/gods/sets/hashset"
|
||||||
"github.com/siyuan-note/logging"
|
"github.com/siyuan-note/logging"
|
||||||
"github.com/siyuan-note/siyuan/kernel/av"
|
|
||||||
"github.com/siyuan-note/siyuan/kernel/cache"
|
"github.com/siyuan-note/siyuan/kernel/cache"
|
||||||
"github.com/siyuan-note/siyuan/kernel/util"
|
"github.com/siyuan-note/siyuan/kernel/util"
|
||||||
|
"strings"
|
||||||
|
"sync"
|
||||||
)
|
)
|
||||||
|
|
||||||
func GetEmbedBlockRef(embedNode *ast.Node) (blockRefID string) {
|
func GetEmbedBlockRef(embedNode *ast.Node) (blockRefID string) {
|
||||||
|
|
@ -169,135 +164,6 @@ func IsNodeOCRed(node *ast.Node) (ret bool) {
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
|
|
||||||
func NodeStaticContent(node *ast.Node, excludeTypes []string, includeTextMarkATitleURL, includeAssetPath, fullAttrView bool) string {
|
|
||||||
if nil == node {
|
|
||||||
return ""
|
|
||||||
}
|
|
||||||
|
|
||||||
if ast.NodeDocument == node.Type {
|
|
||||||
return node.IALAttr("title")
|
|
||||||
}
|
|
||||||
|
|
||||||
if ast.NodeAttributeView == node.Type {
|
|
||||||
if fullAttrView {
|
|
||||||
return getAttributeViewContent(node.AttributeViewID)
|
|
||||||
}
|
|
||||||
|
|
||||||
ret, _ := av.GetAttributeViewName(node.AttributeViewID)
|
|
||||||
return ret
|
|
||||||
}
|
|
||||||
|
|
||||||
buf := bytes.Buffer{}
|
|
||||||
buf.Grow(4096)
|
|
||||||
lastSpace := false
|
|
||||||
ast.Walk(node, func(n *ast.Node, entering bool) ast.WalkStatus {
|
|
||||||
if !entering {
|
|
||||||
return ast.WalkContinue
|
|
||||||
}
|
|
||||||
|
|
||||||
if n.IsContainerBlock() {
|
|
||||||
if !lastSpace {
|
|
||||||
buf.WriteByte(' ')
|
|
||||||
lastSpace = true
|
|
||||||
}
|
|
||||||
return ast.WalkContinue
|
|
||||||
}
|
|
||||||
|
|
||||||
if gulu.Str.Contains(n.Type.String(), excludeTypes) {
|
|
||||||
return ast.WalkContinue
|
|
||||||
}
|
|
||||||
|
|
||||||
switch n.Type {
|
|
||||||
case ast.NodeTableCell:
|
|
||||||
// 表格块写入数据库表时在单元格之间添加空格 https://github.com/siyuan-note/siyuan/issues/7654
|
|
||||||
if 0 < buf.Len() && ' ' != buf.Bytes()[buf.Len()-1] {
|
|
||||||
buf.WriteByte(' ')
|
|
||||||
}
|
|
||||||
case ast.NodeImage:
|
|
||||||
linkDest := n.ChildByType(ast.NodeLinkDest)
|
|
||||||
var linkDestStr, ocrText string
|
|
||||||
if nil != linkDest {
|
|
||||||
linkDestStr = linkDest.TokensStr()
|
|
||||||
ocrText = util.GetAssetText(linkDestStr, false)
|
|
||||||
}
|
|
||||||
|
|
||||||
linkText := n.ChildByType(ast.NodeLinkText)
|
|
||||||
if nil != linkText {
|
|
||||||
buf.Write(linkText.Tokens)
|
|
||||||
buf.WriteByte(' ')
|
|
||||||
}
|
|
||||||
if "" != ocrText {
|
|
||||||
buf.WriteString(ocrText)
|
|
||||||
buf.WriteByte(' ')
|
|
||||||
}
|
|
||||||
if nil != linkDest {
|
|
||||||
if !bytes.HasPrefix(linkDest.Tokens, []byte("assets/")) || includeAssetPath {
|
|
||||||
buf.Write(linkDest.Tokens)
|
|
||||||
buf.WriteByte(' ')
|
|
||||||
}
|
|
||||||
}
|
|
||||||
if linkTitle := n.ChildByType(ast.NodeLinkTitle); nil != linkTitle {
|
|
||||||
buf.Write(linkTitle.Tokens)
|
|
||||||
}
|
|
||||||
return ast.WalkSkipChildren
|
|
||||||
case ast.NodeLinkText:
|
|
||||||
buf.Write(n.Tokens)
|
|
||||||
buf.WriteByte(' ')
|
|
||||||
case ast.NodeLinkDest:
|
|
||||||
buf.Write(n.Tokens)
|
|
||||||
buf.WriteByte(' ')
|
|
||||||
case ast.NodeLinkTitle:
|
|
||||||
buf.Write(n.Tokens)
|
|
||||||
case ast.NodeText, ast.NodeCodeBlockCode, ast.NodeMathBlockContent, ast.NodeHTMLBlock:
|
|
||||||
tokens := n.Tokens
|
|
||||||
if IsChartCodeBlockCode(n) {
|
|
||||||
// 图表块的内容在数据库 `blocks` 表 `content` 字段中被转义 https://github.com/siyuan-note/siyuan/issues/6326
|
|
||||||
tokens = html.UnescapeHTML(tokens)
|
|
||||||
}
|
|
||||||
buf.Write(tokens)
|
|
||||||
case ast.NodeTextMark:
|
|
||||||
for _, excludeType := range excludeTypes {
|
|
||||||
if strings.HasPrefix(excludeType, "NodeTextMark-") {
|
|
||||||
if n.IsTextMarkType(excludeType[len("NodeTextMark-"):]) {
|
|
||||||
return ast.WalkContinue
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
if n.IsTextMarkType("tag") {
|
|
||||||
buf.WriteByte('#')
|
|
||||||
}
|
|
||||||
buf.WriteString(n.Content())
|
|
||||||
if n.IsTextMarkType("tag") {
|
|
||||||
buf.WriteByte('#')
|
|
||||||
}
|
|
||||||
if n.IsTextMarkType("a") && includeTextMarkATitleURL {
|
|
||||||
// 搜索不到超链接元素的 URL 和标题 https://github.com/siyuan-note/siyuan/issues/7352
|
|
||||||
if "" != n.TextMarkATitle {
|
|
||||||
buf.WriteString(" " + html.UnescapeHTMLStr(n.TextMarkATitle))
|
|
||||||
}
|
|
||||||
|
|
||||||
if !strings.HasPrefix(n.TextMarkAHref, "assets/") || includeAssetPath {
|
|
||||||
buf.WriteString(" " + html.UnescapeHTMLStr(n.TextMarkAHref))
|
|
||||||
}
|
|
||||||
}
|
|
||||||
case ast.NodeBackslash:
|
|
||||||
buf.WriteByte(lex.ItemBackslash)
|
|
||||||
case ast.NodeBackslashContent:
|
|
||||||
buf.Write(n.Tokens)
|
|
||||||
case ast.NodeAudio, ast.NodeVideo:
|
|
||||||
buf.WriteString(GetNodeSrcTokens(n))
|
|
||||||
buf.WriteByte(' ')
|
|
||||||
}
|
|
||||||
lastSpace = false
|
|
||||||
return ast.WalkContinue
|
|
||||||
})
|
|
||||||
|
|
||||||
// 这里不要 trim,否则无法搜索首尾空格
|
|
||||||
// Improve search and replace for spaces https://github.com/siyuan-note/siyuan/issues/10231
|
|
||||||
return buf.String()
|
|
||||||
}
|
|
||||||
|
|
||||||
func GetNodeSrcTokens(n *ast.Node) (ret string) {
|
func GetNodeSrcTokens(n *ast.Node) (ret string) {
|
||||||
if index := bytes.Index(n.Tokens, []byte("src=\"")); 0 < index {
|
if index := bytes.Index(n.Tokens, []byte("src=\"")); 0 < index {
|
||||||
src := n.Tokens[index+len("src=\""):]
|
src := n.Tokens[index+len("src=\""):]
|
||||||
|
|
@ -598,524 +464,3 @@ func IsChartCodeBlockCode(code *ast.Node) bool {
|
||||||
language = strings.ReplaceAll(language, editor.Caret, "")
|
language = strings.ReplaceAll(language, editor.Caret, "")
|
||||||
return render.NoHighlight(language)
|
return render.NoHighlight(language)
|
||||||
}
|
}
|
||||||
|
|
||||||
func getAttributeViewContent(avID string) (content 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{}
|
|
||||||
buf.WriteString(attrView.Name)
|
|
||||||
buf.WriteByte(' ')
|
|
||||||
for _, v := range attrView.Views {
|
|
||||||
buf.WriteString(v.Name)
|
|
||||||
buf.WriteByte(' ')
|
|
||||||
}
|
|
||||||
|
|
||||||
if 1 > len(attrView.Views) {
|
|
||||||
content = strings.TrimSpace(buf.String())
|
|
||||||
return
|
|
||||||
}
|
|
||||||
|
|
||||||
var view *av.View
|
|
||||||
for _, v := range attrView.Views {
|
|
||||||
if av.LayoutTypeTable == v.LayoutType {
|
|
||||||
view = v
|
|
||||||
break
|
|
||||||
}
|
|
||||||
}
|
|
||||||
if nil == view {
|
|
||||||
content = strings.TrimSpace(buf.String())
|
|
||||||
return
|
|
||||||
}
|
|
||||||
|
|
||||||
table, err := renderAttributeViewTable(attrView, view)
|
|
||||||
if nil != err {
|
|
||||||
content = strings.TrimSpace(buf.String())
|
|
||||||
return
|
|
||||||
}
|
|
||||||
|
|
||||||
for _, col := range table.Columns {
|
|
||||||
buf.WriteString(col.Name)
|
|
||||||
buf.WriteByte(' ')
|
|
||||||
}
|
|
||||||
|
|
||||||
for _, row := range table.Rows {
|
|
||||||
for _, cell := range row.Cells {
|
|
||||||
if nil == cell.Value {
|
|
||||||
continue
|
|
||||||
}
|
|
||||||
buf.WriteString(cell.Value.String(true))
|
|
||||||
buf.WriteByte(' ')
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
content = strings.TrimSpace(buf.String())
|
|
||||||
return
|
|
||||||
}
|
|
||||||
|
|
||||||
func renderAttributeViewTable(attrView *av.AttributeView, view *av.View) (ret *av.Table, err error) {
|
|
||||||
ret = &av.Table{
|
|
||||||
ID: view.ID,
|
|
||||||
Icon: view.Icon,
|
|
||||||
Name: view.Name,
|
|
||||||
HideAttrViewName: view.HideAttrViewName,
|
|
||||||
Columns: []*av.TableColumn{},
|
|
||||||
Rows: []*av.TableRow{},
|
|
||||||
}
|
|
||||||
|
|
||||||
// 组装列
|
|
||||||
for _, col := range view.Table.Columns {
|
|
||||||
key, _ := attrView.GetKey(col.ID)
|
|
||||||
if nil == key {
|
|
||||||
continue
|
|
||||||
}
|
|
||||||
|
|
||||||
ret.Columns = append(ret.Columns, &av.TableColumn{
|
|
||||||
ID: key.ID,
|
|
||||||
Name: key.Name,
|
|
||||||
Type: key.Type,
|
|
||||||
Icon: key.Icon,
|
|
||||||
Options: key.Options,
|
|
||||||
NumberFormat: key.NumberFormat,
|
|
||||||
Template: key.Template,
|
|
||||||
Relation: key.Relation,
|
|
||||||
Rollup: key.Rollup,
|
|
||||||
Date: key.Date,
|
|
||||||
Wrap: col.Wrap,
|
|
||||||
Hidden: col.Hidden,
|
|
||||||
Width: col.Width,
|
|
||||||
Pin: col.Pin,
|
|
||||||
Calc: col.Calc,
|
|
||||||
})
|
|
||||||
}
|
|
||||||
|
|
||||||
// 生成行
|
|
||||||
rows := map[string][]*av.KeyValues{}
|
|
||||||
for _, keyValues := range attrView.KeyValues {
|
|
||||||
for _, val := range keyValues.Values {
|
|
||||||
values := rows[val.BlockID]
|
|
||||||
if nil == values {
|
|
||||||
values = []*av.KeyValues{{Key: keyValues.Key, Values: []*av.Value{val}}}
|
|
||||||
} else {
|
|
||||||
values = append(values, &av.KeyValues{Key: keyValues.Key, Values: []*av.Value{val}})
|
|
||||||
}
|
|
||||||
rows[val.BlockID] = values
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
// 过滤掉不存在的行
|
|
||||||
var notFound []string
|
|
||||||
for blockID, keyValues := range rows {
|
|
||||||
blockValue := getRowBlockValue(keyValues)
|
|
||||||
if nil == blockValue {
|
|
||||||
notFound = append(notFound, blockID)
|
|
||||||
continue
|
|
||||||
}
|
|
||||||
|
|
||||||
if blockValue.IsDetached {
|
|
||||||
continue
|
|
||||||
}
|
|
||||||
|
|
||||||
if nil != blockValue.Block && "" == blockValue.Block.ID {
|
|
||||||
notFound = append(notFound, blockID)
|
|
||||||
continue
|
|
||||||
}
|
|
||||||
|
|
||||||
if GetBlockTree(blockID) == nil {
|
|
||||||
notFound = append(notFound, blockID)
|
|
||||||
}
|
|
||||||
}
|
|
||||||
for _, blockID := range notFound {
|
|
||||||
delete(rows, blockID)
|
|
||||||
}
|
|
||||||
|
|
||||||
// 生成行单元格
|
|
||||||
for rowID, row := range rows {
|
|
||||||
var tableRow av.TableRow
|
|
||||||
for _, col := range ret.Columns {
|
|
||||||
var tableCell *av.TableCell
|
|
||||||
for _, keyValues := range row {
|
|
||||||
if keyValues.Key.ID == col.ID {
|
|
||||||
tableCell = &av.TableCell{
|
|
||||||
ID: keyValues.Values[0].ID,
|
|
||||||
Value: keyValues.Values[0],
|
|
||||||
ValueType: col.Type,
|
|
||||||
}
|
|
||||||
break
|
|
||||||
}
|
|
||||||
}
|
|
||||||
if nil == tableCell {
|
|
||||||
tableCell = &av.TableCell{
|
|
||||||
ID: ast.NewNodeID(),
|
|
||||||
ValueType: col.Type,
|
|
||||||
}
|
|
||||||
}
|
|
||||||
tableRow.ID = rowID
|
|
||||||
|
|
||||||
switch tableCell.ValueType {
|
|
||||||
case av.KeyTypeNumber: // 格式化数字
|
|
||||||
if nil != tableCell.Value && nil != tableCell.Value.Number && tableCell.Value.Number.IsNotEmpty {
|
|
||||||
tableCell.Value.Number.Format = col.NumberFormat
|
|
||||||
tableCell.Value.Number.FormatNumber()
|
|
||||||
}
|
|
||||||
case av.KeyTypeTemplate: // 渲染模板列
|
|
||||||
tableCell.Value = &av.Value{ID: tableCell.ID, KeyID: col.ID, BlockID: rowID, Type: av.KeyTypeTemplate, Template: &av.ValueTemplate{Content: col.Template}}
|
|
||||||
case av.KeyTypeCreated: // 填充创建时间列值,后面再渲染
|
|
||||||
tableCell.Value = &av.Value{ID: tableCell.ID, KeyID: col.ID, BlockID: rowID, Type: av.KeyTypeCreated}
|
|
||||||
case av.KeyTypeUpdated: // 填充更新时间列值,后面再渲染
|
|
||||||
tableCell.Value = &av.Value{ID: tableCell.ID, KeyID: col.ID, BlockID: rowID, Type: av.KeyTypeUpdated}
|
|
||||||
case av.KeyTypeRelation: // 清空关联列值,后面再渲染 https://ld246.com/article/1703831044435
|
|
||||||
if nil != tableCell.Value && nil != tableCell.Value.Relation {
|
|
||||||
tableCell.Value.Relation.Contents = nil
|
|
||||||
}
|
|
||||||
case av.KeyTypeText:
|
|
||||||
if nil != tableCell.Value && nil != tableCell.Value.Text {
|
|
||||||
tableCell.Value.Text.Content = util.EscapeHTML(tableCell.Value.Text.Content)
|
|
||||||
}
|
|
||||||
case av.KeyTypeEmail:
|
|
||||||
if nil != tableCell.Value && nil != tableCell.Value.Email {
|
|
||||||
tableCell.Value.Email.Content = util.EscapeHTML(tableCell.Value.Email.Content)
|
|
||||||
}
|
|
||||||
case av.KeyTypeURL:
|
|
||||||
if nil != tableCell.Value && nil != tableCell.Value.URL {
|
|
||||||
tableCell.Value.URL.Content = util.EscapeHTML(tableCell.Value.URL.Content)
|
|
||||||
}
|
|
||||||
case av.KeyTypePhone:
|
|
||||||
if nil != tableCell.Value && nil != tableCell.Value.Phone {
|
|
||||||
tableCell.Value.Phone.Content = util.EscapeHTML(tableCell.Value.Phone.Content)
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
FillAttributeViewTableCellNilValue(tableCell, rowID, col.ID)
|
|
||||||
|
|
||||||
tableRow.Cells = append(tableRow.Cells, tableCell)
|
|
||||||
}
|
|
||||||
ret.Rows = append(ret.Rows, &tableRow)
|
|
||||||
}
|
|
||||||
|
|
||||||
// 渲染自动生成的列值,比如关联列、汇总列、创建时间列和更新时间列
|
|
||||||
for _, row := range ret.Rows {
|
|
||||||
for _, cell := range row.Cells {
|
|
||||||
switch cell.ValueType {
|
|
||||||
case av.KeyTypeRollup: // 渲染汇总列
|
|
||||||
rollupKey, _ := attrView.GetKey(cell.Value.KeyID)
|
|
||||||
if nil == rollupKey || nil == rollupKey.Rollup {
|
|
||||||
break
|
|
||||||
}
|
|
||||||
|
|
||||||
relKey, _ := attrView.GetKey(rollupKey.Rollup.RelationKeyID)
|
|
||||||
if nil == relKey || nil == relKey.Relation {
|
|
||||||
break
|
|
||||||
}
|
|
||||||
|
|
||||||
relVal := attrView.GetValue(relKey.ID, row.ID)
|
|
||||||
if nil == relVal || nil == relVal.Relation {
|
|
||||||
break
|
|
||||||
}
|
|
||||||
|
|
||||||
destAv, _ := av.ParseAttributeView(relKey.Relation.AvID)
|
|
||||||
if nil == destAv {
|
|
||||||
break
|
|
||||||
}
|
|
||||||
|
|
||||||
destKey, _ := destAv.GetKey(rollupKey.Rollup.KeyID)
|
|
||||||
if nil == destKey {
|
|
||||||
continue
|
|
||||||
}
|
|
||||||
|
|
||||||
for _, blockID := range relVal.Relation.BlockIDs {
|
|
||||||
destVal := destAv.GetValue(rollupKey.Rollup.KeyID, blockID)
|
|
||||||
if nil == destVal {
|
|
||||||
if destAv.ExistBlock(blockID) { // 数据库中存在行但是列值不存在是数据未初始化,这里补一个默认值
|
|
||||||
destVal = av.GetAttributeViewDefaultValue(ast.NewNodeID(), rollupKey.Rollup.KeyID, blockID, destKey.Type)
|
|
||||||
}
|
|
||||||
if nil == destVal {
|
|
||||||
continue
|
|
||||||
}
|
|
||||||
}
|
|
||||||
if av.KeyTypeNumber == destKey.Type {
|
|
||||||
destVal.Number.Format = destKey.NumberFormat
|
|
||||||
destVal.Number.FormatNumber()
|
|
||||||
}
|
|
||||||
|
|
||||||
cell.Value.Rollup.Contents = append(cell.Value.Rollup.Contents, destVal.Clone())
|
|
||||||
}
|
|
||||||
|
|
||||||
cell.Value.Rollup.RenderContents(rollupKey.Rollup.Calc, destKey)
|
|
||||||
|
|
||||||
// 将汇总列的值保存到 rows 中,后续渲染模板列的时候会用到,下同
|
|
||||||
// Database table view template columns support reading relation, rollup, created and updated columns https://github.com/siyuan-note/siyuan/issues/10442
|
|
||||||
keyValues := rows[row.ID]
|
|
||||||
keyValues = append(keyValues, &av.KeyValues{Key: rollupKey, Values: []*av.Value{{ID: cell.Value.ID, KeyID: rollupKey.ID, BlockID: row.ID, Type: av.KeyTypeRollup, Rollup: cell.Value.Rollup}}})
|
|
||||||
rows[row.ID] = keyValues
|
|
||||||
case av.KeyTypeRelation: // 渲染关联列
|
|
||||||
relKey, _ := attrView.GetKey(cell.Value.KeyID)
|
|
||||||
if nil != relKey && nil != relKey.Relation {
|
|
||||||
destAv, _ := av.ParseAttributeView(relKey.Relation.AvID)
|
|
||||||
if nil != destAv {
|
|
||||||
blocks := map[string]*av.Value{}
|
|
||||||
for _, blockValue := range destAv.GetBlockKeyValues().Values {
|
|
||||||
blocks[blockValue.BlockID] = blockValue
|
|
||||||
}
|
|
||||||
for _, blockID := range cell.Value.Relation.BlockIDs {
|
|
||||||
cell.Value.Relation.Contents = append(cell.Value.Relation.Contents, blocks[blockID])
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
case av.KeyTypeCreated: // 渲染创建时间
|
|
||||||
createdStr := row.ID[:len("20060102150405")]
|
|
||||||
created, parseErr := time.ParseInLocation("20060102150405", createdStr, time.Local)
|
|
||||||
if nil == parseErr {
|
|
||||||
cell.Value.Created = av.NewFormattedValueCreated(created.UnixMilli(), 0, av.CreatedFormatNone)
|
|
||||||
cell.Value.Created.IsNotEmpty = true
|
|
||||||
} else {
|
|
||||||
cell.Value.Created = av.NewFormattedValueCreated(time.Now().UnixMilli(), 0, av.CreatedFormatNone)
|
|
||||||
}
|
|
||||||
|
|
||||||
keyValues := rows[row.ID]
|
|
||||||
createdKey, _ := attrView.GetKey(cell.Value.KeyID)
|
|
||||||
keyValues = append(keyValues, &av.KeyValues{Key: createdKey, Values: []*av.Value{{ID: cell.Value.ID, KeyID: createdKey.ID, BlockID: row.ID, Type: av.KeyTypeCreated, Created: cell.Value.Created}}})
|
|
||||||
rows[row.ID] = keyValues
|
|
||||||
case av.KeyTypeUpdated: // 渲染更新时间
|
|
||||||
ial := map[string]string{}
|
|
||||||
block := row.GetBlockValue()
|
|
||||||
if nil != block && !block.IsDetached {
|
|
||||||
ial = cache.GetBlockIAL(row.ID)
|
|
||||||
if nil == ial {
|
|
||||||
ial = map[string]string{}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
updatedStr := ial["updated"]
|
|
||||||
if "" == updatedStr && nil != block {
|
|
||||||
cell.Value.Updated = av.NewFormattedValueUpdated(block.Block.Updated, 0, av.UpdatedFormatNone)
|
|
||||||
cell.Value.Updated.IsNotEmpty = true
|
|
||||||
} else {
|
|
||||||
updated, parseErr := time.ParseInLocation("20060102150405", updatedStr, time.Local)
|
|
||||||
if nil == parseErr {
|
|
||||||
cell.Value.Updated = av.NewFormattedValueUpdated(updated.UnixMilli(), 0, av.UpdatedFormatNone)
|
|
||||||
cell.Value.Updated.IsNotEmpty = true
|
|
||||||
} else {
|
|
||||||
cell.Value.Updated = av.NewFormattedValueUpdated(time.Now().UnixMilli(), 0, av.UpdatedFormatNone)
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
keyValues := rows[row.ID]
|
|
||||||
updatedKey, _ := attrView.GetKey(cell.Value.KeyID)
|
|
||||||
keyValues = append(keyValues, &av.KeyValues{Key: updatedKey, Values: []*av.Value{{ID: cell.Value.ID, KeyID: updatedKey.ID, BlockID: row.ID, Type: av.KeyTypeUpdated, Updated: cell.Value.Updated}}})
|
|
||||||
rows[row.ID] = keyValues
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
// 最后单独渲染模板列,这样模板列就可以使用汇总、关联、创建时间和更新时间列的值了
|
|
||||||
// Database table view template columns support reading relation, rollup, created and updated columns https://github.com/siyuan-note/siyuan/issues/10442
|
|
||||||
for _, row := range ret.Rows {
|
|
||||||
for _, cell := range row.Cells {
|
|
||||||
switch cell.ValueType {
|
|
||||||
case av.KeyTypeTemplate: // 渲染模板列
|
|
||||||
keyValues := rows[row.ID]
|
|
||||||
ial := map[string]string{}
|
|
||||||
block := row.GetBlockValue()
|
|
||||||
if nil != block && !block.IsDetached {
|
|
||||||
ial = cache.GetBlockIAL(row.ID)
|
|
||||||
if nil == ial {
|
|
||||||
ial = map[string]string{}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
content := renderTemplateCol(ial, keyValues, cell.Value.Template.Content)
|
|
||||||
cell.Value.Template.Content = content
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
return
|
|
||||||
}
|
|
||||||
|
|
||||||
func FillAttributeViewTableCellNilValue(tableCell *av.TableCell, rowID, colID string) {
|
|
||||||
if nil == tableCell.Value {
|
|
||||||
tableCell.Value = av.GetAttributeViewDefaultValue(tableCell.ID, colID, rowID, tableCell.ValueType)
|
|
||||||
return
|
|
||||||
}
|
|
||||||
|
|
||||||
tableCell.Value.Type = tableCell.ValueType
|
|
||||||
switch tableCell.ValueType {
|
|
||||||
case av.KeyTypeText:
|
|
||||||
if nil == tableCell.Value.Text {
|
|
||||||
tableCell.Value.Text = &av.ValueText{}
|
|
||||||
}
|
|
||||||
case av.KeyTypeNumber:
|
|
||||||
if nil == tableCell.Value.Number {
|
|
||||||
tableCell.Value.Number = &av.ValueNumber{}
|
|
||||||
}
|
|
||||||
case av.KeyTypeDate:
|
|
||||||
if nil == tableCell.Value.Date {
|
|
||||||
tableCell.Value.Date = &av.ValueDate{}
|
|
||||||
}
|
|
||||||
case av.KeyTypeSelect:
|
|
||||||
if 1 > len(tableCell.Value.MSelect) {
|
|
||||||
tableCell.Value.MSelect = []*av.ValueSelect{}
|
|
||||||
}
|
|
||||||
case av.KeyTypeMSelect:
|
|
||||||
if 1 > len(tableCell.Value.MSelect) {
|
|
||||||
tableCell.Value.MSelect = []*av.ValueSelect{}
|
|
||||||
}
|
|
||||||
case av.KeyTypeURL:
|
|
||||||
if nil == tableCell.Value.URL {
|
|
||||||
tableCell.Value.URL = &av.ValueURL{}
|
|
||||||
}
|
|
||||||
case av.KeyTypeEmail:
|
|
||||||
if nil == tableCell.Value.Email {
|
|
||||||
tableCell.Value.Email = &av.ValueEmail{}
|
|
||||||
}
|
|
||||||
case av.KeyTypePhone:
|
|
||||||
if nil == tableCell.Value.Phone {
|
|
||||||
tableCell.Value.Phone = &av.ValuePhone{}
|
|
||||||
}
|
|
||||||
case av.KeyTypeMAsset:
|
|
||||||
if 1 > len(tableCell.Value.MAsset) {
|
|
||||||
tableCell.Value.MAsset = []*av.ValueAsset{}
|
|
||||||
}
|
|
||||||
case av.KeyTypeTemplate:
|
|
||||||
if nil == tableCell.Value.Template {
|
|
||||||
tableCell.Value.Template = &av.ValueTemplate{}
|
|
||||||
}
|
|
||||||
case av.KeyTypeCreated:
|
|
||||||
if nil == tableCell.Value.Created {
|
|
||||||
tableCell.Value.Created = &av.ValueCreated{}
|
|
||||||
}
|
|
||||||
case av.KeyTypeUpdated:
|
|
||||||
if nil == tableCell.Value.Updated {
|
|
||||||
tableCell.Value.Updated = &av.ValueUpdated{}
|
|
||||||
}
|
|
||||||
case av.KeyTypeCheckbox:
|
|
||||||
if nil == tableCell.Value.Checkbox {
|
|
||||||
tableCell.Value.Checkbox = &av.ValueCheckbox{}
|
|
||||||
}
|
|
||||||
case av.KeyTypeRelation:
|
|
||||||
if nil == tableCell.Value.Relation {
|
|
||||||
tableCell.Value.Relation = &av.ValueRelation{}
|
|
||||||
}
|
|
||||||
case av.KeyTypeRollup:
|
|
||||||
if nil == tableCell.Value.Rollup {
|
|
||||||
tableCell.Value.Rollup = &av.ValueRollup{}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
func renderTemplateCol(ial map[string]string, rowValues []*av.KeyValues, tplContent string) string {
|
|
||||||
if "" == ial["id"] {
|
|
||||||
block := getRowBlockValue(rowValues)
|
|
||||||
ial["id"] = block.Block.ID
|
|
||||||
}
|
|
||||||
if "" == ial["updated"] {
|
|
||||||
block := getRowBlockValue(rowValues)
|
|
||||||
ial["updated"] = time.UnixMilli(block.Block.Updated).Format("20060102150405")
|
|
||||||
}
|
|
||||||
|
|
||||||
goTpl := template.New("").Delims(".action{", "}")
|
|
||||||
tplFuncMap := util.BuiltInTemplateFuncs()
|
|
||||||
// 这里存在依赖问题所以不支持 SQLTemplateFuncs(&tplFuncMap)
|
|
||||||
goTpl = goTpl.Funcs(tplFuncMap)
|
|
||||||
tpl, tplErr := goTpl.Funcs(tplFuncMap).Parse(tplContent)
|
|
||||||
if nil != tplErr {
|
|
||||||
logging.LogWarnf("parse template [%s] failed: %s", tplContent, tplErr)
|
|
||||||
return ""
|
|
||||||
}
|
|
||||||
|
|
||||||
buf := &bytes.Buffer{}
|
|
||||||
dataModel := map[string]interface{}{} // 复制一份 IAL 以避免修改原始数据
|
|
||||||
for k, v := range ial {
|
|
||||||
dataModel[k] = v
|
|
||||||
|
|
||||||
// Database template column supports `created` and `updated` built-in variables https://github.com/siyuan-note/siyuan/issues/9364
|
|
||||||
createdStr := ial["id"]
|
|
||||||
if "" != createdStr {
|
|
||||||
createdStr = createdStr[:len("20060102150405")]
|
|
||||||
}
|
|
||||||
created, parseErr := time.ParseInLocation("20060102150405", createdStr, time.Local)
|
|
||||||
if nil == parseErr {
|
|
||||||
dataModel["created"] = created
|
|
||||||
} else {
|
|
||||||
logging.LogWarnf("parse created [%s] failed: %s", createdStr, parseErr)
|
|
||||||
dataModel["created"] = time.Now()
|
|
||||||
}
|
|
||||||
updatedStr := ial["updated"]
|
|
||||||
updated, parseErr := time.ParseInLocation("20060102150405", updatedStr, time.Local)
|
|
||||||
if nil == parseErr {
|
|
||||||
dataModel["updated"] = updated
|
|
||||||
} else {
|
|
||||||
dataModel["updated"] = time.Now()
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
for _, rowValue := range rowValues {
|
|
||||||
if 1 > len(rowValue.Values) {
|
|
||||||
continue
|
|
||||||
}
|
|
||||||
|
|
||||||
v := rowValue.Values[0]
|
|
||||||
if av.KeyTypeNumber == v.Type {
|
|
||||||
if nil != v.Number && v.Number.IsNotEmpty {
|
|
||||||
dataModel[rowValue.Key.Name] = v.Number.Content
|
|
||||||
}
|
|
||||||
} else if av.KeyTypeDate == v.Type {
|
|
||||||
if nil != v.Date {
|
|
||||||
if v.Date.IsNotEmpty {
|
|
||||||
dataModel[rowValue.Key.Name] = time.UnixMilli(v.Date.Content)
|
|
||||||
}
|
|
||||||
if v.Date.IsNotEmpty2 {
|
|
||||||
dataModel[rowValue.Key.Name+"_end"] = time.UnixMilli(v.Date.Content2)
|
|
||||||
}
|
|
||||||
}
|
|
||||||
} else if av.KeyTypeRollup == v.Type {
|
|
||||||
if 0 < len(v.Rollup.Contents) {
|
|
||||||
var numbers []float64
|
|
||||||
var contents []string
|
|
||||||
for _, content := range v.Rollup.Contents {
|
|
||||||
if av.KeyTypeNumber == content.Type {
|
|
||||||
numbers = append(numbers, content.Number.Content)
|
|
||||||
} else {
|
|
||||||
contents = append(contents, content.String(true))
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
if 0 < len(numbers) {
|
|
||||||
dataModel[rowValue.Key.Name] = numbers
|
|
||||||
} else {
|
|
||||||
dataModel[rowValue.Key.Name] = contents
|
|
||||||
}
|
|
||||||
}
|
|
||||||
} else if av.KeyTypeRelation == v.Type {
|
|
||||||
if 0 < len(v.Relation.Contents) {
|
|
||||||
var contents []string
|
|
||||||
for _, content := range v.Relation.Contents {
|
|
||||||
contents = append(contents, content.String(true))
|
|
||||||
}
|
|
||||||
dataModel[rowValue.Key.Name] = contents
|
|
||||||
}
|
|
||||||
} else {
|
|
||||||
dataModel[rowValue.Key.Name] = v.String(true)
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
if err := tpl.Execute(buf, dataModel); nil != err {
|
|
||||||
logging.LogWarnf("execute template [%s] failed: %s", tplContent, err)
|
|
||||||
}
|
|
||||||
return buf.String()
|
|
||||||
}
|
|
||||||
|
|
||||||
func getRowBlockValue(keyValues []*av.KeyValues) (ret *av.Value) {
|
|
||||||
for _, kv := range keyValues {
|
|
||||||
if av.KeyTypeBlock == kv.Key.Type && 0 < len(kv.Values) {
|
|
||||||
ret = kv.Values[0]
|
|
||||||
break
|
|
||||||
}
|
|
||||||
}
|
|
||||||
return
|
|
||||||
}
|
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue