feat: Add fuzzy search and tag filtering#539
Open
NIDNASSER-Abdelmajid wants to merge 8 commits intosec-deadlines:masterfrom
Open
feat: Add fuzzy search and tag filtering#539NIDNASSER-Abdelmajid wants to merge 8 commits intosec-deadlines:masterfrom
NIDNASSER-Abdelmajid wants to merge 8 commits intosec-deadlines:masterfrom
Conversation
This commit introduces a search bar and tag filtering functionality to the website. - Adds a search bar that allows users to search for conferences. - Implements fuzzy search using Fuse.js to provide a more forgiving search experience. - Updates the tag filtering to use OR logic, allowing users to select multiple tags to broaden the search. - Adds Gemfile and Gemfile.lock to document the dependencies needed for local development.
Contributor
|
@NIDNASSER-Abdelmajid if your time allows could you please:
Thank you |
smokhov
reviewed
Jan 5, 2026
index.html
Outdated
| <script src="https://cdnjs.cloudflare.com/ajax/libs/moment.js/2.29.1/moment.min.js" integrity="sha512-qTXRIMyZIFb8iQcfjXWCO8+M5Tbc38Qi5WzdPOYZHIlZpzBHG3L3by84BBBOiRGiEb7KKtAOAs5qYdUiZiQNNQ==" crossorigin="anonymous" referrerpolicy="no-referrer"></script> | ||
| <script src="https://cdnjs.cloudflare.com/ajax/libs/moment-timezone/0.5.34/moment-timezone-with-data-10-year-range.min.js" integrity="sha512-d11VXfxQMn+sZuIgzHITdIuInr4cVRGV/uLiSI643WH/J+p4gPFYSHXRMR2v+w4Rn2TSyzJjsZjc0M7+Qd+UXw==" crossorigin="anonymous" referrerpolicy="no-referrer"></script> | ||
| <script src="https://cdnjs.cloudflare.com/ajax/libs/store.js/2.0.12/store.legacy.min.js" integrity="sha512-3yZTInL4yLU1ajnca35KTk6YE4RPHJU2y+jbhHAykE9OzMHpc2BIJghNsbkBNacIJWLLUmUkLEGPDDWrFY2zzw==" crossorigin="anonymous" referrerpolicy="no-referrer"></script> | ||
| <script src="https://cdn.jsdelivr.net/npm/fuse.js@6.6.2"></script> |
Contributor
There was a problem hiding this comment.
I think this will need the integrity="" etc attributes so that it doesn't complain about "inclusion of the functionality from the untrusted source".
Author
There was a problem hiding this comment.
Hi smokhov,
Can you check if it's good now?
Contributor
There was a problem hiding this comment.
@NIDNASSER-Abdelmajid -- you seem to have simplified the PR by removing the Ruby/Gem stuff altogether. Personally, I think the "Search Functionality" section isn't needed either then. But I will let @clementfung to decide. The PR is otherwise useful. Thank you.
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.
Closes #360
This commit introduces a search bar and tag filtering functionality to the website.