wp-go/internal/actions/themehook.go

25 lines
555 B
Go
Raw Normal View History

package actions
import (
2023-03-17 10:26:08 +00:00
"github.com/fthvgb1/wp-go/internal/pkg/constraints"
"github.com/fthvgb1/wp-go/internal/theme"
2023-03-01 05:17:12 +00:00
"github.com/fthvgb1/wp-go/internal/theme/wp"
"github.com/gin-gonic/gin"
)
func ThemeHook(scene int) func(*gin.Context) {
2023-03-17 10:26:08 +00:00
return func(c *gin.Context) {
s := scene
if scene == constraints.Home {
if _, ok := c.GetQuery("s"); ok {
s = constraints.Search
}
}
2023-03-09 14:36:41 +00:00
t := theme.GetCurrentTemplateName()
2023-03-17 10:26:08 +00:00
h := wp.NewHandle(c, s, t)
2023-03-01 05:17:12 +00:00
h.Index = wp.NewIndexHandle(h)
h.Detail = wp.NewDetailHandle(h)
2023-02-24 11:34:19 +00:00
theme.Hook(t, h)
}
}