You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
46 lines
993 B
Go
46 lines
993 B
Go
package dev
|
|
|
|
import (
|
|
"log"
|
|
"path"
|
|
"phc/website/services/server/routes"
|
|
"phc/website/sl"
|
|
|
|
"github.com/gofiber/fiber/v2"
|
|
)
|
|
|
|
type Dev struct {
|
|
HtmlRouteBindings map[string]string
|
|
}
|
|
|
|
func (m *Dev) Initialize(l *sl.ServiceLocator) error {
|
|
m.HtmlRouteBindings = map[string]string{}
|
|
|
|
router, err := sl.Use[*routes.Router](l)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
router.Get("/api/dev/routes", func(c *fiber.Ctx) error {
|
|
return c.JSON(m.HtmlRouteBindings)
|
|
})
|
|
|
|
return nil
|
|
}
|
|
|
|
// UseVitePage this hook will link the provided "mountPoint" to the "frontendHtml" page
|
|
func UseVitePage[T any](l *sl.ServiceLocator, mountPoint, frontendHtml string) func(c *fiber.Ctx) error {
|
|
log.Printf(`registering vite route %q for %q`, frontendHtml, mountPoint)
|
|
|
|
dev, err := sl.Use[*Dev](l)
|
|
if err != nil {
|
|
log.Fatal(err)
|
|
}
|
|
|
|
dev.HtmlRouteBindings[mountPoint] = path.Join("./frontend/", frontendHtml)
|
|
|
|
return func(c *fiber.Ctx) error {
|
|
return c.SendFile(path.Join("./out/frontend/", frontendHtml))
|
|
}
|
|
}
|