This repository has been archived by the owner on Sep 17, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
field.go
79 lines (69 loc) · 1.64 KB
/
field.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
67
68
69
70
71
72
73
74
75
76
77
78
79
package revel
import (
"errors"
"reflect"
"strings"
)
// Field represents a data fieid that may be collected in a web form.
type Field struct {
Name string
Error *ValidationError
renderArgs map[string]interface{}
}
func NewField(name string, renderArgs map[string]interface{}) (*Field, error) {
if renderArgs == nil {
return nil, errors.New("nil renderargs")
}
errorMap, ok := renderArgs["errors"]
if !ok {
return nil, errors.New(`"errors" not found in context`)
}
return &Field{
Name: name,
Error: errorMap.(map[string]*ValidationError)[name],
renderArgs: renderArgs,
}, nil
}
// Returns an identifier suitable for use as an HTML id.
func (f *Field) Id() string {
return strings.Replace(f.Name, ".", "_", -1)
}
// Returned the flashed value of this field.
func (f *Field) Flash() string {
v, _ := f.renderArgs["flash"].(map[string]string)[f.Name]
return v
}
// Returned the flashed value of this field as a list.
func (f *Field) FlashArray() []string {
v := f.Flash()
if v == "" {
return []string{}
}
return strings.Split(v, ",")
}
// Return the current value of this field.
func (f *Field) Value() interface{} {
pieces := strings.Split(f.Name, ".")
answer, ok := f.renderArgs[pieces[0]]
if !ok {
return ""
}
val := reflect.ValueOf(answer)
for i := 1; i < len(pieces); i++ {
if val.Kind() == reflect.Ptr {
val = val.Elem()
}
val = val.FieldByName(pieces[i])
if !val.IsValid() {
return ""
}
}
return val.Interface()
}
// Return ERROR_CLASS if this field has a validation error, else empty string.
func (f *Field) ErrorClass() string {
if f.Error != nil {
return ERROR_CLASS
}
return ""
}