// Code generated by templ - DO NOT EDIT. // templ: version: v0.3.960 // Code generated by wa-generator. DO NOT EDIT. // Source: Web Awesome wa-relative-time 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" ) // Outputs a localized time phrase relative to the current date and time. // // Web Awesome component: // RelativeTimeProps holds all properties for the wa-relative-time component type RelativeTimeProps struct { // The date from which to calculate time from. If not set, the current date and time will be used. When passing a Date string `attr:"date"` // The formatting style to use. // Valid values: "long", "short", "narrow" Format string `attr:"format"` // When auto, values such as "yesterday" and "tomorrow" will be shown when possible. When always, values such as // Valid values: "always", "auto" Numeric string `attr:"numeric"` // Keep the displayed value up to date as time passes. Sync bool `attr:"sync"` // Events // Slots contains named slot content Slots RelativeTimeSlots // Attrs contains additional HTML attributes Attrs templ.Attributes } // RelativeTimeBuilder provides a fluent API for constructing RelativeTimeProps type RelativeTimeBuilder struct { props RelativeTimeProps } // NewRelativeTime creates a new builder for wa-relative-time func NewRelativeTime() *RelativeTimeBuilder { return &RelativeTimeBuilder{} } // Date sets the date attribute // The date from which to calculate time from. If not set, the current date and time will be used. When passing a func (b *RelativeTimeBuilder) Date(v string) *RelativeTimeBuilder { b.props.Date = v return b } // Format sets the format attribute // The formatting style to use. func (b *RelativeTimeBuilder) Format(v string) *RelativeTimeBuilder { b.props.Format = v return b } // Numeric sets the numeric attribute // When auto, values such as "yesterday" and "tomorrow" will be shown when possible. When always, values such as func (b *RelativeTimeBuilder) Numeric(v string) *RelativeTimeBuilder { b.props.Numeric = v return b } // Sync sets the sync attribute // Keep the displayed value up to date as time passes. func (b *RelativeTimeBuilder) Sync(v bool) *RelativeTimeBuilder { b.props.Sync = v return b } // Attr adds a custom HTML attribute func (b *RelativeTimeBuilder) Attr(name, value string) *RelativeTimeBuilder { if b.props.Attrs == nil { b.props.Attrs = templ.Attributes{} } b.props.Attrs[name] = value return b } // Attrs merges multiple attributes func (b *RelativeTimeBuilder) Attrs(attrs templ.Attributes) *RelativeTimeBuilder { 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 *RelativeTimeBuilder) Props() RelativeTimeProps { return b.props } // Build returns the props (alias for Props for semantic clarity) func (b *RelativeTimeBuilder) Build() RelativeTimeProps { return b.props } // RelativeTime renders the wa-relative-time component func RelativeTime(props RelativeTimeProps) 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 } 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, 10, "") if templ_7745c5c3_Err != nil { return templ_7745c5c3_Err } return nil }) } // RelativeTimeFunc renders with a builder function for inline configuration func RelativeTimeFunc(fn func(*RelativeTimeBuilder)) 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 := NewRelativeTime() 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 = RelativeTime(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