83 lines
2.2 KiB
Go
83 lines
2.2 KiB
Go
package admin
|
|
|
|
import (
|
|
"context"
|
|
"html/template"
|
|
"net/http"
|
|
|
|
_ "embed"
|
|
|
|
"github.com/FAU-CDI/wisski-distillery/internal/dis/component"
|
|
"github.com/FAU-CDI/wisski-distillery/internal/dis/component/instances"
|
|
"github.com/FAU-CDI/wisski-distillery/internal/dis/component/server/assets"
|
|
"github.com/FAU-CDI/wisski-distillery/internal/dis/component/server/templating"
|
|
"github.com/FAU-CDI/wisski-distillery/pkg/httpx"
|
|
"github.com/julienschmidt/httprouter"
|
|
"github.com/tkw1536/pkglib/lifetime"
|
|
)
|
|
|
|
//go:embed "html/anal.html"
|
|
var analHTML []byte
|
|
var analTemplate = templating.Parse[analContext](
|
|
"anal.html", analHTML, nil,
|
|
|
|
templating.Assets(assets.AssetsAdmin),
|
|
)
|
|
|
|
type analContext struct {
|
|
templating.RuntimeFlags
|
|
|
|
Analytics lifetime.Analytics
|
|
}
|
|
|
|
func (admin *Admin) components(ctx context.Context) http.Handler {
|
|
tpl := analTemplate.Prepare(
|
|
admin.Dependencies.Templating,
|
|
templating.Crumbs(
|
|
menuAdmin,
|
|
menuInstances,
|
|
menuComponents,
|
|
),
|
|
templating.Title("Components"),
|
|
)
|
|
|
|
return tpl.HTMLHandler(func(r *http.Request) (ac analContext, err error) {
|
|
ac.Analytics = *admin.Analytics
|
|
return
|
|
})
|
|
}
|
|
|
|
func (admin *Admin) ingredients(ctx context.Context) http.Handler {
|
|
tpl := analTemplate.Prepare(
|
|
admin.Dependencies.Templating,
|
|
templating.Crumbs(
|
|
menuAdmin,
|
|
menuInstances,
|
|
menuInstance,
|
|
menuIngredients,
|
|
),
|
|
)
|
|
|
|
return tpl.HTMLHandlerWithFlags(func(r *http.Request) (ac analContext, funcs []templating.FlagFunc, err error) {
|
|
slug := httprouter.ParamsFromContext(r.Context()).ByName("slug")
|
|
|
|
// find the instance itself!
|
|
instance, err := admin.Dependencies.Instances.WissKI(r.Context(), slug)
|
|
if err == instances.ErrWissKINotFound {
|
|
return ac, nil, httpx.ErrNotFound
|
|
}
|
|
if err != nil {
|
|
return ac, nil, err
|
|
}
|
|
funcs = []templating.FlagFunc{
|
|
templating.ReplaceCrumb(menuInstance, component.MenuItem{Title: "Instance", Path: template.URL("/admin/instance/" + slug)}),
|
|
templating.ReplaceCrumb(menuIngredients, component.MenuItem{Title: "Ingredients", Path: template.URL("/admin/instance/" + slug + "/ingredients/")}),
|
|
templating.Title(instance.Name() + " - Ingredients"),
|
|
}
|
|
|
|
// and get the components
|
|
ac.Analytics = *instance.Info().Analytics
|
|
|
|
return
|
|
})
|
|
}
|