Add popover attributes (#236) This PR adds popover attributes as detailed here: https://developer.mozilla.org/en-US/docs/Web/API/Popover_API/Using --------- Co-authored-by: Markus Wüstenberg <markus@maragu.dk>
Ken Powers ken@kenpowers.net
Wed, 30 Oct 2024 10:06:20 -0400
2 files changed, 45 insertions(+), 0 deletions(-)
M html/attributes.go → html/attributes.go
@@ -213,6 +213,18 @@ func Placeholder(v string) g.Node { return g.Attr("placeholder", v) } +func Popover(value ...string) g.Node { + return g.Attr("popover", value...) +} + +func PopoverTarget(v string) g.Node { + return g.Attr("popovertarget", v) +} + +func PopoverTargetAction(v string) g.Node { + return g.Attr("popovertargetaction", v) +} + func Poster(v string) g.Node { return g.Attr("poster", v) }
M html/attributes_test.go → html/attributes_test.go
@@ -78,6 +78,8 @@ {Name: "minlength", Func: MinLength}, {Name: "name", Func: Name}, {Name: "pattern", Func: Pattern}, {Name: "placeholder", Func: Placeholder}, + {Name: "popovertarget", Func: PopoverTarget}, + {Name: "popovertargetaction", Func: PopoverTargetAction}, {Name: "poster", Func: Poster}, {Name: "preload", Func: Preload}, {Name: "rel", Func: Rel}, @@ -103,6 +105,37 @@ for _, test := range tests { t.Run(test.Name, func(t *testing.T) { n := g.El("div", test.Func("hat")) assert.Equal(t, fmt.Sprintf(`<div %v="hat"></div>`, test.Name), n) + }) + } +} + +func TestVariadicAttributes(t *testing.T) { + tests := []struct { + Name string + Func func(...string) g.Node + }{ + {Name: "popover", Func: Popover}, + } + + for _, test := range tests { + t.Run(test.Name + "(no args)", func(t *testing.T) { + n := g.El("div", test.Func()) + assert.Equal(t, fmt.Sprintf(`<div %v></div>`, test.Name), n) + }) + + t.Run(test.Name +"(one arg)", func(t *testing.T) { + n := g.El("div", test.Func("hat")) + assert.Equal(t, fmt.Sprintf(`<div %v="hat"></div>`, test.Name), n) + }) + + t.Run(test.Name + "(two args panics)", func(t *testing.T) { + defer func() { + if r := recover(); r == nil { + t.Errorf("expected a panic") + } + }() + n := g.El("div", test.Func("hat", "party")) + assert.Equal(t, "unreachable", n) }) } }