2026-01-01 14:41:31 -05:00
|
|
|
|
// Code generated by templ - DO NOT EDIT.
|
|
|
|
|
|
|
2026-01-01 20:49:44 -05:00
|
|
|
|
// templ: version: v0.3.960
|
2026-01-01 14:41:31 -05:00
|
|
|
|
// Code generated by wa-generator. DO NOT EDIT.
|
|
|
|
|
|
|
|
|
|
|
|
// Source: Web Awesome wa-option
|
|
|
|
|
|
|
|
|
|
|
|
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"
|
|
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
|
|
// Options define the selectable items within a select component.
|
|
|
|
|
|
//
|
|
|
|
|
|
// Web Awesome component: <wa-option>
|
|
|
|
|
|
|
|
|
|
|
|
// OptionProps holds all properties for the wa-option component
|
|
|
|
|
|
type OptionProps struct {
|
|
|
|
|
|
// The option's value. When selected, the containing form control will receive this value. The value must be unique
|
|
|
|
|
|
Value string `attr:"value"`
|
|
|
|
|
|
// Draws the option in a disabled state, preventing selection.
|
|
|
|
|
|
Disabled bool `attr:"disabled"`
|
|
|
|
|
|
// Selects an option initially.
|
|
|
|
|
|
Selected bool `attr:"selected"`
|
|
|
|
|
|
// The option’s plain text label.
|
|
|
|
|
|
Label string `attr:"label"`
|
|
|
|
|
|
|
|
|
|
|
|
// Events
|
|
|
|
|
|
|
|
|
|
|
|
// Slots contains named slot content
|
|
|
|
|
|
Slots OptionSlots
|
|
|
|
|
|
|
|
|
|
|
|
// Attrs contains additional HTML attributes
|
|
|
|
|
|
Attrs templ.Attributes
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
// OptionSlots holds named slot content for the component
|
|
|
|
|
|
type OptionSlots 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
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
// OptionBuilder provides a fluent API for constructing OptionProps
|
|
|
|
|
|
type OptionBuilder struct {
|
|
|
|
|
|
props OptionProps
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
// NewOption creates a new builder for wa-option
|
|
|
|
|
|
func NewOption() *OptionBuilder {
|
|
|
|
|
|
return &OptionBuilder{}
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
// Value sets the value attribute
|
|
|
|
|
|
// The option's value. When selected, the containing form control will receive this value. The value must be unique
|
|
|
|
|
|
func (b *OptionBuilder) Value(v string) *OptionBuilder {
|
|
|
|
|
|
b.props.Value = v
|
|
|
|
|
|
return b
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
// Disabled sets the disabled attribute
|
|
|
|
|
|
// Draws the option in a disabled state, preventing selection.
|
|
|
|
|
|
func (b *OptionBuilder) Disabled(v bool) *OptionBuilder {
|
|
|
|
|
|
b.props.Disabled = v
|
|
|
|
|
|
return b
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
// Selected sets the selected attribute
|
|
|
|
|
|
// Selects an option initially.
|
|
|
|
|
|
func (b *OptionBuilder) Selected(v bool) *OptionBuilder {
|
|
|
|
|
|
b.props.Selected = v
|
|
|
|
|
|
return b
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
// Label sets the label attribute
|
|
|
|
|
|
// The option’s plain text label.
|
|
|
|
|
|
func (b *OptionBuilder) Label(v string) *OptionBuilder {
|
|
|
|
|
|
b.props.Label = v
|
|
|
|
|
|
return b
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
// StartSlot sets the start slot content
|
|
|
|
|
|
// An element, such as <wa-icon>, placed before the label.
|
|
|
|
|
|
func (b *OptionBuilder) StartSlot(c templ.Component) *OptionBuilder {
|
|
|
|
|
|
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 *OptionBuilder) EndSlot(c templ.Component) *OptionBuilder {
|
|
|
|
|
|
b.props.Slots.End = c
|
|
|
|
|
|
return b
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
// Attr adds a custom HTML attribute
|
|
|
|
|
|
func (b *OptionBuilder) Attr(name, value string) *OptionBuilder {
|
|
|
|
|
|
if b.props.Attrs == nil {
|
|
|
|
|
|
b.props.Attrs = templ.Attributes{}
|
|
|
|
|
|
}
|
|
|
|
|
|
b.props.Attrs[name] = value
|
|
|
|
|
|
return b
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
// Attrs merges multiple attributes
|
|
|
|
|
|
func (b *OptionBuilder) Attrs(attrs templ.Attributes) *OptionBuilder {
|
|
|
|
|
|
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 *OptionBuilder) Props() OptionProps {
|
|
|
|
|
|
return b.props
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
// Build returns the props (alias for Props for semantic clarity)
|
|
|
|
|
|
func (b *OptionBuilder) Build() OptionProps {
|
|
|
|
|
|
return b.props
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
// Option renders the wa-option component
|
|
|
|
|
|
func Option(props OptionProps) 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-option")
|
|
|
|
|
|
if templ_7745c5c3_Err != nil {
|
|
|
|
|
|
return templ_7745c5c3_Err
|
|
|
|
|
|
}
|
|
|
|
|
|
if props.Value != "" {
|
|
|
|
|
|
templ_7745c5c3_Err = templruntime.WriteString(templ_7745c5c3_Buffer, 2, " value=\"")
|
|
|
|
|
|
if templ_7745c5c3_Err != nil {
|
|
|
|
|
|
return templ_7745c5c3_Err
|
|
|
|
|
|
}
|
|
|
|
|
|
var templ_7745c5c3_Var2 string
|
|
|
|
|
|
templ_7745c5c3_Var2, templ_7745c5c3_Err = templ.JoinStringErrs(props.Value)
|
|
|
|
|
|
if templ_7745c5c3_Err != nil {
|
|
|
|
|
|
return templ.Error{Err: templ_7745c5c3_Err, FileName: `pkg/wa/option.templ`, Line: 128, Col: 22}
|
|
|
|
|
|
}
|
|
|
|
|
|
_, 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.Disabled {
|
|
|
|
|
|
templ_7745c5c3_Err = templruntime.WriteString(templ_7745c5c3_Buffer, 4, " disabled")
|
|
|
|
|
|
if templ_7745c5c3_Err != nil {
|
|
|
|
|
|
return templ_7745c5c3_Err
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
if props.Selected {
|
|
|
|
|
|
templ_7745c5c3_Err = templruntime.WriteString(templ_7745c5c3_Buffer, 5, " selected")
|
|
|
|
|
|
if templ_7745c5c3_Err != nil {
|
|
|
|
|
|
return templ_7745c5c3_Err
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
if props.Label != "" {
|
|
|
|
|
|
templ_7745c5c3_Err = templruntime.WriteString(templ_7745c5c3_Buffer, 6, " label=\"")
|
|
|
|
|
|
if templ_7745c5c3_Err != nil {
|
|
|
|
|
|
return templ_7745c5c3_Err
|
|
|
|
|
|
}
|
|
|
|
|
|
var templ_7745c5c3_Var3 string
|
|
|
|
|
|
templ_7745c5c3_Var3, templ_7745c5c3_Err = templ.JoinStringErrs(props.Label)
|
|
|
|
|
|
if templ_7745c5c3_Err != nil {
|
|
|
|
|
|
return templ.Error{Err: templ_7745c5c3_Err, FileName: `pkg/wa/option.templ`, Line: 137, Col: 22}
|
|
|
|
|
|
}
|
|
|
|
|
|
_, 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, 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
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
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, 13, "</wa-option>")
|
|
|
|
|
|
if templ_7745c5c3_Err != nil {
|
|
|
|
|
|
return templ_7745c5c3_Err
|
|
|
|
|
|
}
|
|
|
|
|
|
return nil
|
|
|
|
|
|
})
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
// OptionFunc renders with a builder function for inline configuration
|
|
|
|
|
|
func OptionFunc(fn func(*OptionBuilder)) 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_Var4 := templ.GetChildren(ctx)
|
|
|
|
|
|
if templ_7745c5c3_Var4 == nil {
|
|
|
|
|
|
templ_7745c5c3_Var4 = templ.NopComponent
|
|
|
|
|
|
}
|
|
|
|
|
|
ctx = templ.ClearChildren(ctx)
|
|
|
|
|
|
b := NewOption()
|
|
|
|
|
|
fn(b)
|
|
|
|
|
|
templ_7745c5c3_Var5 := 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_Var4.Render(ctx, templ_7745c5c3_Buffer)
|
|
|
|
|
|
if templ_7745c5c3_Err != nil {
|
|
|
|
|
|
return templ_7745c5c3_Err
|
|
|
|
|
|
}
|
|
|
|
|
|
return nil
|
|
|
|
|
|
})
|
|
|
|
|
|
templ_7745c5c3_Err = Option(b.Props()).Render(templ.WithChildren(ctx, templ_7745c5c3_Var5), templ_7745c5c3_Buffer)
|
|
|
|
|
|
if templ_7745c5c3_Err != nil {
|
|
|
|
|
|
return templ_7745c5c3_Err
|
|
|
|
|
|
}
|
|
|
|
|
|
return nil
|
|
|
|
|
|
})
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
var _ = templruntime.GeneratedTemplate
|