all repos — gomponents @ 1c0ceb44a530632be2d591eafcadea2ba481a682

HTML components in pure Go

Adjust documentation on Iff (#179)

Markus Wüstenberg markus@maragu.dk
Tue, 25 Jun 2024 13:46:24 +0200
commit

1c0ceb44a530632be2d591eafcadea2ba481a682

parent

d9708f9290f723dd4424f86d300b18974e2c169b

3 files changed, 17 insertions(+), 9 deletions(-)

jump to
M README.mdREADME.md
@@ -28,7 +28,7 @@ - Auto-completion   - Nice formatting with `gofmt`
 - Simple API that's easy to learn and use (you know most already if you know HTML)
 - Useful helpers like `Text` and `Textf` that insert HTML-escaped text, `Map` for mapping data to components,
-  and `If` for conditional rendering.
+  and `If`/`Iff` for conditional rendering.
 - No external dependencies
 
 ## Usage
M gomponents.gogomponents.go
@@ -254,8 +254,8 @@ } 
 // If condition is true, return the given Node. Otherwise, return nil.
 // This helper function is good for inlining elements conditionally.
-// If your condition and node involve a nilable variable, use iff because
-// go will evaluate the node regardless of the condition.
+// If it's important that the given Node is only evaluated if condition is true
+// (for example, when using nilable variables), use [Iff] instead.
 func If(condition bool, n Node) Node {
 	if condition {
 		return n
@@ -263,8 +263,10 @@ } 	return nil
 }
 
-// Iff execute the function f if condition is true, otherwise return nil.
-// it is the preferred way to conditionally render a node if the node involves a nilable variable.
+// Iff condition is true, call the given function. Otherwise, return nil.
+// This helper function is good for inlining elements conditionally when the node depends on nilable data,
+// or some other code that could potentially panic.
+// If you just need simple conditional rendering, see [If].
 func Iff(condition bool, f func() Node) Node {
 	if condition {
 		return f()
M gomponents_test.gogomponents_test.go
@@ -277,10 +277,12 @@ } 
 func ExampleIf() {
 	showMessage := true
+
 	e := g.El("div",
 		g.If(showMessage, g.El("span", g.Text("You lost your hat!"))),
 		g.If(!showMessage, g.El("span", g.Text("No messages."))),
 	)
+
 	_ = e.Render(os.Stdout)
 	// Output: <div><span>You lost your hat!</span></div>
 }
@@ -302,14 +304,18 @@ }) }
 
 func ExampleIff() {
-	var nillableVariable *struct {
-		str string
+	type User struct {
+		Name string
 	}
+	var user *User
+
 	e := g.El("div",
-		g.Iff(nillableVariable != nil, func() g.Node {
-			return g.Text(nillableVariable.str)
+		// This would panic using just If
+		g.Iff(user != nil, func() g.Node {
+			return g.Text(user.Name)
 		}),
 	)
+
 	_ = e.Render(os.Stdout)
 	// Output: <div></div>
 }