Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/angelofallars/htmx-go
</> Build awesome HTMX + Go projects faster.
https://github.com/angelofallars/htmx-go
Last synced: 7 days ago
JSON representation
</> Build awesome HTMX + Go projects faster.
- Host: GitHub
- URL: https://github.com/angelofallars/htmx-go
- Owner: angelofallars
- License: mit
- Created: 2023-11-22T02:18:44.000Z (12 months ago)
- Default Branch: main
- Last Pushed: 2024-02-05T09:36:21.000Z (9 months ago)
- Last Synced: 2024-10-13T07:49:30.705Z (26 days ago)
- Language: Go
- Homepage: https://pkg.go.dev/github.com/angelofallars/htmx-go?tab=doc
- Size: 70.3 KB
- Stars: 735
- Watchers: 6
- Forks: 20
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
- Funding: .github/FUNDING.yml
- License: LICENSE
Awesome Lists containing this project
- awesome-htmx - htmx-go - Go integration compatible with `net/http`, prioritizing type safety. (Tools)
README
#
[![GoDoc](https://pkg.go.dev/badge/github.com/angelofallars/htmx-go?status.svg)](https://pkg.go.dev/github.com/angelofallars/htmx-go?tab=doc)
[![GitHub Workflow Status (with event)](https://img.shields.io/github/actions/workflow/status/angelofallars/htmx-go/go.yml?cacheSeconds=30)](https://github.com/angelofallars/htmx-go/actions)
[![License](https://img.shields.io/github/license/angelofallars/htmx-go)](./LICENSE)
[![Stars](https://img.shields.io/github/stars/angelofallars/htmx-go)](https://github.com/angelofallars/htmx-go/stargazers)
[![Discord](https://img.shields.io/discord/725789699527933952?label=htmx%20discord)](https://htmx.org/discord)htmx-go is a **type-safe** library for working
with [HTMX](https://htmx.org/) in Go.Less time fiddling with HTTP
headers, more time developing awesome Hypermedia-driven applications.Check if requests are from HTMX, and use a type-safe, declarative
syntax for HTMX response headers to control HTMX behavior from the server.Write [triggers](#triggers) for client-side events effectively without dealing with JSON serialization. With this approach, **event-driven** applications are easier to develop.
Use [Swap Strategy](#swap-strategy) methods to fine-tune `hx-swap` behavior.
Uses standard `net/http` types.
Has basic [integration](#templ-integration) with [templ](https://templ.guide/) components.```go
import (
"net/http""github.com/angelofallars/htmx-go"
)func handler(w http.ResponseWriter, r *http.Request) {
if htmx.IsHTMX(r) {
htmx.NewResponse().
Reswap(htmx.SwapBeforeEnd).
Retarget("#contacts").
AddTrigger(htmx.Trigger("enable-submit")).
AddTrigger(htmx.TriggerDetail("display-message", "Hello world!")).
Write(w)
}
}
```> Think this project is awesome? [Consider sponsoring me](https://github.com/sponsors/angelofallars) 💙
## Installation
Use go get.
```sh
go get github.com/angelofallars/htmx-go
```Then import htmx-go:
```go
import "github.com/angelofallars/htmx-go"
```## HTMX Requests
### Check request origin
You can determine if a request is from HTMX.
With this, you can add custom handling for non-HTMX requests.You can also use this for checking if this is a GET request for the initial
page load on your website, as initial page load requests
don't use HTMX.```go
func handler(w http.ResponseWriter, r *http.Request) {
if htmx.IsHTMX(r) {
// logic for handling HTMX requests
} else {
// logic for handling non-HTMX requests (e.g. render a full page for first-time visitors)
}
}
```### Check if request is Boosted (`hx-boost`)
```go
func handler(w http.ResponseWriter, r *http.Request) {
if htmx.IsBoosted(r) {
// logic for handling boosted requests
} else {
// logic for handling non-boosted requests
}
}
```## HTMX responses
htmx-go takes inspiration from [Lip Gloss](https://github.com/charmbracelet/lipgloss)
for a declarative way of specifying HTMX response headers.### Basic usage
Make a response writer with `htmx.NewResponse()`, and add a
header to it to make the page refresh:``` go
func handler(w http.ResponseWriter, r *http.Request) {
writer := htmx.NewResponse().Refresh(true)
writer.Write(w)
}
```### Retarget response to a different element
```go
func handler(w http.ResponseWriter, r *http.Request) {
htmx.NewResponse().
// Override 'hx-target' to specify which target to load into
Retarget("#errors").
// Also override the 'hx-swap' value of the request
Reswap(htmx.SwapBeforeEnd).
Write(w)
}
```### Triggers
[HTMX Reference: `hx-trigger`](https://htmx.org/headers/hx-trigger/)
You can add triggers to trigger client-side [events](https://developer.mozilla.org/en-US/docs/Learn/JavaScript/Building_blocks/Events). htmx-go takes care of formatting
and JSON serialization of the header values.Define event triggers:
- `htmx.Trigger(eventName string)` - A trigger with no details.
- `htmx.TriggerDetail(eventName string, detailValue string)` - A trigger with one detail value.
- `htmx.TriggerObject(eventName string, detailObject any)` - A trigger with a JSON-serializable detail
object. Recommended to pass in either `map[string]string` or structs with JSON field tags.Set trigger headers using the preceding triggers:
- `Response.AddTrigger(trigger ...EventTrigger)` - appends to the `HX-Trigger` header
- `Response.AddTriggerAfterSettle(trigger ...EventTrigger)` - appends to the `HX-Trigger-After-Settle` header
- `Response.AddTriggerAfterSwap(trigger ...EventTrigger)` - appends to the `HX-Trigger-After-Swap` header```go
htmx.NewResponse().
AddTrigger(htmx.Trigger("myEvent"))
// HX-Trigger: myEventhtmx.NewResponse().
AddTrigger(htmx.TriggerDetail("showMessage", "Here Is A Message"))
// HX-Trigger: {"showMessage":"Here Is A Message"}htmx.NewResponse().
AddTrigger(
htmx.TriggerDetail("hello", "world"),
htmx.TriggerObject("myEvent", map[string]string{
"level": "info",
"message": "Here Is A Message",
}),
)
// HX-Trigger: {"hello":"world","myEvent":{"level":"info","message":"Here is a Message"}}
```> [!TIP]
> [Alpine.js](https://alpinejs.dev/) and [Hyperscript](https://hyperscript.org) can listen to
> and receive details from events triggered by htmx-go. This makes triggers initiated by the server
> very handy for event-driven applications!
>
> For Alpine.js, you can register an `x-on:.window` listener. The `.window` modifier
> is important because HTMX dispatches events from the root `window` object.
> To receive values sent by `htmx.TriggerDetail` and `htmx.TriggerObject`,
> you can use `$event.detail.value`.### Swap strategy
[HTMX Reference: `hx-swap`](https://htmx.org/attributes/hx-swap/)
`Response.Reswap()` takes in `SwapStrategy` values from this library.
```go
htmx.NewResponse().
Reswap(htmx.SwapInnerHTML)
// HX-Reswap: innerHTMLhtmx.NewResponse().
Reswap(htmx.SwapAfterEnd.Transition(true))
// HX-Reswap: innerHTML transition:true
```Exported `SwapStrategy` constant values can be appended with modifiers through their methods.
If successive methods write to the same modifier,
the modifier is always replaced with the latest one.```go
import "time"htmx.SwapInnerHTMl.After(time.Second * 1)
// HX-Reswap: innerHTML swap:1shtmx.SwapBeforeEnd.Scroll(htmx.Bottom)
// HX-Reswap: beforeend scroll:bottomhtmx.SwapAfterEnd.IgnoreTitle(true)
// HX-Reswap: afterend ignoreTitle:truehtmx.SwapAfterEnd.FocusScroll(true)
// HX-Reswap: afterend ignoreTitle:truehtmx.SwapInnerHTML.ShowOn("#another-div", htmx.Top)
// HX-Reswap: innerHTML show:#another-div:top// Modifier chaining
htmx.SwapInnerHTML.ShowOn("#another-div", htmx.Top).After(time.Millisecond * 500)
// HX-Reswap: innerHTML show:#another-div:top swap:500mshtmx.SwapBeforeBegin.ShowWindow(htmx.Top)
// HX-Reswap: beforebegin show:window:tophtmx.SwapDefault.ShowNone()
// HX-Reswap: show:none
```### Code organization
HTMX response writers can be declared outside of functions with `var` so you can reuse them in several
places.> [!CAUTION]
> If you're adding additional headers to a global response writer, always use the `.Clone()` method
> to avoid accidentally modifying the global response writer.```go
var deleter = htmx.NewResponse().
Reswap(htmx.SwapDelete)func(w http.ResponseWriter, r *http.Request) {
deleter.Clone().
Reselect("#messages").
Write(w)
}
```### Templ integration
HTMX pairs well with [Templ](https://templ.guide), and this library is no exception.
You can render both the necessary HTMX response headers and Templ components in
one step with the `.RenderTempl()` method.```go
// hello.templ
templ Hello() {
Hello { name }!
}// main.go
func(w http.ResponseWriter, r *http.Request) {
htmx.NewResponse().
Retarget("#hello").
RenderTempl(r.Context(), w, Hello())
}
```> [!NOTE]
> To avoid issues with custom HTTP status code headers with this approach,
> it's recommended to use `Response().StatusCode()` so the status code header
> is always set after the HTMX headers.### Stop polling
If you have an element that is polling a URL and you want it to stop, use the
`htmx.StatusStopPolling` 286 status code in a response to cancel the polling. [HTMX documentation
reference](https://htmx.org/docs/#polling)```go
w.WriteHeader(htmx.StatusStopPolling)
```## Header names
If you need to work with HTMX headers directly, htmx-go provides constant values for all
HTTP header field names of HTMX so you don't have to write them yourself. This mitigates the risk of writing
header names with typos.```go
// Request headers
const (
HeaderBoosted = "HX-Boosted"
HeaderCurrentURL = "HX-Current-URL"
HeaderHistoryRestoreRequest = "HX-History-Restore-Request"
HeaderPrompt = "HX-Prompt"
HeaderRequest = "Hx-Request"
HeaderTarget = "HX-Target"
HeaderTriggerName = "Hx-Trigger-Name"
)// Common headers
const (
HeaderTrigger = "HX-Trigger"
)// Response headers
const (
HeaderLocation = "HX-Location"
HeaderPushURL = "HX-Push-Url"
HeaderRedirect = "HX-Redirect"
HeaderRefresh = "HX-Refresh"
HeaderReplaceUrl = "HX-Replace-Url"
HeaderReswap = "HX-Reswap"
HeaderRetarget = "HX-Retarget"
HeaderReselect = "HX-Reselect"
HeaderTriggerAfterSettle = "HX-Trigger-After-Settle"
HeaderTriggerAfterSwap = "HX-Trigger-After-Swap"
)
```## Compatibility
This library is compatible with the standard `net/http` library, as well as other routers like Chi
and Gorilla Mux that use the standard `http.HandlerFunc` handler type.With the Echo web framework, try passing in `context.Request()` and
`context.Response().Writer` for requests and responses, respectively.With the Gin web framework on the other hand, try using `context.Request` and
`context.Writer`.If you use Fiber, it is recommended to use [`htmx-fiber`](https://github.com/sopa0/htmx-fiber) instead, which is a fork of htmx-go.
## Additional resources
- [HTMX - HTTP Header Reference](https://htmx.org/reference/#headers)
## Contributing
Pull requests are welcome!
## License
[MIT](./LICENSE)