50 lines
903 B
Go
50 lines
903 B
Go
package table
|
|
|
|
import (
|
|
"encoding/json"
|
|
"fmt"
|
|
"reflect"
|
|
|
|
"forge.cadoles.com/Cadoles/emissary/internal/format"
|
|
"github.com/pkg/errors"
|
|
)
|
|
|
|
func getProps(d any) []format.Prop {
|
|
props := make([]format.Prop, 0)
|
|
|
|
v := reflect.Indirect(reflect.ValueOf(d))
|
|
typeOf := v.Type()
|
|
|
|
for i := 0; i < v.NumField(); i++ {
|
|
name := typeOf.Field(i).Name
|
|
props = append(props, format.NewProp(name, name))
|
|
}
|
|
|
|
return props
|
|
}
|
|
|
|
func getFieldValue(obj any, name string) string {
|
|
v := reflect.Indirect(reflect.ValueOf(obj))
|
|
|
|
fieldValue := v.FieldByName(name)
|
|
|
|
switch fieldValue.Kind() {
|
|
case reflect.Map:
|
|
fallthrough
|
|
case reflect.Struct:
|
|
fallthrough
|
|
case reflect.Slice:
|
|
fallthrough
|
|
case reflect.Interface:
|
|
json, err := json.Marshal(fieldValue.Interface())
|
|
if err != nil {
|
|
panic(errors.WithStack(err))
|
|
}
|
|
|
|
return string(json)
|
|
|
|
default:
|
|
return fmt.Sprintf("%v", fieldValue.Interface())
|
|
}
|
|
}
|