// Code generated by templ - DO NOT EDIT. // templ: version: v0.3.960 // 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: // 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 , placed before the label. Start templ.Component // An element, such as , 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 , 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 , 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, "") if templ_7745c5c3_Err != nil { return templ_7745c5c3_Err } if props.Slots.Start != nil { templ_7745c5c3_Err = templruntime.WriteString(templ_7745c5c3_Buffer, 9, "
") 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, "
") if templ_7745c5c3_Err != nil { return templ_7745c5c3_Err } } if props.Slots.End != nil { templ_7745c5c3_Err = templruntime.WriteString(templ_7745c5c3_Buffer, 11, "
") 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, "
") if templ_7745c5c3_Err != nil { return templ_7745c5c3_Err } } if props.Slots.Separator != nil { templ_7745c5c3_Err = templruntime.WriteString(templ_7745c5c3_Buffer, 13, "
") 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, "
") 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, "
") 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