Skip to content

Feature: Enhanced Search & Filtering #161

@codeCraft-Ritik

Description

@codeCraft-Ritik

Issue :

The current job list is growing large. Users need better ways to find specific roles based on technical keywords or location.

Improvement :

Implement a client-side search or multi-select filter for the JobListComponent using the tech stack information already available in the repos.csv.

File Path : open-source-jobs/components/job-list.tsx

Code Idea :

// Inside Joblist Component
const [filter, setFilter] = useState('');
const filteredJobs = releases.filter(job => 
  job.name.toLowerCase().includes(filter.toLowerCase()) || 
  job.description.toLowerCase().includes(filter.toLowerCase())
);

Metadata

Metadata

Labels

No labels
No labels

Projects

No projects

Milestone

No milestone

Relationships

None yet

Development

No branches or pull requests

Issue actions