-
-
Notifications
You must be signed in to change notification settings - Fork 263
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
feat(astro-angular): add props (inputs) processing #67
Conversation
- client: using `ComponentRef#setInput` - server: using `InjectionToken` with `providers` to pass static props to rendered Component via DI - add `astro-app` to test Astro integration ISSUE: analogjs#60
Some e2e smoke tests for the astro-app works for now. I'm not sure what the testing story is for integrations. I didn't find any in the source code for official Astro ones yet. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
🪄
Co-authored-by: Brandon <robertsbt@gmail.com>
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM 🚀
Thanks! @allcontributors add @nartc for code, infra |
I've put up a pull request to add @nartc! 🎉 |
ComponentRef#setInput
BEFORE_APP_INITIALIZED
hook to runsetInput
astro-app
to test Astro integrationStill need to add some sort of tests for this feature. Any suggestions on how we'd want to test this?
ISSUE: #60