all repos — gomponents @ 87d09c382434c9198c50356954fedf0ab8e5576f

HTML components in pure Go

87d09c38
Add package docs (#41)

Also update readme with features.
Markus Wüstenberg markus@maragu.dk
Mon, 02 Nov 2020 11:05:23 +0100
267d40bb
Add Map function (#40)

`Map` makes it easier to build lists of elements without having to iterate.
Markus Wüstenberg markus@maragu.dk
Mon, 02 Nov 2020 10:59:16 +0100
6c8f0c23
Render to Writer instead of string (#39)

The Render function has been changed to take a `Writer` instead of returning a string. This makes it possible to generate documents without having the whole content in memory.

This also removes the `gomponents.Write` function, which is now redundant.

Furthermore, the `el.Document` function has been changed to only take one child, as multiple children never make sense for it. (It's not even a child, more a sibling.)
Markus Wüstenberg markus@maragu.dk
Mon, 02 Nov 2020 10:03:05 +0100
92ba5904
Remove fmt.Sprintf call in attribute Render (#38)

Just concatenating the strings is much faster.

Before:

```
make benchmark
go test -bench=.
goos: darwin
goarch: amd64
pkg: github.com/maragudk/gomponents
BenchmarkAttr/boolean_attributes-8         	 8194791	       139 ns/op
BenchmarkAttr/name-value_attributes-8      	 5143292	       229 ns/op
PASS
ok  	github.com/maragudk/gomponents	2.841s
```

After:

```
make benchmark
go test -bench=.
goos: darwin
goarch: amd64
pkg: github.com/maragudk/gomponents
BenchmarkAttr/boolean_attributes-8         	16755404	        67.0 ns/op
BenchmarkAttr/name-value_attributes-8      	10208625	       116 ns/op
PASS
ok  	github.com/maragudk/gomponents	2.702s
```
Markus Wüstenberg markus@maragu.dk
Thu, 29 Oct 2020 15:40:14 +0100
f277d194
Pass attributes as pointers (#37)

Markus Wüstenberg markus@maragu.dk
Thu, 29 Oct 2020 13:07:22 +0100
3df42084
Add HTML5 document template (#36)

Markus Wüstenberg markus@maragu.dk
Thu, 29 Oct 2020 12:03:43 +0100
13701c4f
Add attribute helpers (#35)

Also refactor tests to be table-driven, for readability.
Markus Wüstenberg markus@maragu.dk
Wed, 28 Oct 2020 16:59:04 +0100
18e90339
Add element helpers and refactor (#34)

This change adds a lot of element helpers, and refactors:
- helpers into simple, text, and other helpers
- most tests into table-driven tests, so they're easier to read

Thanks to @oderwat for pushing me to improve the tests. 😉
Markus Wüstenberg markus@maragu.dk
Wed, 28 Oct 2020 16:16:18 +0100
8f17dba6
Add contributing instructions (#33)

Markus Wüstenberg markus@maragu.dk
Fri, 23 Oct 2020 14:32:55 +0200
c6c5fbd0
Add br and hr element helpers (#30)

Hans Raaf hara@oderwat.de
Fri, 23 Oct 2020 14:12:47 +0200
c99025e6
Remove "fmt" import in readme example (#31)

Also style menu in simple example slightly.
Hans Raaf hara@oderwat.de
Fri, 23 Oct 2020 12:32:47 +0200
3198b254
Don't render or error on nil children (#32)

This makes it easier to e.g. conditionally skip a component for rendering.
Markus Wüstenberg markus@maragu.dk
Fri, 23 Oct 2020 12:14:23 +0200
6d2fb0ee
Add Group function to group Nodes (#29)

Markus Wüstenberg markus@maragu.dk
Thu, 22 Oct 2020 09:07:57 +0200
f2a2b949
Update package doc for gomponents (#28)

Markus Wüstenberg markus@maragu.dk
Wed, 21 Oct 2020 22:17:27 +0200
42433a4a
Use HTMLEscapeString in Textf (#27)

Markus Wüstenberg markus@maragu.dk
Wed, 21 Oct 2020 21:59:52 +0200
4448a48d
Add remaining sectioning elements as helpers (#25)

Fixes #22.
Markus Wüstenberg markus@maragu.dk
Fri, 25 Sep 2020 17:36:21 +0200
83faa4ca
Use HTMLEscapeString (#24)

HTMLEscaper is not needed with strings.
Markus Wüstenberg markus@maragu.dk
Fri, 25 Sep 2020 13:39:55 +0200
5d593389
Update readme with blog post link (#23)

Markus Wüstenberg markus@maragu.dk
Fri, 25 Sep 2020 12:32:50 +0200
5da578cf
Group element helpers in different files (#21)

According to the section at https://developer.mozilla.org/en-US/docs/Web/HTML/Element
Markus Wüstenberg markus@maragu.dk
Fri, 25 Sep 2020 09:57:47 +0200
77b64b13
Add space before auto-closing element (#20)

Markus Wüstenberg markus@maragu.dk
Thu, 24 Sep 2020 21:55:11 +0200
5929ba8c
Add convenience helpers for form elements (#19)

Markus Wüstenberg markus@maragu.dk
Thu, 24 Sep 2020 21:17:15 +0200
4c109f9f
Introduce Placer interface (#18)

When implemented, the `Place` method of the `Placer` interface tells `Render` in `El` where to put a Node. This is relevant for helpers that want to be rendered like attributes, inside the parent element.

Fixes the bug where `attr.Classes` was rendered outside the element.
Markus Wüstenberg markus@maragu.dk
Thu, 24 Sep 2020 13:19:52 +0200
f27cb0c0
Add Textf function (#17)

Like Text, but calls fmt.Sprintf before rendering.
Markus Wüstenberg markus@maragu.dk
Wed, 23 Sep 2020 22:10:35 +0200
3de9270f
Add better example in readme (#16)

Markus Wüstenberg markus@maragu.dk
Wed, 23 Sep 2020 22:05:59 +0200
eb2cfa10
Add children varargs to h1-6, b, strong, i, em, img helpers (#15)

This makes it possible to add attributes.
Markus Wüstenberg markus@maragu.dk
Wed, 23 Sep 2020 20:35:16 +0200
05c31515
Make attr.Classes a map type (#14)

This makes the usage syntax prettier. Instead of `attr.Classes(map[string]bool{})`, we can just use `attr.Classes{}`.
Markus Wüstenberg markus@maragu.dk
Wed, 23 Sep 2020 20:30:14 +0200
c832941e
Add simple example (#13)

Markus Wüstenberg markus@maragu.dk
Mon, 21 Sep 2020 16:30:29 +0200
18b52ffd
Add a test for attr.String (#12)

Markus Wüstenberg markus@maragu.dk
Mon, 21 Sep 2020 16:07:39 +0200
d78ed7ef
Add a Write function (#11)

Markus Wüstenberg markus@maragu.dk
Mon, 21 Sep 2020 11:27:37 +0200
8de5a685
Add a lot of common elements (#10)

Especially add elements that are either used in every document, that nearly always have text content, or that are almost always used with certain attributes.
Markus Wüstenberg markus@maragu.dk
Mon, 21 Sep 2020 11:23:47 +0200
02d963de
Don't render twice with children (#9)

Markus Wüstenberg markus@maragu.dk
Mon, 21 Sep 2020 11:14:37 +0200
4d9f1c2a
Add package el with element helpers (#8)

Markus Wüstenberg markus@maragu.dk
Fri, 18 Sep 2020 15:01:10 +0200
f7812a9f
Add package attr with attribute helpers (#7)

Markus Wüstenberg markus@maragu.dk
Fri, 18 Sep 2020 14:44:47 +0200
f9d584c9
Make NodeFunc and attr implement fmt.Stringer (#6)

Markus Wüstenberg markus@maragu.dk
Fri, 18 Sep 2020 14:38:09 +0200
e8faab52
Try out codecov.io (#5)

Markus Wüstenberg markus@maragu.dk
Fri, 18 Sep 2020 14:05:53 +0200
15d2cc93
Add Makefile (#4)

Markus Wüstenberg markus@maragu.dk
Fri, 18 Sep 2020 13:57:04 +0200
a564fd6c
Create codeql-analysis.yml (#3)

Markus Wüstenberg markus@maragu.dk
Tue, 15 Sep 2020 09:40:58 +0200
ad47ed56
Add godoc link to readme (#2)

Markus Wüstenberg markus@maragu.dk
Mon, 14 Sep 2020 10:51:29 +0200
ca80dce0
Add package documentation (#1)

Markus Wüstenberg markus@maragu.dk
Mon, 14 Sep 2020 10:47:14 +0200
fc3cc0f0
Add first implementation of Node, El, Attr, Text
Markus Wüstenberg markus@wustenberg.dk
Sun, 13 Sep 2020 22:50:19 +0200