mirror of
https://github.com/onsonr/sonr.git
synced 2025-03-11 13:29:12 +00:00
59 lines
2.3 KiB
Go
59 lines
2.3 KiB
Go
package router
|
|
|
|
import (
|
|
"bytes"
|
|
|
|
"github.com/a-h/templ"
|
|
"github.com/labstack/echo/v4"
|
|
|
|
"github.com/onsonr/sonr/pkg/nebula/components/home"
|
|
"github.com/onsonr/sonr/pkg/nebula/components/login"
|
|
"github.com/onsonr/sonr/pkg/nebula/components/register"
|
|
"github.com/onsonr/sonr/pkg/nebula/models"
|
|
)
|
|
|
|
// ╭───────────────────────────────────────────────────────────╮
|
|
// │ Marketing Pages │
|
|
// ╰───────────────────────────────────────────────────────────╯
|
|
|
|
func Home(c echo.Context) error {
|
|
mdls, err := models.GetModels()
|
|
if err != nil {
|
|
return err
|
|
}
|
|
return render(c, home.View(mdls.Home))
|
|
}
|
|
|
|
// ╭───────────────────────────────────────────────────────────╮
|
|
// │ Authentication Views │
|
|
// ╰───────────────────────────────────────────────────────────╯
|
|
|
|
func Login(c echo.Context) error {
|
|
return render(c, login.Modal(c))
|
|
}
|
|
|
|
func Register(c echo.Context) error {
|
|
return render(c, register.Modal(c))
|
|
}
|
|
|
|
// ╭───────────────────────────────────────────────────────────╮
|
|
// │ Helper Methods │
|
|
// ╰───────────────────────────────────────────────────────────╯
|
|
|
|
func render(c echo.Context, cmp templ.Component) error {
|
|
// Create a buffer to store the rendered HTML
|
|
buf := &bytes.Buffer{}
|
|
// Render the component to the buffer
|
|
err := cmp.Render(c.Request().Context(), buf)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
// Set the content type
|
|
c.Response().Header().Set(echo.HeaderContentType, echo.MIMETextHTML)
|
|
|
|
// Write the buffered content to the response
|
|
_, err = c.Response().Write(buf.Bytes())
|
|
return err
|
|
}
|