Present boolean filters as checkboxes

Created on 13 February 2025, about 2 months ago

Problem/Motivation

Right now, we have three boolean filters by default: maintenance status, security coverage status, and development status.

Internally, they map to a set of taxonomy terms; each could map to multiple terms. So they're not internally boolean, but they are semantically boolean. You either are restricting the project list by those criteria, or you're not. That's why they are called BooleanFilter.

In the UI, these filters are presented as select lists with two options, an "on" option and an "off" option. This is a strange way to present a semantically boolean choice to users, and it takes up a lot of extra, unnecessary screen real estate.

Proposed resolution

The Svelte code should render boolean filters as checkboxes. Let's take "Security coverage status" as an example.

Rather than a select list labeled "Security coverage status", with two options ('Show projects covered by security advisories' and 'show all'), we'll just see a checkbox that says something like "Only show projects that are covered by security advisories".

I think this will be a lot cleaner, and a lot clearer to users.

โœจ Feature request
Status

Active

Version

2.0

Component

User experience

Created by

๐Ÿ‡บ๐Ÿ‡ธUnited States phenaproxima Massachusetts

Live updates comments and jobs are added and updated live.
Sign in to follow issues

Merge Requests

Comments & Activities

  • Issue created by @phenaproxima
  • ๐Ÿ‡บ๐Ÿ‡ธUnited States phenaproxima Massachusetts
  • ๐Ÿ‡บ๐Ÿ‡ธUnited States phenaproxima Massachusetts

    I've asked @kunal.sachdev to take a look at this.

  • Merge request !761#3506513 "Svelte present boolean" โ†’ (Merged) created by kunal.sachdev
  • ๐Ÿ‡ฎ๐Ÿ‡ณIndia kunal.sachdev

    kunal.sachdev โ†’ made their first commit to this issueโ€™s fork.

  • Pipeline finished with Failed
    about 1 month ago
    Total: 425s
    #436540
  • Pipeline finished with Failed
    about 1 month ago
    Total: 507s
    #436664
  • Pipeline finished with Failed
    about 1 month ago
    Total: 490s
    #438458
  • Pipeline finished with Failed
    about 1 month ago
    Total: 485s
    #438482
  • Pipeline finished with Failed
    about 1 month ago
    Total: 399s
    #438681
  • Pipeline finished with Failed
    about 1 month ago
    Total: 365s
    #438699
  • Pipeline finished with Failed
    about 1 month ago
    Total: 346s
    #438731
  • Pipeline finished with Failed
    about 1 month ago
    Total: 492s
    #438736
  • Pipeline finished with Failed
    about 1 month ago
    Total: 402s
    #438744
  • Pipeline finished with Failed
    about 1 month ago
    Total: 832s
    #438758
  • Pipeline finished with Failed
    about 1 month ago
    Total: 449s
    #438793
  • Pipeline finished with Failed
    about 1 month ago
    Total: 418s
    #438808
  • Pipeline finished with Canceled
    about 1 month ago
    Total: 129s
    #439455
  • Pipeline finished with Failed
    about 1 month ago
    Total: 882s
    #439456
  • Pipeline finished with Success
    about 1 month ago
    Total: 390s
    #439475
  • Pipeline finished with Success
    about 1 month ago
    Total: 1947s
    #439492
  • ๐Ÿ‡ฎ๐Ÿ‡ณIndia utkarsh_33

    The checkboxes seems a bit misaligned as you can see in the SS:-

    I think we can place them in centre.
    Also i have an opinion,

    can we use toggles instead of checkboxes?

    Marking it NW just for a few css adjustment and opinions on the question.

  • ๐Ÿ‡บ๐Ÿ‡ธUnited States phenaproxima Massachusetts

    Let's entirely change the layout of the search area, into three columns:

    1. The categories
    2. The three checkboxes, stacked one on top of the other
    3. The sort options

    That would fix alignment issues and probably make more sense for this different presentation. What do you think?

  • ๐Ÿ‡บ๐Ÿ‡ธUnited States phenaproxima Massachusetts

    Reviewed the code that I think it looks great. This is so much better and simpler, and I suspect it will be greatly appreciated by @chrisfromredfin.

    Once the layout is fixed, I'd be quite happy to RTBC this after a quick manual test.

  • Pipeline finished with Success
    29 days ago
    Total: 741s
    #440512
  • Pipeline finished with Failed
    29 days ago
    Total: 2117s
    #440523
  • Pipeline finished with Failed
    28 days ago
    Total: 428s
    #441797
  • ๐Ÿ‡ฎ๐Ÿ‡ณIndia utkarsh_33

    I the SS can we make the Sort by label stacked over the dropdown just like the Filter by category to make it more uniform?

  • Pipeline finished with Failed
    28 days ago
    Total: 493s
    #441805
  • ๐Ÿ‡ฎ๐Ÿ‡ณIndia utkarsh_33

    Also as i mentioned earlier in #8 regarding the use of toggles instead of plain checkboxes, I am attaching the SS of how it looks after using toggle.
    SS:-

    What do others think about this change?

  • Pipeline finished with Failed
    27 days ago
    Total: 559s
    #442652
  • Pipeline finished with Failed
    24 days ago
    Total: 382s
    #444564
  • Pipeline finished with Failed
    24 days ago
    Total: 531s
    #444572
  • Pipeline finished with Failed
    24 days ago
    Total: 496s
    #444602
  • Pipeline finished with Failed
    24 days ago
    Total: 383s
    #444637
  • Pipeline finished with Failed
    24 days ago
    Total: 494s
    #444642
  • Pipeline finished with Failed
    24 days ago
    Total: 510s
    #444649
  • Pipeline finished with Success
    24 days ago
    Total: 443s
    #444663
  • ๐Ÿ‡บ๐Ÿ‡ธUnited States phenaproxima Massachusetts

    I really like what we're doing here. It's so much clearer and it makes the tests much easier to grok.

    I think the only sticking point, here, is how we group the filters. We need this to be more generic. I posted a suggestion on how we might go about that.

    Also there are now some merge conflicts to be fixed since we removed clickWithWait() and pressWithWait() from the tests.

  • Pipeline finished with Failed
    23 days ago
    Total: 402s
    #445574
  • Pipeline finished with Failed
    23 days ago
    Total: 466s
    #445587
  • Pipeline finished with Failed
    22 days ago
    Total: 711s
    #446567
  • Pipeline finished with Failed
    22 days ago
    Total: 610s
    #446843
  • ๐Ÿ‡บ๐Ÿ‡ธUnited States phenaproxima Massachusetts

    At @kunal.sachdev's request, I tried to figure out the grouping stuff here. It really turned into a rabbit hole.

    As I see it, the problem is that "groups" has no real meaning to FilterBase, and its purpose is therefore ambiguous. The Svelte code doesn't use it for anything.

    Therefore, I think the way forward here is to reduce the scope a bit. Let's not worry about grouping the filters. Let's not worry about stacking them on top of each other. Let's keep things in exactly the same layout they are now, except that the boolean filters become checkboxes. We'll also remove FilterBase::$group, since it's not used and we're not sure how to use it. We can always restore it later, if we need to, as an API addition.

    I'll take care of reducing the scope here, and keeping Kunal's changes to BooleanFilter.svelte and the tests. I think we can keep the CSS basically as it is in 2.0.x.

  • Pipeline finished with Failed
    22 days ago
    Total: 489s
    #446888
  • ๐Ÿ‡บ๐Ÿ‡ธUnited States phenaproxima Massachusetts

    After dialing back the scope and reverting the CSS changes, we have this:

    I don't think this is too bad; in fact, I think it's enough to call this issue fixed, and we can rework the layout in a follow-up.

    The only tweak I would suggest is that the checkbox label should not wrap around the checkbox itself; it should always be fully next to it. I'm not sure what the correct CSS for this would be.

    The bigger problem is that, once I uncheck the checkbox, I...can't check it again! That's problematic, and most likely a bug in the JavaScript. Reassigning to @kunal.sachdev to figure that out.

  • Pipeline finished with Failed
    22 days ago
    Total: 521s
    #446907
  • Pipeline finished with Failed
    22 days ago
    Total: 477s
    #446937
  • Pipeline finished with Failed
    22 days ago
    Total: 519s
    #447061
  • Pipeline finished with Failed
    22 days ago
    Total: 521s
    #447066
  • Pipeline finished with Failed
    21 days ago
    Total: 481s
    #447345
  • Pipeline finished with Failed
    21 days ago
    Total: 877s
    #447366
  • Pipeline finished with Success
    21 days ago
    Total: 373s
    #447635
  • ๐Ÿ‡บ๐Ÿ‡ธUnited States phenaproxima Massachusetts

    Getting the layout right is proving surprisingly tricky. @kunal.sachdev and I paired on it, then I tried to hack on it myself, and neither of us was able to get anywhere.

    What really needs to happen here is a stronger layout - the boolean filters should be grouped together, as a list, and to the right of the categories. But that's beyond the scope of this issue.

    So we agreed to land this as-is, even with the layout being sub-optimal, since we both feel this is a better IA than a row of select lists. I will open a follow-up to implement a better layout for the filters, which can be a must-have issue for beta2.

  • Pipeline finished with Success
    21 days ago
    Total: 381s
    #447732
  • ๐Ÿ‡บ๐Ÿ‡ธUnited States phenaproxima Massachusetts

    Opened โœจ Improve the layout of the filters Active to improve the layout of the filters.

  • Pipeline finished with Skipped
    21 days ago
    #447742
  • First commit to issue fork.
  • ๐Ÿ‡บ๐Ÿ‡ธUnited States chrisfromredfin Portland, Maine

    Release Notes: "BooleanFilter is now a boolean filter."

  • Automatically closed - issue fixed for 2 weeks with no activity.

Production build 0.71.5 2024