Add aria-* and role attributes (#59) Fixes #50.
Markus Wüstenberg markus@maragu.dk
Tue, 22 Dec 2020 11:07:33 +0100
2 files changed, 17 insertions(+), 0 deletions(-)
M html/attributes.go → html/attributes.go
@@ -56,6 +56,11 @@ func Alt(v string) g.Node { return g.Attr("alt", v) } +// Aria attributes automatically have their name prefixed with "aria-". +func Aria(name, v string) g.Node { + return g.Attr("aria-"+name, v) +} + func AutoComplete(v string) g.Node { return g.Attr("autocomplete", v) } @@ -138,6 +143,10 @@ } func Rel(v string) g.Node { return g.Attr("rel", v) +} + +func Role(v string) g.Node { + return g.Attr("role", v) } func Rows(v string) g.Node {
M html/attributes_test.go → html/attributes_test.go
@@ -57,6 +57,7 @@ "pattern": Pattern, "preload": Preload, "placeholder": Placeholder, "rel": Rel, + "role": Role, "rows": Rows, "src": Src, "style": StyleAttr, @@ -75,3 +76,10 @@ assert.Equal(t, fmt.Sprintf(`<div %v="hat"></div>`, name), n) }) } } + +func TestAria(t *testing.T) { + t.Run("returns an attribute which name is prefixed with aria-", func(t *testing.T) { + n := Aria("selected", "true") + assert.Equal(t, ` aria-selected="true"`, n) + }) +}