-
-
Notifications
You must be signed in to change notification settings - Fork 351
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
supporting "percentage fee" additional items #1357
supporting "percentage fee" additional items #1357
Conversation
…ing-fee-a-percentage-of-ticket-price # Conflicts: # src/test/resources/api/descriptor.json
…ing-fee-a-percentage-of-ticket-price # Conflicts: # src/main/java/alfio/manager/AdditionalServiceManager.java
Quality Gate passedIssues Measures |
Hey all! I'm the maintainer of TanStack Form (which seems to've been introduced in this PR). As far as I can tell, y'all are the open-source project with the most stars currently using Form. Just wanted to drop a line, say "thanks" for picking our tool, and see how the experience was, and if there's anything in particular you'd want us to sure up prior to our 1.x release. 😊 In particular, I know our Lit docs are lacking - we have a ticket to update that. Also, I noticed that y'all are using Angular in your repo as well. Is there any chance y'all might be similarly interested in using TanStack Form's Angular adapter? We even had the official Angular core team help me code review that adapter recently: https://tanstack.com/form/latest/docs/framework/angular/quick-start Best, - Corbin |
hi @crutchcorn , first of all, thank you for creating this nice library! We are currently doing a modernization of our very old angularjs "admin" frontend, this PR is the first of this big work. As a first impression it seems to work as expected, as we are more familiar with the ReactiveForm which is provided out of the box in angular, the experience is quite similar, so it's a big plus. The only issue that we have noticed, but we are not really sure if it's problematic is a warning which is printed in the console "Element XXXXXXX scheduled an update (generally because a property was set) after an update completed, causing a new update to be scheduled. This is inefficient and should be avoided unless the next update can only be scheduled as a side effect of the previous update. See https://lit.dev/msg/change-in-update for more information.". You can see the exact same warning when trying https://github.com/TanStack/form/tree/main/examples/lit/simple on the first load. Maybe it's a known issue? |
@syjer FWIW we get similar updates in React as well, which is a bit of a headache. The challenge is that the frameworks aren't in control of reactivity with our library; our own internal signals implementation is. As a result, there are occasional warnings about things like this from the framework as it seems to get confused about our control of reactivity. AFAIK, that warning should be easily ignored. |
fix #1283
Sponsored by Offbeat Tickets