27 lines
616 B
Go
27 lines
616 B
Go
package actions
|
|
|
|
import (
|
|
"github.com/fthvgb1/wp-go/internal/pkg/constraints"
|
|
"github.com/fthvgb1/wp-go/internal/theme"
|
|
"github.com/fthvgb1/wp-go/internal/theme/wp"
|
|
"github.com/gin-gonic/gin"
|
|
)
|
|
|
|
func ThemeHook(scene string) func(*gin.Context) {
|
|
return func(c *gin.Context) {
|
|
s := scene
|
|
if scene == constraints.Home {
|
|
if _, ok := c.GetQuery("s"); ok {
|
|
s = constraints.Search
|
|
}
|
|
}
|
|
t := theme.GetCurrentTemplateName()
|
|
h := wp.NewHandle(c, s, t)
|
|
h.Index = wp.NewIndexHandle(h)
|
|
h.Detail = wp.NewDetailHandle(h)
|
|
templ, _ := theme.GetTemplate(t)
|
|
h.SetTemplate(templ)
|
|
theme.Hook(t, h)
|
|
}
|
|
}
|