1
0
View components in pure Go, that render to HTML 5. https://www.gomponents.com
Go to file
Markus Wüstenberg 0001b1d609
Add http.Adapt function (#92)
In the new package `http`, an `Adapt` function converts a `Handler` into a `http.HandlerFunc` from the `http` stdlib package.
2021-10-08 15:00:20 +02:00
.github/workflows Test using Go 1.17 (#91) 2021-10-06 20:51:31 +02:00
components Mark the assert test helpers as such (#90) 2021-10-06 20:49:43 +02:00
examples Fix TailwindCSS CDN URL in example (#76) 2021-05-11 16:39:04 +02:00
html Mark the assert test helpers as such (#90) 2021-10-06 20:49:43 +02:00
http Add http.Adapt function (#92) 2021-10-08 15:00:20 +02:00
internal/assert Mark the assert test helpers as such (#90) 2021-10-06 20:49:43 +02:00
svg Mark the assert test helpers as such (#90) 2021-10-06 20:49:43 +02:00
.editorconfig Add better example in readme (#16) 2020-09-23 22:05:59 +02:00
.gitignore Add Makefile (#4) 2020-09-18 13:57:04 +02:00
CONTRIBUTING.md Add contributing instructions (#33) 2020-10-23 14:32:55 +02:00
CONTRIBUTORS.md Add contributors file 2021-06-18 10:09:00 +02:00
go.mod Add first implementation of Node, El, Attr, Text 2020-09-13 22:50:19 +02:00
gomponents_test.go Mark the assert test helpers as such (#90) 2021-10-06 20:49:43 +02:00
gomponents.go Add examples in test files (#80) 2021-06-08 18:12:04 +02:00
LICENSE Update license year (#68) 2021-05-05 09:51:42 +02:00
Makefile Test using Go 1.17 (#91) 2021-10-06 20:51:31 +02:00
README.md Add link to maragu.dk and golang.dk in readme 2021-06-18 10:35:58 +02:00

Tired of complex template languages?

GoDoc Go codecov

Try view components in pure Go.

gomponents are view components written in pure Go. They render to HTML 5, and make it easy for you to build reusable components. So you can focus on building your app instead of learning yet another templating language.

The API may change until version 1 is reached.

Check out www.gomponents.com for an introduction.

Made in 🇩🇰 by maragu, maker of online Go courses.

Features

  • Build reusable view components
  • Write declarative HTML5 in Go without all the strings, so you get
    • Type safety
    • Auto-completion
    • Nice formatting with gofmt
  • Simple API that's easy to learn and use (you know most already if you know HTML)
  • No external dependencies

Usage

Get the library using go get:

go get -u github.com/maragudk/gomponents

The preferred way to use gomponents is with so-called dot-imports (note the dot before the gomponents/html import), to give you that smooth, native HTML feel:

package main

import (
	"net/http"

	g "github.com/maragudk/gomponents"
	c "github.com/maragudk/gomponents/components"
	. "github.com/maragudk/gomponents/html"
)

func main() {
	_ = http.ListenAndServe("localhost:8080", http.HandlerFunc(handler))
}

func handler(w http.ResponseWriter, r *http.Request) {
	_ = Page("Hi!", r.URL.Path).Render(w)
}

func Page(title, currentPath string) g.Node {
	return Doctype(
		HTML(
			Lang("en"),
			Head(
				TitleEl(g.Text(title)),
				StyleEl(Type("text/css"), g.Raw(".is-active{ font-weight: bold }")),
			),
			Body(
				Navbar(currentPath),
				H1(g.Text(title)),
				P(g.Textf("Welcome to the page at %v.", currentPath)),
			),
		),
	)
}

func Navbar(currentPath string) g.Node {
	return Nav(
		NavbarLink("/", "Home", currentPath),
		NavbarLink("/about", "About", currentPath),
	)
}

func NavbarLink(href, name, currentPath string) g.Node {
	return A(Href(href), c.Classes{"is-active": currentPath == href}, g.Text(name))
}

Some people don't like dot-imports, and luckily it's completely optional. If you don't like dot-imports, just use regular imports.

You could also use the provided HTML5 document template to simplify your code a bit:

package main

import (
	"net/http"

	g "github.com/maragudk/gomponents"
	c "github.com/maragudk/gomponents/components"
	. "github.com/maragudk/gomponents/html"
)

func main() {
	_ = http.ListenAndServe("localhost:8080", http.HandlerFunc(handler))
}

func handler(w http.ResponseWriter, r *http.Request) {
	_ = Page("Hi!", r.URL.Path).Render(w)
}

func Page(title, currentPath string) g.Node {
	return c.HTML5(c.HTML5Props{
		Title:    title,
		Language: "en",
		Head: []g.Node{
			StyleEl(Type("text/css"), g.Raw(".is-active{ font-weight: bold }")),
		},
		Body: []g.Node{
			Navbar(currentPath),
			H1(g.Text(title)),
			P(g.Textf("Welcome to the page at %v.", currentPath)),
		},
	})
}

func Navbar(currentPath string) g.Node {
	return Nav(
		NavbarLink("/", "Home", currentPath),
		NavbarLink("/about", "About", currentPath),
	)
}

func NavbarLink(href, name, currentPath string) g.Node {
	return A(Href(href), c.Classes{"is-active": currentPath == href}, g.Text(name))
}

For more complete examples, see the examples directory.

What's up with the specially named elements and attributes?

Unfortunately, there are four main name clashes in HTML elements and attributes, so they need an El or Attr suffix, respectively, to be able to co-exist in the same package in Go:

  • data (DataEl/DataAttr)
  • form (FormEl/FormAttr)
  • style (StyleEl/StyleAttr)
  • title (TitleEl/TitleAttr)