Add Rawf (#114) Like `Raw`, but interpolates like `Textf`.
Markus Wüstenberg markus@maragu.dk
Thu, 03 Nov 2022 11:24:26 +0100
2 files changed, 25 insertions(+), 2 deletions(-)
M gomponents.go → gomponents.go
@@ -4,7 +4,7 @@ // The primary interface is a Node. It describes a function Render, which should render the Node // to the given writer as a string. // // All DOM elements and attributes can be created by using the El and Attr functions. -// The functions Text, Textf, and Raw can be used to create text nodes. +// The functions Text, Textf, Raw, and Rawf can be used to create text nodes. // See also helper functions Group, Map, and If. // // For basic HTML elements and attributes, see the package html. @@ -207,7 +207,7 @@ return err }) } -// Textf creates a text DOM Node that Renders the interpolated and escaped string t. +// Textf creates a text DOM Node that Renders the interpolated and escaped string format. func Textf(format string, a ...interface{}) Node { return NodeFunc(func(w io.Writer) error { _, err := w.Write([]byte(template.HTMLEscapeString(fmt.Sprintf(format, a...)))) @@ -219,6 +219,14 @@ // Raw creates a text DOM Node that just Renders the unescaped string t. func Raw(t string) Node { return NodeFunc(func(w io.Writer) error { _, err := w.Write([]byte(t)) + return err + }) +} + +// Rawf creates a text DOM Node that just Renders the interpolated and unescaped string format. +func Rawf(format string, a ...interface{}) Node { + return NodeFunc(func(w io.Writer) error { + _, err := w.Write([]byte(fmt.Sprintf(format, a...))) return err }) }
M gomponents_test.go → gomponents_test.go
@@ -212,6 +212,21 @@ _ = e.Render(os.Stdout) // Output: <span><button onclick="javascript:alert('Party time!')">Party hats</button> > normal hats.</span> } +func TestRawf(t *testing.T) { + t.Run("renders interpolated and raw text", func(t *testing.T) { + e := g.Rawf("<%v>", "div") + assert.Equal(t, "<div>", e) + }) +} + +func ExampleRawf() { + e := g.El("span", + g.Rawf(`<button onclick="javascript:alert('%v')">Party hats</button> > normal hats.`, "Party time!"), + ) + _ = e.Render(os.Stdout) + // Output: <span><button onclick="javascript:alert('Party time!')">Party hats</button> > normal hats.</span> +} + func TestGroup(t *testing.T) { t.Run("groups multiple nodes into one", func(t *testing.T) { children := []g.Node{g.El("br", g.Attr("id", "hat")), g.El("hr")}