Feature/project title search#682
Open
VikasPattar2006 wants to merge 4 commits into
Open
Conversation
|
@VikasPattar2006 is attempting to deploy a commit to the komalsony234-1530's projects Team on Vercel. A member of the Team first needs to authorize it. |
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
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.
Summary
This PR adds a project title search functionality to improve project discovery in DevPath. Users can now quickly filter recommended projects by typing keywords into a search bar, making it easier to find relevant projects without manually scrolling through all recommendations. The implementation includes dynamic client-side filtering, improved empty-state handling, and conditional visibility for the search input to enhance the user experience.
Related Issue
Closes #199
Type of Change
Bug fix — resolves a broken behaviour
Feature — adds new functionality
Data — adds new projects to
data/projects.jsonDocumentation — updates docs, README, or code comments only
Style — CSS or visual changes only, no logic change
Refactor — restructures code without changing behaviour
Test — adds or updates tests
What Was Changed
How to Test This PR
Clone this branch:
git checkout feat/project-title-searchInstall dependencies:
pip install -r requirements.txtRun the application:
python app.pyOpen:
http://127.0.0.1:5000Fill the recommendation form and generate project recommendations.
Use the search bar above the results section.
Verify that:
Self-Review Checklist
I have read CONTRIBUTING.md and followed all guidelines
My branch name follows the convention:
feat/,fix/,docs/,data/,style/,test/I have run
python tests/test_basic.pyand all 27 tests passI have run
flake8 .locally and there are no errorsI have not introduced any
print()orconsole.log()debug statementsI have not modified files outside the scope of the linked issue
If I changed the UI, I tested it at 375px (mobile) and 1280px (desktop)
If I added a project to the dataset, it has all required JSON fields
Notes for Reviewer
This PR focuses only on client-side project title filtering and UI improvements related to project discovery. No backend API changes were introduced.