330 lines
11 KiB
Go
330 lines
11 KiB
Go
|
|
// Code generated by templ - DO NOT EDIT.
|
||
|
|
|
||
|
|
// templ: version: v0.3.977
|
||
|
|
// Code generated by wa-generator. DO NOT EDIT.
|
||
|
|
|
||
|
|
// Source: Web Awesome wa-breadcrumb-item
|
||
|
|
|
||
|
|
package wa
|
||
|
|
|
||
|
|
//lint:file-ignore SA4006 This context is only used if a nested component is present.
|
||
|
|
|
||
|
|
import "github.com/a-h/templ"
|
||
|
|
import templruntime "github.com/a-h/templ/runtime"
|
||
|
|
|
||
|
|
import (
|
||
|
|
"github.com/a-h/templ"
|
||
|
|
)
|
||
|
|
|
||
|
|
// Breadcrumb Items are used inside breadcrumbs to represent different links.
|
||
|
|
//
|
||
|
|
// Web Awesome component: <wa-breadcrumb-item>
|
||
|
|
|
||
|
|
// BreadcrumbItemProps holds all properties for the wa-breadcrumb-item component
|
||
|
|
type BreadcrumbItemProps struct {
|
||
|
|
// Optional URL to direct the user to when the breadcrumb item is activated. When set, a link will be rendered
|
||
|
|
Href string `attr:"href"`
|
||
|
|
// Tells the browser where to open the link. Only used when href is set.
|
||
|
|
// Valid values: "_blank", "_parent", "_self", "_top"
|
||
|
|
Target string `attr:"target"`
|
||
|
|
// The rel attribute to use on the link. Only used when href is set.
|
||
|
|
Rel string `attr:"rel"`
|
||
|
|
|
||
|
|
// Events
|
||
|
|
|
||
|
|
// Slots contains named slot content
|
||
|
|
Slots BreadcrumbItemSlots
|
||
|
|
|
||
|
|
// Attrs contains additional HTML attributes
|
||
|
|
Attrs templ.Attributes
|
||
|
|
}
|
||
|
|
|
||
|
|
// BreadcrumbItemSlots holds named slot content for the component
|
||
|
|
type BreadcrumbItemSlots struct {
|
||
|
|
// An element, such as <wa-icon>, placed before the label.
|
||
|
|
Start templ.Component
|
||
|
|
// An element, such as <wa-icon>, placed after the label.
|
||
|
|
End templ.Component
|
||
|
|
// The separator to use for the breadcrumb item. This will only change the separator for this item. If you want to chang...
|
||
|
|
Separator templ.Component
|
||
|
|
}
|
||
|
|
|
||
|
|
// BreadcrumbItemBuilder provides a fluent API for constructing BreadcrumbItemProps
|
||
|
|
type BreadcrumbItemBuilder struct {
|
||
|
|
props BreadcrumbItemProps
|
||
|
|
}
|
||
|
|
|
||
|
|
// NewBreadcrumbItem creates a new builder for wa-breadcrumb-item
|
||
|
|
func NewBreadcrumbItem() *BreadcrumbItemBuilder {
|
||
|
|
return &BreadcrumbItemBuilder{}
|
||
|
|
}
|
||
|
|
|
||
|
|
// Href sets the href attribute
|
||
|
|
// Optional URL to direct the user to when the breadcrumb item is activated. When set, a link will be rendered
|
||
|
|
func (b *BreadcrumbItemBuilder) Href(v string) *BreadcrumbItemBuilder {
|
||
|
|
b.props.Href = v
|
||
|
|
return b
|
||
|
|
}
|
||
|
|
|
||
|
|
// Target sets the target attribute
|
||
|
|
// Tells the browser where to open the link. Only used when href is set.
|
||
|
|
func (b *BreadcrumbItemBuilder) Target(v string) *BreadcrumbItemBuilder {
|
||
|
|
b.props.Target = v
|
||
|
|
return b
|
||
|
|
}
|
||
|
|
|
||
|
|
// Rel sets the rel attribute
|
||
|
|
// The rel attribute to use on the link. Only used when href is set.
|
||
|
|
func (b *BreadcrumbItemBuilder) Rel(v string) *BreadcrumbItemBuilder {
|
||
|
|
b.props.Rel = v
|
||
|
|
return b
|
||
|
|
}
|
||
|
|
|
||
|
|
// StartSlot sets the start slot content
|
||
|
|
// An element, such as <wa-icon>, placed before the label.
|
||
|
|
func (b *BreadcrumbItemBuilder) StartSlot(c templ.Component) *BreadcrumbItemBuilder {
|
||
|
|
b.props.Slots.Start = c
|
||
|
|
return b
|
||
|
|
}
|
||
|
|
|
||
|
|
// EndSlot sets the end slot content
|
||
|
|
// An element, such as <wa-icon>, placed after the label.
|
||
|
|
func (b *BreadcrumbItemBuilder) EndSlot(c templ.Component) *BreadcrumbItemBuilder {
|
||
|
|
b.props.Slots.End = c
|
||
|
|
return b
|
||
|
|
}
|
||
|
|
|
||
|
|
// SeparatorSlot sets the separator slot content
|
||
|
|
// The separator to use for the breadcrumb item. This will only change the separator for this item. If you want to chang...
|
||
|
|
func (b *BreadcrumbItemBuilder) SeparatorSlot(c templ.Component) *BreadcrumbItemBuilder {
|
||
|
|
b.props.Slots.Separator = c
|
||
|
|
return b
|
||
|
|
}
|
||
|
|
|
||
|
|
// Attr adds a custom HTML attribute
|
||
|
|
func (b *BreadcrumbItemBuilder) Attr(name, value string) *BreadcrumbItemBuilder {
|
||
|
|
if b.props.Attrs == nil {
|
||
|
|
b.props.Attrs = templ.Attributes{}
|
||
|
|
}
|
||
|
|
b.props.Attrs[name] = value
|
||
|
|
return b
|
||
|
|
}
|
||
|
|
|
||
|
|
// Attrs merges multiple attributes
|
||
|
|
func (b *BreadcrumbItemBuilder) Attrs(attrs templ.Attributes) *BreadcrumbItemBuilder {
|
||
|
|
if b.props.Attrs == nil {
|
||
|
|
b.props.Attrs = templ.Attributes{}
|
||
|
|
}
|
||
|
|
for k, v := range attrs {
|
||
|
|
b.props.Attrs[k] = v
|
||
|
|
}
|
||
|
|
return b
|
||
|
|
}
|
||
|
|
|
||
|
|
// Props returns the built properties
|
||
|
|
func (b *BreadcrumbItemBuilder) Props() BreadcrumbItemProps {
|
||
|
|
return b.props
|
||
|
|
}
|
||
|
|
|
||
|
|
// Build returns the props (alias for Props for semantic clarity)
|
||
|
|
func (b *BreadcrumbItemBuilder) Build() BreadcrumbItemProps {
|
||
|
|
return b.props
|
||
|
|
}
|
||
|
|
|
||
|
|
// BreadcrumbItem renders the wa-breadcrumb-item component
|
||
|
|
func BreadcrumbItem(props BreadcrumbItemProps) templ.Component {
|
||
|
|
return templruntime.GeneratedTemplate(func(templ_7745c5c3_Input templruntime.GeneratedComponentInput) (templ_7745c5c3_Err error) {
|
||
|
|
templ_7745c5c3_W, ctx := templ_7745c5c3_Input.Writer, templ_7745c5c3_Input.Context
|
||
|
|
if templ_7745c5c3_CtxErr := ctx.Err(); templ_7745c5c3_CtxErr != nil {
|
||
|
|
return templ_7745c5c3_CtxErr
|
||
|
|
}
|
||
|
|
templ_7745c5c3_Buffer, templ_7745c5c3_IsBuffer := templruntime.GetBuffer(templ_7745c5c3_W)
|
||
|
|
if !templ_7745c5c3_IsBuffer {
|
||
|
|
defer func() {
|
||
|
|
templ_7745c5c3_BufErr := templruntime.ReleaseBuffer(templ_7745c5c3_Buffer)
|
||
|
|
if templ_7745c5c3_Err == nil {
|
||
|
|
templ_7745c5c3_Err = templ_7745c5c3_BufErr
|
||
|
|
}
|
||
|
|
}()
|
||
|
|
}
|
||
|
|
ctx = templ.InitializeContext(ctx)
|
||
|
|
templ_7745c5c3_Var1 := templ.GetChildren(ctx)
|
||
|
|
if templ_7745c5c3_Var1 == nil {
|
||
|
|
templ_7745c5c3_Var1 = templ.NopComponent
|
||
|
|
}
|
||
|
|
ctx = templ.ClearChildren(ctx)
|
||
|
|
templ_7745c5c3_Err = templruntime.WriteString(templ_7745c5c3_Buffer, 1, "<wa-breadcrumb-item")
|
||
|
|
if templ_7745c5c3_Err != nil {
|
||
|
|
return templ_7745c5c3_Err
|
||
|
|
}
|
||
|
|
if props.Href != "" {
|
||
|
|
templ_7745c5c3_Err = templruntime.WriteString(templ_7745c5c3_Buffer, 2, " href=\"")
|
||
|
|
if templ_7745c5c3_Err != nil {
|
||
|
|
return templ_7745c5c3_Err
|
||
|
|
}
|
||
|
|
var templ_7745c5c3_Var2 string
|
||
|
|
templ_7745c5c3_Var2, templ_7745c5c3_Err = templ.JoinStringErrs(props.Href)
|
||
|
|
if templ_7745c5c3_Err != nil {
|
||
|
|
return templ.Error{Err: templ_7745c5c3_Err, FileName: `pkg/wa/breadcrumb-item.templ`, Line: 129, Col: 20}
|
||
|
|
}
|
||
|
|
_, templ_7745c5c3_Err = templ_7745c5c3_Buffer.WriteString(templ.EscapeString(templ_7745c5c3_Var2))
|
||
|
|
if templ_7745c5c3_Err != nil {
|
||
|
|
return templ_7745c5c3_Err
|
||
|
|
}
|
||
|
|
templ_7745c5c3_Err = templruntime.WriteString(templ_7745c5c3_Buffer, 3, "\"")
|
||
|
|
if templ_7745c5c3_Err != nil {
|
||
|
|
return templ_7745c5c3_Err
|
||
|
|
}
|
||
|
|
}
|
||
|
|
if props.Target != "" {
|
||
|
|
templ_7745c5c3_Err = templruntime.WriteString(templ_7745c5c3_Buffer, 4, " target=\"")
|
||
|
|
if templ_7745c5c3_Err != nil {
|
||
|
|
return templ_7745c5c3_Err
|
||
|
|
}
|
||
|
|
var templ_7745c5c3_Var3 string
|
||
|
|
templ_7745c5c3_Var3, templ_7745c5c3_Err = templ.JoinStringErrs(props.Target)
|
||
|
|
if templ_7745c5c3_Err != nil {
|
||
|
|
return templ.Error{Err: templ_7745c5c3_Err, FileName: `pkg/wa/breadcrumb-item.templ`, Line: 132, Col: 24}
|
||
|
|
}
|
||
|
|
_, templ_7745c5c3_Err = templ_7745c5c3_Buffer.WriteString(templ.EscapeString(templ_7745c5c3_Var3))
|
||
|
|
if templ_7745c5c3_Err != nil {
|
||
|
|
return templ_7745c5c3_Err
|
||
|
|
}
|
||
|
|
templ_7745c5c3_Err = templruntime.WriteString(templ_7745c5c3_Buffer, 5, "\"")
|
||
|
|
if templ_7745c5c3_Err != nil {
|
||
|
|
return templ_7745c5c3_Err
|
||
|
|
}
|
||
|
|
}
|
||
|
|
if props.Rel != "" {
|
||
|
|
templ_7745c5c3_Err = templruntime.WriteString(templ_7745c5c3_Buffer, 6, " rel=\"")
|
||
|
|
if templ_7745c5c3_Err != nil {
|
||
|
|
return templ_7745c5c3_Err
|
||
|
|
}
|
||
|
|
var templ_7745c5c3_Var4 string
|
||
|
|
templ_7745c5c3_Var4, templ_7745c5c3_Err = templ.JoinStringErrs(props.Rel)
|
||
|
|
if templ_7745c5c3_Err != nil {
|
||
|
|
return templ.Error{Err: templ_7745c5c3_Err, FileName: `pkg/wa/breadcrumb-item.templ`, Line: 135, Col: 18}
|
||
|
|
}
|
||
|
|
_, templ_7745c5c3_Err = templ_7745c5c3_Buffer.WriteString(templ.EscapeString(templ_7745c5c3_Var4))
|
||
|
|
if templ_7745c5c3_Err != nil {
|
||
|
|
return templ_7745c5c3_Err
|
||
|
|
}
|
||
|
|
templ_7745c5c3_Err = templruntime.WriteString(templ_7745c5c3_Buffer, 7, "\"")
|
||
|
|
if templ_7745c5c3_Err != nil {
|
||
|
|
return templ_7745c5c3_Err
|
||
|
|
}
|
||
|
|
}
|
||
|
|
templ_7745c5c3_Err = templ.RenderAttributes(ctx, templ_7745c5c3_Buffer, props.Attrs)
|
||
|
|
if templ_7745c5c3_Err != nil {
|
||
|
|
return templ_7745c5c3_Err
|
||
|
|
}
|
||
|
|
templ_7745c5c3_Err = templruntime.WriteString(templ_7745c5c3_Buffer, 8, ">")
|
||
|
|
if templ_7745c5c3_Err != nil {
|
||
|
|
return templ_7745c5c3_Err
|
||
|
|
}
|
||
|
|
if props.Slots.Start != nil {
|
||
|
|
templ_7745c5c3_Err = templruntime.WriteString(templ_7745c5c3_Buffer, 9, "<div slot=\"start\">")
|
||
|
|
if templ_7745c5c3_Err != nil {
|
||
|
|
return templ_7745c5c3_Err
|
||
|
|
}
|
||
|
|
templ_7745c5c3_Err = props.Slots.Start.Render(ctx, templ_7745c5c3_Buffer)
|
||
|
|
if templ_7745c5c3_Err != nil {
|
||
|
|
return templ_7745c5c3_Err
|
||
|
|
}
|
||
|
|
templ_7745c5c3_Err = templruntime.WriteString(templ_7745c5c3_Buffer, 10, "</div>")
|
||
|
|
if templ_7745c5c3_Err != nil {
|
||
|
|
return templ_7745c5c3_Err
|
||
|
|
}
|
||
|
|
}
|
||
|
|
if props.Slots.End != nil {
|
||
|
|
templ_7745c5c3_Err = templruntime.WriteString(templ_7745c5c3_Buffer, 11, "<div slot=\"end\">")
|
||
|
|
if templ_7745c5c3_Err != nil {
|
||
|
|
return templ_7745c5c3_Err
|
||
|
|
}
|
||
|
|
templ_7745c5c3_Err = props.Slots.End.Render(ctx, templ_7745c5c3_Buffer)
|
||
|
|
if templ_7745c5c3_Err != nil {
|
||
|
|
return templ_7745c5c3_Err
|
||
|
|
}
|
||
|
|
templ_7745c5c3_Err = templruntime.WriteString(templ_7745c5c3_Buffer, 12, "</div>")
|
||
|
|
if templ_7745c5c3_Err != nil {
|
||
|
|
return templ_7745c5c3_Err
|
||
|
|
}
|
||
|
|
}
|
||
|
|
if props.Slots.Separator != nil {
|
||
|
|
templ_7745c5c3_Err = templruntime.WriteString(templ_7745c5c3_Buffer, 13, "<div slot=\"separator\">")
|
||
|
|
if templ_7745c5c3_Err != nil {
|
||
|
|
return templ_7745c5c3_Err
|
||
|
|
}
|
||
|
|
templ_7745c5c3_Err = props.Slots.Separator.Render(ctx, templ_7745c5c3_Buffer)
|
||
|
|
if templ_7745c5c3_Err != nil {
|
||
|
|
return templ_7745c5c3_Err
|
||
|
|
}
|
||
|
|
templ_7745c5c3_Err = templruntime.WriteString(templ_7745c5c3_Buffer, 14, "</div>")
|
||
|
|
if templ_7745c5c3_Err != nil {
|
||
|
|
return templ_7745c5c3_Err
|
||
|
|
}
|
||
|
|
}
|
||
|
|
templ_7745c5c3_Err = templ_7745c5c3_Var1.Render(ctx, templ_7745c5c3_Buffer)
|
||
|
|
if templ_7745c5c3_Err != nil {
|
||
|
|
return templ_7745c5c3_Err
|
||
|
|
}
|
||
|
|
templ_7745c5c3_Err = templruntime.WriteString(templ_7745c5c3_Buffer, 15, "</wa-breadcrumb-item>")
|
||
|
|
if templ_7745c5c3_Err != nil {
|
||
|
|
return templ_7745c5c3_Err
|
||
|
|
}
|
||
|
|
return nil
|
||
|
|
})
|
||
|
|
}
|
||
|
|
|
||
|
|
// BreadcrumbItemFunc renders with a builder function for inline configuration
|
||
|
|
func BreadcrumbItemFunc(fn func(*BreadcrumbItemBuilder)) templ.Component {
|
||
|
|
return templruntime.GeneratedTemplate(func(templ_7745c5c3_Input templruntime.GeneratedComponentInput) (templ_7745c5c3_Err error) {
|
||
|
|
templ_7745c5c3_W, ctx := templ_7745c5c3_Input.Writer, templ_7745c5c3_Input.Context
|
||
|
|
if templ_7745c5c3_CtxErr := ctx.Err(); templ_7745c5c3_CtxErr != nil {
|
||
|
|
return templ_7745c5c3_CtxErr
|
||
|
|
}
|
||
|
|
templ_7745c5c3_Buffer, templ_7745c5c3_IsBuffer := templruntime.GetBuffer(templ_7745c5c3_W)
|
||
|
|
if !templ_7745c5c3_IsBuffer {
|
||
|
|
defer func() {
|
||
|
|
templ_7745c5c3_BufErr := templruntime.ReleaseBuffer(templ_7745c5c3_Buffer)
|
||
|
|
if templ_7745c5c3_Err == nil {
|
||
|
|
templ_7745c5c3_Err = templ_7745c5c3_BufErr
|
||
|
|
}
|
||
|
|
}()
|
||
|
|
}
|
||
|
|
ctx = templ.InitializeContext(ctx)
|
||
|
|
templ_7745c5c3_Var5 := templ.GetChildren(ctx)
|
||
|
|
if templ_7745c5c3_Var5 == nil {
|
||
|
|
templ_7745c5c3_Var5 = templ.NopComponent
|
||
|
|
}
|
||
|
|
ctx = templ.ClearChildren(ctx)
|
||
|
|
b := NewBreadcrumbItem()
|
||
|
|
fn(b)
|
||
|
|
templ_7745c5c3_Var6 := templruntime.GeneratedTemplate(func(templ_7745c5c3_Input templruntime.GeneratedComponentInput) (templ_7745c5c3_Err error) {
|
||
|
|
templ_7745c5c3_W, ctx := templ_7745c5c3_Input.Writer, templ_7745c5c3_Input.Context
|
||
|
|
templ_7745c5c3_Buffer, templ_7745c5c3_IsBuffer := templruntime.GetBuffer(templ_7745c5c3_W)
|
||
|
|
if !templ_7745c5c3_IsBuffer {
|
||
|
|
defer func() {
|
||
|
|
templ_7745c5c3_BufErr := templruntime.ReleaseBuffer(templ_7745c5c3_Buffer)
|
||
|
|
if templ_7745c5c3_Err == nil {
|
||
|
|
templ_7745c5c3_Err = templ_7745c5c3_BufErr
|
||
|
|
}
|
||
|
|
}()
|
||
|
|
}
|
||
|
|
ctx = templ.InitializeContext(ctx)
|
||
|
|
templ_7745c5c3_Err = templ_7745c5c3_Var5.Render(ctx, templ_7745c5c3_Buffer)
|
||
|
|
if templ_7745c5c3_Err != nil {
|
||
|
|
return templ_7745c5c3_Err
|
||
|
|
}
|
||
|
|
return nil
|
||
|
|
})
|
||
|
|
templ_7745c5c3_Err = BreadcrumbItem(b.Props()).Render(templ.WithChildren(ctx, templ_7745c5c3_Var6), templ_7745c5c3_Buffer)
|
||
|
|
if templ_7745c5c3_Err != nil {
|
||
|
|
return templ_7745c5c3_Err
|
||
|
|
}
|
||
|
|
return nil
|
||
|
|
})
|
||
|
|
}
|
||
|
|
|
||
|
|
var _ = templruntime.GeneratedTemplate
|