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.
48 lines
994 B
Go
48 lines
994 B
Go
2 years ago
|
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)
|
||
|
}
|
||
|
|
||
|
frontendPath := path.Join("./frontend/", frontendHtml)
|
||
|
|
||
|
dev.HtmlRouteBindings[mountPoint] = frontendPath
|
||
|
|
||
|
return func(c *fiber.Ctx) error {
|
||
|
return c.SendFile(frontendPath)
|
||
|
}
|
||
|
}
|