renderer

package
v4.37.3 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Mar 18, 2022 License: MIT Imports: 19 Imported by: 12

Documentation

Index

Constants

This section is empty.

Variables

This section is empty.

Functions

This section is empty.

Types

type App

type App struct {
	// contains filtered or unexported fields
}

App of package

func New

func New(config Config, filesystem fs.FS, funcMap template.FuncMap, tracerApp tracer.App) (App, error)

New creates new App from Config

func (App) Error

func (a App) Error(w http.ResponseWriter, r *http.Request, content map[string]interface{}, err error)

func (App) Handler

func (a App) Handler(templateFunc TemplateFunc) http.Handler

Handler for request. Should be use with net/http

func (App) PublicURL added in v4.32.0

func (a App) PublicURL(url string) string

PublicURL computes public URL of given path

func (App) Redirect added in v4.10.2

func (a App) Redirect(w http.ResponseWriter, r *http.Request, pathname string, message Message)

Redirect redirect user to a defined path with a message

type Config

type Config struct {
	// contains filtered or unexported fields
}

Config of package

func Flags

func Flags(fs *flag.FlagSet, prefix string, overrides ...flags.Override) Config

Flags adds flags for configuring package

type Message

type Message struct {
	Level   string
	Content string
}

Message for render

func NewErrorMessage

func NewErrorMessage(format string, a ...interface{}) Message

NewErrorMessage create a error message

func NewSuccessMessage

func NewSuccessMessage(format string, a ...interface{}) Message

NewSuccessMessage create a success message

func ParseMessage

func ParseMessage(r *http.Request) Message

ParseMessage parses messages from request

func (Message) String

func (m Message) String() string

type Page added in v4.35.1

type Page struct {
	Content  map[string]interface{}
	Template string
	Status   int
}

Page describes a page for the renderer

func NewPage added in v4.35.1

func NewPage(template string, status int, content map[string]interface{}) Page

NewPage creates a new page

type TemplateFunc

type TemplateFunc = func(http.ResponseWriter, *http.Request) (Page, error)

TemplateFunc handle a request and returns which template to render with which status and datas

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL