forked from bluele/gforms
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathfloatfield.go
72 lines (64 loc) · 1.42 KB
/
floatfield.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
package gforms
import (
"errors"
"reflect"
"strconv"
)
// It maps value to FormInstance.CleanedData as type `float64`.
type FloatField struct {
BaseField
ErrorMessage string
}
// Create a new FloatField instance.
func (f *FloatField) New() FieldInterface {
fi := new(FloatFieldInstance)
if f.ErrorMessage == "" {
fi.ErrorMessage = "This field should be specified as float."
} else {
fi.ErrorMessage = f.ErrorMessage
}
fi.Model = f
fi.V = nilV("")
return fi
}
// Instance for FloatField
type FloatFieldInstance struct {
FieldInstance
ErrorMessage string
}
// Create a new FloatField with validators and widgets.
func NewFloatField(name string, vs Validators, ws ...Widget) *FloatField {
f := new(FloatField)
f.name = name
f.validators = vs
if len(ws) > 0 {
f.widget = ws[0]
}
return f
}
// Get a value from request data, and clean it as type float64.
func (f *FloatFieldInstance) Clean(data Data) error {
m, hasField := data[f.GetName()]
if hasField {
f.V = m
v := m.rawValueAsString()
m.Kind = reflect.Float64
if v != nil && (*v) != "" {
fv, err := strconv.ParseFloat(*v, 64)
if err == nil {
m.Value = fv
m.IsNil = false
return nil
}
return errors.New(f.ErrorMessage)
}
}
return nil
}
func (f *FloatFieldInstance) html() string {
return renderTemplate("TextTypeField", newTemplateContext(f))
}
// Get as HTML format
func (f *FloatFieldInstance) Html() string {
return fieldToHtml(f)
}