53 lines
1.5 KiB
Go
53 lines
1.5 KiB
Go
/*
|
|
* Amsterdam Web Communities System
|
|
* Copyright (c) 2025 Erbosoft Metaverse Design Solutions, All Rights Reserved
|
|
*
|
|
* This Source Code Form is subject to the terms of the Mozilla Public
|
|
* License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
* file, You can obtain one at https://mozilla.org/MPL/2.0/.
|
|
*/
|
|
|
|
// Package ui holds the support for the Amsterdam user interface, wrapping Echo and Jet templates.
|
|
package ui
|
|
|
|
import (
|
|
"fmt"
|
|
|
|
"github.com/labstack/echo/v4"
|
|
)
|
|
|
|
/* AmWrap wraps the Amsterdam handler function in a wrapper that implements the spec for
|
|
* Echo handler functions.
|
|
* Parameters:
|
|
* myfunc - The Amsterdam handler to be wrapped.
|
|
* Returns:
|
|
* The wrapped function.
|
|
*/
|
|
func AmWrap(myfunc func(AmContext) (string, any, error)) echo.HandlerFunc {
|
|
return func(ctxt echo.Context) error {
|
|
amctxt := NewAmContext(ctxt)
|
|
what, rc, err := myfunc(amctxt)
|
|
if err == nil {
|
|
switch what {
|
|
case "bytes":
|
|
err = ctxt.Blob(amctxt.RC(), amctxt.OutputType(), rc.([]byte))
|
|
case "string":
|
|
err = ctxt.String(amctxt.RC(), fmt.Sprintf("%v", rc))
|
|
case "template":
|
|
err = amctxt.Render(fmt.Sprintf("%v", rc))
|
|
case "framed_template":
|
|
amctxt.VarMap().Set("amsterdam_innerPage", rc)
|
|
err = amctxt.Render("frame.jet")
|
|
default:
|
|
err = fmt.Errorf("unknown rendering type: %s", what)
|
|
}
|
|
if err != nil {
|
|
ctxt.Logger().Errorf("Rendering error: %v", err)
|
|
}
|
|
} else {
|
|
ctxt.Logger().Errorf("Page function error: %v", err)
|
|
}
|
|
return err
|
|
}
|
|
}
|