Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Return type of If function #298

Open
stas-makutin opened this issue Mar 23, 2022 · 0 comments
Open

Return type of If function #298

stas-makutin opened this issue Mar 23, 2022 · 0 comments

Comments

@stas-makutin
Copy link

stas-makutin commented Mar 23, 2022

Is it possible to change the return type of func If(cond bool, children ...ComponentOrHTML) MarkupOrChild to List?

This is my use case:

type CustomComponent struct {
 	vecty.Core
	Content vecty.List `vecty:"prop"`
}

func NewCustomComponent(content ...vecty.ComponentOrHTML) *CustomComponent {
	return &CustomComponent {Content: content}
}

func (ch *CustomComponent) Render() vecty.ComponentOrHTML {
	return elem.Div(
            ch.Content
        )
}

---

type View struct {
 	vecty.Core
        Flag bool
}

func (ch *View) Render() vecty.ComponentOrHTML {
	return NewCustomComponent(
                vecty.If(ch.Flag, elem.Div())      // will not compile
        )
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant