-
Notifications
You must be signed in to change notification settings - Fork 0
Feature/fix user testing #164
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
Open
Aglorios17
wants to merge
24
commits into
develop
Choose a base branch
from
feature/fixUserTesting
base: develop
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Conversation
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Update taxonomic expert filter options order
…ExpertFormOrcid for clarity
…line click handling
…improve code readability
…haracters in search filters for improved query handling in GetTaxonomicExperts function; add date published display in TopBar component.
…y search support for name filters
…tial coverage and educational level with fuzzy search support
… replace useState with useMemo for initial values and optimize filter determination logic.
…ctionality and readability; add searchable dropdown support, reset filter logic, and tooltip hints for better user experience.
… streamline filter concatenation and add early return for empty values.
… filter" and placeholder are correctly handled based on default state and improve state updates for selected items.
…ation class for improved alignment in TopBar component, and adjust spacing in FormBuilder and ExperienceBlock components for better UI consistency.
…g logic to include NoAffiliation state and improve JSON path formatting for setting field values.
…; update CSS for responsive design adjustments.
…ic Marketplace; restructure layout for improved readability and user guidance.
…or improved user engagement
…r content visibility
…ted disciplines in FormBuilder
|
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
This pull request introduces multiple updates across different files to enhance functionality, improve code readability, and address specific UI and backend concerns. The most significant changes include refining filter logic in the
GetTaxonomicExperts
API, updating dropdown behavior and styling, optimizing filter components, and improving theFiltersBar
component.Backend Improvements:
GetTaxonomicExperts
: Enhanced the search query by escaping special characters and adding fuzzy search capabilities for better matching across multiple fields likename
,spatialCoverage
, andeducationalLevel
. Also added a safeguard to skip empty filter values.UI Component Enhancements:
searchInputRef
for focusing on the search input programmatically, and ensured consistent styling. Improved logic for handling default options like "Reset filter."Filter
component to support searchable dropdowns with focus behavior, and streamlined the code for better readability and maintainability.FiltersBar Optimization:
FiltersBar
to reset filters (exceptserviceType
andquery
) when theserviceType
changes, ensuring a clean slate for filter application.useEffect
withuseMemo
for better efficiency in component rendering. Introduced tooltips for enhanced user experience.Minor UI Adjustments:
TaxonomicForm
: ChangedContainer
to useoverflow-scroll
for better handling of content overflow.