-
-
Notifications
You must be signed in to change notification settings - Fork 273
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
docs: add typescript usage example (#738)
- Loading branch information
Showing
13 changed files
with
728 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
0.2.692 | ||
0.2.696 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,53 @@ | ||
# Pass Go data to TypeScript | ||
|
||
This demonstrates how to bundle TypeScript code, and use it in a templ project. | ||
|
||
The TypeScript code is bundled using `esbuild`, with templ used to serve HTML. | ||
|
||
The code demonstrates application of `onclick` event handlers, and how to pass data from Go to TypeScript. | ||
|
||
This demo passes data from server-side Go code to TypeScript code by placing the data in `<script type="application/json">` tags, or data attributes (called `alert-data` in this example). | ||
|
||
Note how the Go web server serves the `./assets` directory, which contains the bundled TypeScript code. | ||
|
||
## Tasks | ||
|
||
### generate | ||
|
||
```bash | ||
templ generate | ||
``` | ||
|
||
### ts-install | ||
|
||
Since it's a TypeScript project, you need to install the dependencies. | ||
|
||
Dir: ts | ||
|
||
```bash | ||
npm install | ||
``` | ||
|
||
### ts-build-cli | ||
|
||
If you have `esbuild` installed globally, you can bundle and minify the TypeScript code without using NPM. Remember to run `npm install` to install the dependencies first. | ||
|
||
```bash | ||
esbuild --bundle --minify --outfile=assets/js/index.js ts/src/index.ts | ||
``` | ||
|
||
### ts-build-npm | ||
|
||
If you don't have `esbuild` installed globally, you can use the NPM script to build the TypeScript code. | ||
|
||
Dir: ./ts | ||
|
||
```bash | ||
npm run build | ||
``` | ||
|
||
### run | ||
|
||
```bash | ||
go run . | ||
``` |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,54 @@ | ||
package components | ||
|
||
import ( | ||
"encoding/json" | ||
"fmt" | ||
) | ||
|
||
type Data struct { | ||
Message string `json:"msg"` | ||
} | ||
|
||
func JSON(v any) (string, error) { | ||
s, err := json.Marshal(v) | ||
if err != nil { | ||
return "", err | ||
} | ||
return string(s), nil | ||
} | ||
|
||
func JSONScript(id string, data any) templ.Component { | ||
return templ.ComponentFunc(func(ctx context.Context, w io.Writer) error { | ||
dataJSON, err := json.Marshal(data) | ||
if err != nil { | ||
return err | ||
} | ||
if _, err = io.WriteString(w, `<script`); err != nil { | ||
return err | ||
} | ||
if id != "" { | ||
if _, err = fmt.Fprintf(w, ` id="%s"`, templ.EscapeString(id)); err != nil { | ||
return err | ||
} | ||
} | ||
if _, err = fmt.Fprintf(w, ` type="application/json">%s</script>`, string(dataJSON)); err != nil { | ||
return err | ||
} | ||
return nil | ||
}) | ||
} | ||
|
||
templ Page(attributeData Data, scriptData Data) { | ||
<!DOCTYPE html> | ||
<html> | ||
<head> | ||
<title>Script usage</title> | ||
<script src="/assets/js/index.js" defer></script> | ||
</head> | ||
<body> | ||
<button id="attributeAlerter" alert-data={ JSON(attributeData) }>Show alert from data in alert-data attribute</button> | ||
@JSONScript("scriptData", scriptData) | ||
<button id="scriptAlerter">Show alert from data in script</button> | ||
</body> | ||
</html> | ||
} |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
module github.com/a-h/templ/examples/typescript | ||
|
||
go 1.21.5 | ||
|
||
replace github.com/a-h/templ => ../../ | ||
|
||
require github.com/a-h/templ v0.0.0-00010101000000-000000000000 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
github.com/google/go-cmp v0.6.0 h1:ofyhxvXcZhMsU5ulbFiLKl/XBFqE1GSq7atu8tAmTRI= | ||
github.com/google/go-cmp v0.6.0/go.mod h1:17dUlkBOakJ0+DkrSSNjCkIjxS6bF9zb3elmeNGIjoY= |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
package main | ||
|
||
import ( | ||
"fmt" | ||
"net/http" | ||
|
||
"github.com/a-h/templ" | ||
"github.com/a-h/templ/examples/typescript/components" | ||
) | ||
|
||
func main() { | ||
mux := http.NewServeMux() | ||
// Serve the JS bundle. | ||
mux.Handle("/assets/", http.StripPrefix("/assets/", http.FileServer(http.Dir("assets")))) | ||
|
||
// Serve the page. | ||
mux.HandleFunc("/", func(w http.ResponseWriter, r *http.Request) { | ||
// Create random server-side data. | ||
attributeData := components.Data{ | ||
Message: fmt.Sprintf("Hello, from the attribute data"), | ||
} | ||
scriptData := components.Data{ | ||
Message: fmt.Sprintf("Hello, from the script data"), | ||
} | ||
templ.Handler(components.Page(attributeData, scriptData)).ServeHTTP(w, r) | ||
}) | ||
|
||
fmt.Println("Listening on http://localhost:8080") | ||
http.ListenAndServe("localhost:8080", mux) | ||
} |
Oops, something went wrong.