-
-
Notifications
You must be signed in to change notification settings - Fork 0
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
Broken Validation when using React Elements for Messages #2
Comments
We actually only support string from the very beginning of V7, but the code was left there for awhile. Now that react hook form core is going to be framework agnostic, any react-specific code will need to be removed. Consider returning the string and using translation API if you can. eg { required: translate(test') }
// or
{ required: 'test' }
translate(errors.test.message) |
hey bill! thanks for getting back to me. can i convince you otherwise with any of these arguments?
|
I understand this is not going to work the best for you, and certainly answering your questions will only probably bubble up more. I am trying my best to answer here with a clear mind after a whole day of work. Yes, we can consider option two, but to be mindful, this is by design to only support |
of course, bill! i hope i'm not being overwhelming haha (i know open source can be burnout-city). i'll close the issue and migrate all my messages to strings :) |
@dairyisscary let me work on this later, I am moving to the core. Once the core is ready, I will try to get this working. There are a few challenges because I can't just check its function or want to bring react as a dependency, but will try to find a workaround if you have any suggestions or solutions let me know as well. |
Hey @bluebill1049 any news on this? This is a blocker for us when updating to the latest We currently sometimes use async validations to load data from the server, for example to test for duplicates. When there is a duplicate we add a link to the other entity right inside the error message. This was super easy to do when returing JSX, but will be quite difficult via a simple string. Any suggestions to solve this with |
@bluebill1049 any news on this? Thanks in advance! |
@bluebill1049 we would like to update It's also fine for us if you think that this feature will not be reimplemented into |
@bluebill1049 any news? Like I said, a simple: "will not reimplement feature" is fine for us to be able to plan our next steps. |
We have multiple scenarios where we embed an anchor styled CTA button in the error message. Not sure why "react"-hook-form should be agnostic of react. |
A bit late to the party, but shouldn't this change either be breaking and thus belong in a major release, or shouldn't there be some kind of warning that support for JSX will be removed? I am upgrading from 7.43.0 and the "feature" is removed in 7.43.2, which is weird. Maybe I missed the warning as we started using RHF from 7.8.8, but still it is weird for features to be removed in a patch release. What is the alternative nowadays? How do people provide HTML in the error-text? |
We weren't able to finde a way to provide HTML and thus weren't able to update either. Still waiting for a response from @bluebill1049 |
Version Number
7.43.2
Codesandbox/Expo snack
n/a
Steps to reproduce
hello react-hook-form folks!
28cafa864b4a92b2d2f6ac8f5c5cb27722e38b3f removed the option to use react elements as validation messages. as a result internationalization libraries that use elements for translation of validation messages no longer work.
For example, with
react-intl
/formatjs
:most internationalization libraries (including formatjs) can produce strings but the element api is often more convenient, can use constant values, and doesn't require boilerplate to get things out of context
Expected behaviour
hopefully we can bring this back.
What browsers are you seeing the problem on?
No response
Relevant log output
No response
Code of Conduct
The text was updated successfully, but these errors were encountered: