feat: enhance category selection and filtering with multiple selection#12667
feat: enhance category selection and filtering with multiple selection#12667mcanouil wants to merge 13 commits intoquarto-dev:mainfrom
Conversation
✅ Snyk checks have passed. No issues have been found so far.
💻 Catch issues earlier using the plugins for VS Code, JetBrains IDEs, Visual Studio, and Eclipse. |
| // Allow holding Ctrl/Cmd key for multiple selection | ||
| // Clear other selections if not using Ctrl/Cmd | ||
| if (!e.ctrlKey && !e.metaKey) { | ||
| selectedCategories.clear(); | ||
| } |
There was a problem hiding this comment.
I don't know if that is a good idea as it makes the multiple selection feature "hidden".
I thought this was less disruptive than checkboxes everywhere.
This was the only idea I came up with to keep previous visual appearance.
|
I was actually looking for a way to select multiple categories, but my need seems to be the opposite: I want to combine categories using an AND condition. That is, when selecting two categories, I’d like to show only the posts that belong to both. I’m currently using Quarto 1.7.31. Is this new feature available (with AND or OR)? I couldn’t find anything about it in the documentation. |
quarto-listing-loaded already handles this.
eaf1ff7 to
48ecb01
Compare
|
Added tests, changelog, and fixed a hash check duplication. |
Introduce support for multiple category selection and filtering in the listing interface. This change allows users to select multiple categories simultaneously using Ctrl or Cmd.
Screen.Recording.2025-05-02.at.19.58.46.mov