-
-
Notifications
You must be signed in to change notification settings - Fork 486
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
formatOnBlur overloading format/parse original meaning #560
Comments
I get it, and even more so, feel it. To solve this, however, we need to come up with a solution to the very legitimate use case of allowing a user to type Ooooh, just typing that, an idea occurred to me. What if |
I was also thinking about this a little before filing this issue. And putting aside the exact API which would enable this behavior, let's discuss the implementation stuff. It seems like we agree that Having those semantics in place another conclusion I have is that parse shouldn't be run on unformatted value, because more often than not such value can be reliably parsed into a stored one. Consider keeping a Date in a form and allowing a manual edit on the linked field - we can't parse a text input back into a Date (to put it inside a form state) in the middle of editing. The only idea I have right now to solve this is to store the unformatted value inside a component's state separately - sync it with form state by default, but when working in this "formatOnBlur" mode (which I believe is a highly useful feature) use that component's state value instead of the form value when editing and sync them only when we commit that value into a form (so on the blur and similar). This would bring generally unwanted complexity into the implementation, but I don't know how to solve this better. |
Seems that I have recently stumbled upon the case of weird behavior of So there is a text field in a form where byte values can be typed, in different forms: 1, 3434, 1 B, 10 K, 134MiB - are all valid byte values (there is a tricky regexp for parsing out byte suffix and allowing for an optional 'iB' which makes it look prettier). Naturally, I use As soon as I reworked logic of the field, Now about the weird issue. I've noticed that in presence react-final-form/src/useField.js Lines 52 to 57 in 1ddf530
validate is expecting numbers, not strings.
So the question is: does it work as expected or is it a part of the problem you've been discussing in this issue? And second question, which is more important to me :), is how can I fix |
I believe it's the same issue, only has manifested differently. |
Since my description of the issue may be a bit vague, I edited Parse+Format sandbox example to show the issue inside 1st field: https://codesandbox.io/embed/react-final-form-parse-and-format-v9r2i My unmet expectations here are:
@erikras what do you think about it? |
Just found the similar issue #383 |
What you think guys about changing type of formatOnBlur from I have another use case for this: I can prepare PR for this. Regarding the compatibility with the current API |
Anyone have a good workaround for this use case? |
This API seems conceptually broken right now. With format & parse we have a nice parity:
formatOnBlur though prevents format from being called during render - which so far makes sense, but it calls format inside a callback. So the parity gets lost but this also makes parse weirdly unusable with this option - because it still also gets called inside a callback, so suddenly parse's and format's role is the same (?), they both write to state.
Not sure if the problem is recognizable from this vague description - if not please tell me so and I'll try explain it better.
The text was updated successfully, but these errors were encountered: