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

Support Ignite rendering from Vapor #688

Open
twostraws opened this issue Mar 9, 2025 · 3 comments
Open

Support Ignite rendering from Vapor #688

twostraws opened this issue Mar 9, 2025 · 3 comments

Comments

@twostraws
Copy link
Owner

Apparently all we need to do is make the HTML protocol conform to ResponseEncodable. Presumably we can use #if canImport(Vapor) or something similar, so it's a conditional requirement?

@JPToroDev
Copy link
Collaborator

Since protocol extensions can't have inheritance clauses, in order to make this work, I think we'd need to make HTML a type alias like this:

#if canImport(Vapor)
typealias HTML = [NewHTMLName] & ResponseEncodable
#else
typealias HTML = [NewHTMLName]
#endif

@twostraws
Copy link
Owner Author

I was thinking something much more stupid 😅

#if !canImport(Vapor)
public protocol ResponseEncodable { }
#endif

That would mean HTML can conform to ResponseEncodable regardless of whether Vapor exists or not.

@JPToroDev
Copy link
Collaborator

Ah! I think that'd be fine. Does the same thing with less change, and an empty ResponseEncodable protocol doesn't do any harm.

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

2 participants