Changed: DB Params
This commit is contained in:
9
templ/examples/streaming/go.mod
Normal file
9
templ/examples/streaming/go.mod
Normal file
@@ -0,0 +1,9 @@
|
||||
module githbu.com/a-h/templ/examples/streaming
|
||||
|
||||
go 1.23
|
||||
|
||||
toolchain go1.23.3
|
||||
|
||||
replace github.com/a-h/templ => ../../
|
||||
|
||||
require github.com/a-h/templ v0.2.707
|
2
templ/examples/streaming/go.sum
Normal file
2
templ/examples/streaming/go.sum
Normal file
@@ -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=
|
53
templ/examples/streaming/main.templ
Normal file
53
templ/examples/streaming/main.templ
Normal file
@@ -0,0 +1,53 @@
|
||||
package main
|
||||
|
||||
import (
|
||||
"fmt"
|
||||
"net/http"
|
||||
"time"
|
||||
)
|
||||
|
||||
func main() {
|
||||
http.HandleFunc("/", func(w http.ResponseWriter, r *http.Request) {
|
||||
// Create a channel to send data to the template.
|
||||
data := make(chan string)
|
||||
// Run a background process that will take 10 seconds to complete.
|
||||
go func() {
|
||||
// Always remember to close the channel.
|
||||
defer close(data)
|
||||
for i := 0; i < 10; i++ {
|
||||
select {
|
||||
case <-r.Context().Done():
|
||||
// Quit early if the client is no longer connected.
|
||||
return
|
||||
case <-time.After(time.Second):
|
||||
// Send a new piece of data to the channel.
|
||||
data <- fmt.Sprintf("Part %d", i+1)
|
||||
}
|
||||
}
|
||||
}()
|
||||
|
||||
// Pass the channel to the template.
|
||||
component := Page(data)
|
||||
|
||||
// Serve using the streaming mode of the handler.
|
||||
templ.Handler(component, templ.WithStreaming()).ServeHTTP(w, r)
|
||||
})
|
||||
http.ListenAndServe("127.0.0.1:8080", nil)
|
||||
}
|
||||
|
||||
templ Page(data chan string) {
|
||||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
<title>Page</title>
|
||||
</head>
|
||||
<body>
|
||||
<h1>Page</h1>
|
||||
for d := range data {
|
||||
@templ.Flush() {
|
||||
<div>{ d }</div>
|
||||
}
|
||||
}
|
||||
</body>
|
||||
</html>
|
||||
}
|
116
templ/examples/streaming/main_templ.go
Normal file
116
templ/examples/streaming/main_templ.go
Normal file
@@ -0,0 +1,116 @@
|
||||
// Code generated by templ - DO NOT EDIT.
|
||||
|
||||
// templ: version: v0.3.833
|
||||
package main
|
||||
|
||||
//lint:file-ignore SA4006 This context is only used if a nested component is present.
|
||||
|
||||
import "github.com/a-h/templ"
|
||||
import templruntime "github.com/a-h/templ/runtime"
|
||||
|
||||
import (
|
||||
"fmt"
|
||||
"net/http"
|
||||
"time"
|
||||
)
|
||||
|
||||
func main() {
|
||||
http.HandleFunc("/", func(w http.ResponseWriter, r *http.Request) {
|
||||
// Create a channel to send data to the template.
|
||||
data := make(chan string)
|
||||
// Run a background process that will take 10 seconds to complete.
|
||||
go func() {
|
||||
// Always remember to close the channel.
|
||||
defer close(data)
|
||||
for i := 0; i < 10; i++ {
|
||||
select {
|
||||
case <-r.Context().Done():
|
||||
// Quit early if the client is no longer connected.
|
||||
return
|
||||
case <-time.After(time.Second):
|
||||
// Send a new piece of data to the channel.
|
||||
data <- fmt.Sprintf("Part %d", i+1)
|
||||
}
|
||||
}
|
||||
}()
|
||||
|
||||
// Pass the channel to the template.
|
||||
component := Page(data)
|
||||
|
||||
// Serve using the streaming mode of the handler.
|
||||
templ.Handler(component, templ.WithStreaming()).ServeHTTP(w, r)
|
||||
})
|
||||
http.ListenAndServe("127.0.0.1:8080", nil)
|
||||
}
|
||||
|
||||
func Page(data chan string) templ.Component {
|
||||
return templruntime.GeneratedTemplate(func(templ_7745c5c3_Input templruntime.GeneratedComponentInput) (templ_7745c5c3_Err error) {
|
||||
templ_7745c5c3_W, ctx := templ_7745c5c3_Input.Writer, templ_7745c5c3_Input.Context
|
||||
if templ_7745c5c3_CtxErr := ctx.Err(); templ_7745c5c3_CtxErr != nil {
|
||||
return templ_7745c5c3_CtxErr
|
||||
}
|
||||
templ_7745c5c3_Buffer, templ_7745c5c3_IsBuffer := templruntime.GetBuffer(templ_7745c5c3_W)
|
||||
if !templ_7745c5c3_IsBuffer {
|
||||
defer func() {
|
||||
templ_7745c5c3_BufErr := templruntime.ReleaseBuffer(templ_7745c5c3_Buffer)
|
||||
if templ_7745c5c3_Err == nil {
|
||||
templ_7745c5c3_Err = templ_7745c5c3_BufErr
|
||||
}
|
||||
}()
|
||||
}
|
||||
ctx = templ.InitializeContext(ctx)
|
||||
templ_7745c5c3_Var1 := templ.GetChildren(ctx)
|
||||
if templ_7745c5c3_Var1 == nil {
|
||||
templ_7745c5c3_Var1 = templ.NopComponent
|
||||
}
|
||||
ctx = templ.ClearChildren(ctx)
|
||||
templ_7745c5c3_Err = templruntime.WriteString(templ_7745c5c3_Buffer, 1, "<!doctype html><html><head><title>Page</title></head><body><h1>Page</h1>")
|
||||
if templ_7745c5c3_Err != nil {
|
||||
return templ_7745c5c3_Err
|
||||
}
|
||||
for d := range data {
|
||||
templ_7745c5c3_Var2 := templruntime.GeneratedTemplate(func(templ_7745c5c3_Input templruntime.GeneratedComponentInput) (templ_7745c5c3_Err error) {
|
||||
templ_7745c5c3_W, ctx := templ_7745c5c3_Input.Writer, templ_7745c5c3_Input.Context
|
||||
templ_7745c5c3_Buffer, templ_7745c5c3_IsBuffer := templruntime.GetBuffer(templ_7745c5c3_W)
|
||||
if !templ_7745c5c3_IsBuffer {
|
||||
defer func() {
|
||||
templ_7745c5c3_BufErr := templruntime.ReleaseBuffer(templ_7745c5c3_Buffer)
|
||||
if templ_7745c5c3_Err == nil {
|
||||
templ_7745c5c3_Err = templ_7745c5c3_BufErr
|
||||
}
|
||||
}()
|
||||
}
|
||||
ctx = templ.InitializeContext(ctx)
|
||||
templ_7745c5c3_Err = templruntime.WriteString(templ_7745c5c3_Buffer, 2, "<div>")
|
||||
if templ_7745c5c3_Err != nil {
|
||||
return templ_7745c5c3_Err
|
||||
}
|
||||
var templ_7745c5c3_Var3 string
|
||||
templ_7745c5c3_Var3, templ_7745c5c3_Err = templ.JoinStringErrs(d)
|
||||
if templ_7745c5c3_Err != nil {
|
||||
return templ.Error{Err: templ_7745c5c3_Err, FileName: `templ/examples/streaming/main.templ`, Line: 48, Col: 13}
|
||||
}
|
||||
_, templ_7745c5c3_Err = templ_7745c5c3_Buffer.WriteString(templ.EscapeString(templ_7745c5c3_Var3))
|
||||
if templ_7745c5c3_Err != nil {
|
||||
return templ_7745c5c3_Err
|
||||
}
|
||||
templ_7745c5c3_Err = templruntime.WriteString(templ_7745c5c3_Buffer, 3, "</div>")
|
||||
if templ_7745c5c3_Err != nil {
|
||||
return templ_7745c5c3_Err
|
||||
}
|
||||
return nil
|
||||
})
|
||||
templ_7745c5c3_Err = templ.Flush().Render(templ.WithChildren(ctx, templ_7745c5c3_Var2), templ_7745c5c3_Buffer)
|
||||
if templ_7745c5c3_Err != nil {
|
||||
return templ_7745c5c3_Err
|
||||
}
|
||||
}
|
||||
templ_7745c5c3_Err = templruntime.WriteString(templ_7745c5c3_Buffer, 4, "</body></html>")
|
||||
if templ_7745c5c3_Err != nil {
|
||||
return templ_7745c5c3_Err
|
||||
}
|
||||
return nil
|
||||
})
|
||||
}
|
||||
|
||||
var _ = templruntime.GeneratedTemplate
|
Reference in New Issue
Block a user