about summary refs log tree commit diff stats
path: root/el/forms.go
diff options
context:
space:
mode:
authorMarkus Wüstenberg2020-09-25 09:57:47 +0200
committerGitHub2020-09-25 09:57:47 +0200
commit5da578cfdf717ff1465f729194c8192a00412881 (patch)
tree9bd1c59936f81efeb4d96edd40043301a97ed606 /el/forms.go
parent77b64b13028d94a54491e606eed4dc759ec46dd2 (diff)
downloadgomponents-5da578cfdf717ff1465f729194c8192a00412881.tar.lz
gomponents-5da578cfdf717ff1465f729194c8192a00412881.tar.zst
gomponents-5da578cfdf717ff1465f729194c8192a00412881.zip
Group element helpers in different files (#21)
According to the section at https://developer.mozilla.org/en-US/docs/Web/HTML/Element
Diffstat (limited to 'el/forms.go')
-rw-r--r--el/forms.go52
1 files changed, 0 insertions, 52 deletions
diff --git a/el/forms.go b/el/forms.go
deleted file mode 100644
index 9ada591..0000000
--- a/el/forms.go
+++ /dev/null
@@ -1,52 +0,0 @@
-package el
-
-import (
-	"fmt"
-
-	g "github.com/maragudk/gomponents"
-)
-
-// Button returns an element with name "button" and the given children.
-func Button(children ...g.Node) g.NodeFunc {
-	return g.El("button", children...)
-}
-
-// Form returns an element with name "form", the given action and method attributes, and the given children.
-func Form(action, method string, children ...g.Node) g.NodeFunc {
-	return g.El("form", prepend2(g.Attr("action", action), g.Attr("method", method), children)...)
-}
-
-// Input returns an element with name "input", the given type and name attributes, and the given children.
-// Note that "type" is a keyword in Go, so the parameter is called typ.
-func Input(typ, name string, children ...g.Node) g.NodeFunc {
-	return g.El("input", prepend2(g.Attr("type", typ), g.Attr("name", name), children)...)
-}
-
-// Label returns an element with name "label", the given for attribute, and the given children.
-// Note that "for" is a keyword in Go, so the parameter is called forr.
-func Label(forr string, children ...g.Node) g.NodeFunc {
-	return g.El("label", prepend(g.Attr("for", forr), children)...)
-}
-
-// Option returns an element with name "option", the given text content and value attribute, and the given children.
-func Option(text, value string, children ...g.Node) g.NodeFunc {
-	return g.El("option", prepend2(g.Attr("value", value), g.Text(text), children)...)
-}
-
-// Progress returns an element with name "progress", the given value and max attributes, and the given children.
-func Progress(value, max float64, children ...g.Node) g.NodeFunc {
-	return g.El("progress", prepend2(
-		g.Attr("value", fmt.Sprintf("%v", value)),
-		g.Attr("max", fmt.Sprintf("%v", max)),
-		children)...)
-}
-
-// Select returns an element with name "select", the given name attribute, and the given children.
-func Select(name string, children ...g.Node) g.NodeFunc {
-	return g.El("select", prepend(g.Attr("name", name), children)...)
-}
-
-// Textarea returns an element with name "textarea", the given name attribute, and the given children.
-func Textarea(name string, children ...g.Node) g.NodeFunc {
-	return g.El("textarea", prepend(g.Attr("name", name), children)...)
-}