summaryrefslogtreecommitdiff
path: root/form/errors.go
blob: 52206c4e5c3fec01d2d90aec6aa9f07c9a219e8f (plain)
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
package form

import (
	"errors"
	"fmt"
)

type FieldError struct {
	Field string
	Issue string
}

func (fe FieldError) Error() string {
	return fmt.Sprintf("%s: %v", fe.Field, fe.Issue)
}

// errors will build a map where each key is the field name, and each
// value is a slice of strings representing errors with that field.
func fieldErrors(errs []error) map[string][]string {
	ret := make(map[string][]string)
	for _, err := range errs {
		var fe FieldError
		if !errors.As(err, &fe) {
			fmt.Println(err, "isnt field error")
			continue
		}
		ret[fe.Field] = append(ret[fe.Field], fe.Issue)
	}
	return ret
}
'insertions'>+11 2011-11-16Make 'hg k' work similar to 'git k'René 'Necoro' Neumann1-0/+3 2011-10-14'tabgroup' -> 'tabgroups'René 'Necoro' Neumann1-1/+1 2011-10-14Switch from openoffice alias to libreoffice (ooffice -> soffice)René 'Necoro' Neumann1-2/+2 2011-10-14Make the quotes in ProofGeneral to be nearly invisibleRené Neumann1-1/+1 2011-08-23Disable hightlighting of the domain in the FF urlbarRené Neumann1-0/+3 2011-08-12Enhance IE scriptRené Neumann1-6/+7 2011-08-11BlaRené 'Necoro' Neumann1-0/+2 2011-08-11Local fontsRené 'Necoro' Neumann1-13/+22 2011-08-11Better inconsolata thingsRené Neumann4-4/+13 2011-08-10Moved some functions to their own filesRené Neumann3-124/+120 2011-08-10More advanced IE scriptRené Neumann2-1/+74 2011-08-10Inconsolata also in emacsRené Neumann1-1/+1 2011-08-10Better vim fontsRené 'Necoro' Neumann1-1/+1 2011-08-09ooffice aliasRené Neumann1-0/+2 2011-08-09Update the needed hg-extensions.René Neumann1-1/+2 2011-06-08gtkrc stuff for Qt-Gtk-StyleRené 'Necoro' Neumann2-0/+8 2011-06-08Updated fonts.conf to work better on lcdsRené 'Necoro' Neumann1-17/+6