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

Bug report: mismatch between displayed value and internal state #166

Closed
moykeen opened this issue Feb 8, 2025 · 5 comments
Closed

Bug report: mismatch between displayed value and internal state #166

moykeen opened this issue Feb 8, 2025 · 5 comments
Labels
bug Something isn't working

Comments

@moykeen
Copy link

moykeen commented Feb 8, 2025

Describe the bug
A clear and concise description of what the bug is (and how to reproduce it, if relevant)

When the user unfocuses the editor component without clicking either 'OK' or 'Cancel', the displayed value remains as entered, but the internal state is not updated.

Based on my understanding of the code, the InputButtons component should trigger either onOK or onCancel when it is about to be unmounted in order to resolve this issue.

export const InputButtons: React.FC<{

Expected behavior

Screenshots

Online demo
Please try and reproduce problem using a fork of this sandbox, and post the link here. If you can't reproduce the problem there, it's likely to be due to something outside of the component itself.

@moykeen moykeen added the bug Something isn't working label Feb 8, 2025
@CarlosNZ
Copy link
Owner

CarlosNZ commented Feb 8, 2025

Hi there, when you say "unfocuses the editor component", what exactly do you mean? If you focus somewhere else on the page, the "editing" state of the editor persists, no internal state is updated, like so:

Image

The only ways to update the internal state are:

  • Click the green "Check" icon
  • Hit the "confirmation" key (usually "Enter")
  • "Tab" to the next entry (must be focused and click "Tab" key)

And to "cancel" (i.e. exit "editing" state but not update value), you either click "Cancel" icon or press Escape)

When else would you expect it to be updated?

@moykeen
Copy link
Author

moykeen commented Feb 8, 2025

Thank you! Here is a demonstration:
https://codesandbox.io/p/sandbox/json-edit-react-demo-forked-563k82

Initially, the data and displayed values were consistent.
Image

I edited dog to fox in data1. At this point, the data was not updated, but that’s okay because the editor component for data1 still had focus. (I understand that updates are not immediate.)
Image

However, a discrepancy occurred when I started editing data2 without pressing the green check icon or the Enter key for data1.
Image

Since the editor component can lose focus in this way, the edited values should be explicitly committed or reverted.

@CarlosNZ
Copy link
Owner

CarlosNZ commented Feb 8, 2025

Ah, I see you're using a pretty old version of the component!

Image Image

Please upgrade to the latest (v1.22.0) and you won't have this problem any more:

Image

@moykeen
Copy link
Author

moykeen commented Feb 8, 2025

Ah, I see! That makes sense. I actually forked the CodeSandbox from the issue template, and it seems the version specified there is quite old. I didn’t realize it was outdated.

@CarlosNZ
Copy link
Owner

CarlosNZ commented Feb 8, 2025

Ah, I see! That makes sense. I actually forked the CodeSandbox from the issue template, and it seems the version specified there is quite old. I didn’t realize it was outdated.

Oh, good to know. Thanks, I'll update that too. Cheers 👍🏼

@CarlosNZ CarlosNZ closed this as completed Feb 8, 2025
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
bug Something isn't working
Projects
None yet
Development

No branches or pull requests

2 participants