wisski-cloud-distillery/internal/component/static/static.go
2022-11-16 13:07:07 +01:00

32 lines
701 B
Go

// Package static implements serving of fully static resources
package static
import (
"context"
"embed"
"io/fs"
"net/http"
"github.com/FAU-CDI/wisski-distillery/internal/component"
"github.com/tkw1536/goprogram/stream"
)
type Static struct {
component.ComponentBase
}
func (*Static) Name() string { return "static" }
func (*Static) Routes() []string { return []string{"/static/"} }
func (static *Static) Handler(route string, context context.Context, io stream.IOStream) (http.Handler, error) {
fs, err := fs.Sub(distStaticFS, "dist")
if err != nil {
return nil, err
}
return http.StripPrefix(route, http.FileServer(http.FS(fs))), nil
}
//go:embed dist
var distStaticFS embed.FS