-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathextracolsfuncview.go
66 lines (57 loc) · 1.54 KB
/
extracolsfuncview.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
package retable
import (
"reflect"
)
func ExtraColsAnyValueFuncView(left View, columns []string, anyValue func(row, col int) any) ReflectCellView {
return &extraColsFuncView{
left: AsReflectCellView(left),
columns: columns,
anyValue: anyValue,
reflectValue: func(row, col int) reflect.Value {
return reflect.ValueOf(anyValue(row, col))
},
}
}
func ExtraColsReflectValueFuncView(left View, columns []string, reflectValue func(row, col int) reflect.Value) ReflectCellView {
return &extraColsFuncView{
left: AsReflectCellView(left),
columns: columns,
anyValue: func(row, col int) any {
v := reflectValue(row, col)
if !v.IsValid() {
return nil
}
return v.Interface()
},
reflectValue: reflectValue,
}
}
type extraColsFuncView struct {
left ReflectCellView
columns []string
anyValue func(row, col int) any
reflectValue func(row, col int) reflect.Value
}
func (e *extraColsFuncView) Title() string {
return e.left.Title()
}
func (e *extraColsFuncView) Columns() []string {
return append(e.left.Columns(), e.columns...)
}
func (e *extraColsFuncView) NumRows() int {
return e.left.NumRows()
}
func (e *extraColsFuncView) Cell(row, col int) any {
numLeftCols := len(e.left.Columns())
if col < numLeftCols {
return e.left.Cell(row, col)
}
return e.anyValue(row, col-numLeftCols)
}
func (e *extraColsFuncView) ReflectCell(row, col int) reflect.Value {
numLeftCols := len(e.left.Columns())
if col < numLeftCols {
return e.left.ReflectCell(row, col)
}
return e.reflectValue(row, col-numLeftCols)
}