saasitone/pkg/handlers/search.go

61 lines
1.2 KiB
Go
Raw Normal View History

package handlers
2021-12-27 09:54:27 -08:00
import (
"fmt"
"math/rand"
"github.com/labstack/echo/v4"
2022-11-02 16:23:26 -07:00
"github.com/mikestefanello/pagoda/pkg/controller"
"github.com/mikestefanello/pagoda/pkg/services"
"github.com/mikestefanello/pagoda/templates"
2021-12-27 09:54:27 -08:00
)
const routeNameSearch = "search"
2021-12-27 09:54:27 -08:00
type (
Search struct {
2021-12-27 09:54:27 -08:00
controller.Controller
}
2022-02-10 05:56:07 -08:00
searchResult struct {
2021-12-27 09:54:27 -08:00
Title string
URL string
}
)
func init() {
Register(new(Search))
}
func (c *Search) Init(ct *services.Container) error {
c.Controller = controller.NewController(ct)
return nil
}
func (c *Search) Routes(g *echo.Group) {
g.GET("/search", c.Page).Name = routeNameSearch
}
func (c *Search) Page(ctx echo.Context) error {
2021-12-27 09:54:27 -08:00
page := controller.NewPage(ctx)
page.Layout = templates.LayoutMain
page.Name = templates.PageSearch
2021-12-27 09:54:27 -08:00
// Fake search results
2022-02-10 05:56:07 -08:00
var results []searchResult
2021-12-27 09:54:27 -08:00
if search := ctx.QueryParam("query"); search != "" {
for i := 0; i < 5; i++ {
title := "Lorem ipsum example ddolor sit amet"
index := rand.Intn(len(title))
title = title[:index] + search + title[index:]
2022-02-10 05:56:07 -08:00
results = append(results, searchResult{
2021-12-27 09:54:27 -08:00
Title: title,
URL: fmt.Sprintf("https://www.%s.com", search),
})
}
}
page.Data = results
return c.RenderPage(ctx, page)
}