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

8154038: Spinner's converter should update its editor #1057

Closed

Conversation

karthikpandelu
Copy link
Member

@karthikpandelu karthikpandelu commented Mar 10, 2023

When converter was changed, setText method of spinner was not invoked to update the spinner text using new converter.

Added a listener to converter property of SpinnerValueFactory to call setText so that spinner text is updated using new converter.

Added unit test to validate the fix. Along with spinner of Double type, added a spinner of Integer type as well so that the fix is validated using 2 types of spinner.


Progress

  • Change must be properly reviewed (1 review required, with at least 1 Reviewer)
  • Change must not contain extraneous whitespace
  • Commit message must refer to an issue

Issue

  • JDK-8154038: Spinner's converter should update its editor

Reviewers

Reviewing

Using git

Checkout this PR locally:
$ git fetch https://git.openjdk.org/jfx.git pull/1057/head:pull/1057
$ git checkout pull/1057

Update a local copy of the PR:
$ git checkout pull/1057
$ git pull https://git.openjdk.org/jfx.git pull/1057/head

Using Skara CLI tools

Checkout this PR locally:
$ git pr checkout 1057

View PR using the GUI difftool:
$ git pr show -t 1057

Using diff file

Download this PR as a diff file:
https://git.openjdk.org/jfx/pull/1057.diff

@bridgekeeper
Copy link

bridgekeeper bot commented Mar 10, 2023

👋 Welcome back kpk! A progress list of the required criteria for merging this PR into master will be added to the body of your pull request. There are additional pull request commands available for use with this pull request.

@openjdk openjdk bot added the rfr Ready for review label Mar 10, 2023
@mlbridge
Copy link

mlbridge bot commented Mar 10, 2023

Webrevs

@@ -541,6 +541,10 @@ public final ReadOnlyObjectProperty<T> valueProperty() {
// this binding is what ensures the Spinner.valueProperty()
// properly represents the value in the value factory
value.bind(newFactory.valueProperty());
// Update the spinner editor when converter is changed.
newFactory.converterProperty().addListener((o, oldValue, newValue) -> {
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The addition of ChangeListener is fine, but, this newly added ChangeListener should be removed from old valueFactory when valueFactory changes.
Please see the pattern used in TimelineController for rateListener.

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Updated the code. Please check

@@ -1523,4 +1525,56 @@ public void test_jdk_8150946_testCommit_invalid_wrongType() {
localTimeValueFactory.setValue(null);
assertNull(localTimeSpinner.getValue());
}

@Test public void testSpinnerEditorUpdateOnConverterChange() {
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

It is better to split this test case into two - one for each type of Spinner.

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Created separate tests for each type of Spinner. Please check

@andy-goryachev-oracle
Copy link
Contributor

Copy link
Collaborator

@aghaisas aghaisas left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Looks good!

@openjdk
Copy link

openjdk bot commented Mar 20, 2023

@karthikpandelu This change now passes all automated pre-integration checks.

ℹ️ This project also has non-automated pre-integration requirements. Please see the file CONTRIBUTING.md for details.

After integration, the commit message for the final commit will be:

8154038: Spinner's converter should update its editor

Reviewed-by: aghaisas

You can use pull request commands such as /summary, /contributor and /issue to adjust it as needed.

At the time when this comment was updated there had been 8 new commits pushed to the master branch:

  • b1964d9: Merge
  • f2118a1: 8304359: Create release notes for JavaFX 20
  • 6be8703: 8303680: Virtual Flow freezes after calling scrollTo and scrollPixels in succession
  • 935c7b7: 8301009: Update libxml2 to 2.10.3
  • 147d71f: 8178368: Right alignment of text fields and alignment of prompt text works incorrectly
  • 4051f16: 8299968: Second call to Stage.setScene() create sizing issue with uiScale > 1.0
  • df22c41: 8302355: Public API for Toolkit.canStartNestedEventLoop()
  • 8cda7bc: 8302797: ArrayIndexOutOfBoundsException in TextRun.getWrapIndex()

Please see this link for an up-to-date comparison between the source branch of this pull request and the master branch.
As there are no conflicts, your changes will automatically be rebased on top of these commits when integrating. If you prefer to avoid this automatic rebasing, please check the documentation for the /integrate command for further details.

As you do not have Committer status in this project an existing Committer must agree to sponsor your change. Possible candidates are the reviewers of this PR (@aghaisas) but any other Committer may sponsor as well.

➡️ To flag this PR as ready for integration with the above commit message, type /integrate in a new comment. (Afterwards, your sponsor types /sponsor in a new comment to perform the integration).

@openjdk openjdk bot added the ready Ready to be integrated label Mar 20, 2023
@karthikpandelu
Copy link
Member Author

/integrate

@openjdk openjdk bot added the sponsor Ready to sponsor label Mar 21, 2023
@openjdk
Copy link

openjdk bot commented Mar 21, 2023

@karthikpandelu
Your change (at version f437617) is now ready to be sponsored by a Committer.

@aghaisas
Copy link
Collaborator

/sponsor

@openjdk
Copy link

openjdk bot commented Mar 21, 2023

Going to push as commit 0ab54e2.
Since your change was applied there have been 8 commits pushed to the master branch:

  • b1964d9: Merge
  • f2118a1: 8304359: Create release notes for JavaFX 20
  • 6be8703: 8303680: Virtual Flow freezes after calling scrollTo and scrollPixels in succession
  • 935c7b7: 8301009: Update libxml2 to 2.10.3
  • 147d71f: 8178368: Right alignment of text fields and alignment of prompt text works incorrectly
  • 4051f16: 8299968: Second call to Stage.setScene() create sizing issue with uiScale > 1.0
  • df22c41: 8302355: Public API for Toolkit.canStartNestedEventLoop()
  • 8cda7bc: 8302797: ArrayIndexOutOfBoundsException in TextRun.getWrapIndex()

Your commit was automatically rebased without conflicts.

@openjdk openjdk bot added the integrated Pull request has been integrated label Mar 21, 2023
@openjdk openjdk bot closed this Mar 21, 2023
@openjdk openjdk bot removed ready Ready to be integrated rfr Ready for review sponsor Ready to sponsor labels Mar 21, 2023
@openjdk
Copy link

openjdk bot commented Mar 21, 2023

@aghaisas @karthikpandelu Pushed as commit 0ab54e2.

💡 You may see a message that your pull request was closed with unmerged commits. This can be safely ignored.

@karthikpandelu karthikpandelu deleted the spinner_issue_fix branch March 21, 2023 06:12
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
integrated Pull request has been integrated
3 participants