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

Fix context menu of the search bar #11446

Merged
merged 21 commits into from
Jul 24, 2024

Conversation

LoayGhreeb
Copy link
Member

@LoayGhreeb LoayGhreeb commented Jul 1, 2024

Mandatory checks

  • Change in CHANGELOG.md described in a way that is understandable for the average user (if applicable)
  • Tests created for changes (if applicable)
  • Manually tested changed features in running JabRef (always required)
  • Screenshots added in PR description (for UI changes)
  • Checked developer's documentation: Is the information available and up to date? If not, I outlined it in this pull request.
  • Checked documentation: Is the information available and up to date? If not, I created an issue at https://github.com/JabRef/user-documentation/issues or, even better, I submitted a pull request to the documentation repository.

@koppor
Copy link
Member

koppor commented Jul 1, 2024

Human testing for tab (library) switching:

  1. Open two libraries A and B
  2. Search in library A using query q1
  3. Switch to library B
  4. Search results should match q1 (and not no query)

@Siedlerchr
Copy link
Member

Test with the different modes, global search and search across libraries

@LoayGhreeb
Copy link
Member Author

org.jabref.gui.preview.PreviewViewer needs to be refactored to register the listener for the library's search query instead of the StateManager. This will be done in a follow-up PR.

if (!registered) {
stateManager.activeSearchQueryProperty().addListener(listener);
stateManager.activeGlobalSearchQueryProperty().addListener(listener);
registered = true;
}
highlightSearchPattern();

This class is used in multiple locations, most of which don't have access to the LibraryTab to retrieve the SearchQueryProperty (maybe most of the PreviewViewer instances don't need to highlight the search pattern. Highlighting is needed only in the entry editor and the global search window).

@LoayGhreeb LoayGhreeb marked this pull request as draft July 3, 2024 20:26
@calixtus
Copy link
Member

calixtus commented Jul 4, 2024

I noticed you make several changes and fixes to the ui. Please don't forget to create screenshots before and after the change.

@koppor koppor added this to the 6.0-alpha milestone Jul 4, 2024
@LoayGhreeb LoayGhreeb changed the title Performance improvement to search/selecting groups when opening multiple libraries Fix context menu of the search bar Jul 8, 2024
@LoayGhreeb LoayGhreeb marked this pull request as ready for review July 8, 2024 19:21
@HoussemNasri
Copy link
Member

Although the ctrl+shift+F shortcut does work, I couldn't find it in preferences:

image

@LoayGhreeb
Copy link
Member Author

Although the ctrl+shift+F shortcut does work, I couldn't find it in preferences:

I can see it on my machine, but that might be because I cleared the preferences after adding the shortcut.
image

Is there a way to add it without clearing the preferences?

@calixtus
Copy link
Member

calixtus commented Jul 9, 2024

maybe a preference migration must be added to test if there is already a shortcut registered, and if not, do so?

@HoussemNasri
Copy link
Member

maybe a preference migration must be added to test if there is already a shortcut registered, and if not, do so?

Exactly.

Clearing preferences works because when you pass an empty list of bindings to KeyBindingRepository (which are meant to be loaded from preferences but prefs is cleared now) it would loop through all items in the KeyBinding enum and set the binding to their default.

We should have a migration strategy that would merge the bindings loaded from preferences and key bindings from KeyBinding, keeping the binding set by the user and loaded from preferences if it exists and setting the default value if it does not.

The migration can be added to JabRefPreferences#getKeyBindingRepository where it would synchronize the KeyBinding enum and preferences, by removing values from preferences that are not present in KeyBinding and adding values to preferences that are present in KeyBinding but not in preferences to their default value.

We should also consider versioning preferences because doing the migration could cause problems when running an older version of JabRef.

No version in the path of prefs.xml:
image

@calixtus
Copy link
Member

calixtus commented Jul 9, 2024

Note that the current impl of the preferences default map will change soon

@LoayGhreeb
Copy link
Member Author

Note that the current impl of the preferences default map will change soon

Should I make any changes to the preferences in this PR? This issue is related to the preference design, and it's not ideal to add a preference migration for every new shortcut.

@HoussemNasri
Copy link
Member

Should I make any changes to the preferences in this PR? This issue is related to the preference design, and it's not ideal to add a preference migration for every new shortcut.

I think we should postpone it until the default map change is completed to avoid any conflicts. Plus I have noticed other keybindings are not present in preferences, so the issue goes beyond this PR. I created an issue to track it https://github.com/JabRef/jabref-issue-melting-pot/issues/471

@koppor koppor requested a review from Siedlerchr July 15, 2024 20:07
…mance

* upstream/main:
  Bump gittools/actions from 1.2.0 to 2.0.0 (JabRef#11529)
  Bump src/main/resources/csl-styles from `fd6cb3e` to `bf2926b` (JabRef#11528)
  Bump org.openrewrite.rewrite from 6.16.3 to 6.16.4 (JabRef#11527)
  Bump org.apache.commons:commons-lang3 from 3.14.0 to 3.15.0 (JabRef#11525)
  Bump org.jspecify:jspecify from 0.3.0 to 1.0.0 (JabRef#11523)
  Bump com.github.andygoossens.modernizer from 1.9.2 to 1.9.3 (JabRef#11524)
  Always show star for local unsaved library (JabRef#11519)
  Update to javafx 22.02 (JabRef#11518)
  Try to use "release" (made in fork) (JabRef#11517)
  Fix NPE when saving preferences (JabRef#11515)
  New translations jabref_en.properties (Portuguese, Brazilian) (JabRef#11516)
  Add OpenAI privacy policy (JabRef#11511)
  import PMID field in Pubmed (JabRef#11513)
  New Crowdin updates (JabRef#11514)
@Siedlerchr Siedlerchr enabled auto-merge July 24, 2024 19:33
@Siedlerchr Siedlerchr added this pull request to the merge queue Jul 24, 2024
Merged via the queue into JabRef:main with commit d8ebffc Jul 24, 2024
@LoayGhreeb LoayGhreeb deleted the improveSearchPerformance branch July 24, 2024 21:16
@koppor koppor mentioned this pull request Aug 4, 2024
6 tasks
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

5 participants