-
Notifications
You must be signed in to change notification settings - Fork 327
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Agree on the macro API for a 'None of the above' checkbox JavaScript enhancement #2152
Comments
Here's a quick suggestion from me, adding a boolean to the item (key name tbc): {{ govukCheckboxes({
idPrefix: "waste",
name: "waste",
fieldset: {
legend: {
text: "Which types of waste do you transport?",
isPageHeading: true,
classes: "govuk-fieldset__legend--l"
}
},
hint: {
text: "Select all that apply."
},
items: [
{
value: "carcasses",
text: "Waste from animal carcasses"
},
{
value: "mines",
text: "Waste from mines or quarries"
},
{
value: "farm",
text: "Farm or agricultural waste"
},
{
divider: "Or"
},
{
value: "none",
text: "None of these",
selectsNone: true
}
]
}) }} Pros:
Cons:
Out of scope for this ticket, but possibly worth considering for the API design, is how you might also incorporate a "Select all" feature, which one checkbox (usually at the top) selects all the other ones – useful for bulk actions. That one conventionally also un-ticks all of them if they're all ticked and the "Select all" checkbox is ticked again, which is kind-of similar to the "none" option. |
Related issue: #1795. |
On my previous project we supported this by allowing for mutually exclusive groups. This is very flexible, allowing for different combinations of groups - but at the cost of complexity of api vs Frankie's suggestion. Although multiple groups would be nice to support, I reckon 95% of the need is for a single 'none of these' option. |
Riffing on Frankie's
Instead pass a name for a mutually exclusive group - js combines all of these in to a group and will deselect items outside of the group (either in named groups or default). Selecting items in another group will deselect items that aren't in the same or default group. I think this would answer Frankie's question about two items with the boolean - if they had the same name they're in the same group so can be independently checked. If they had different names, they'd be treated as separate groups. |
Different idea:
Where Similarly it could expand to:
|
Another idea:
The Heh, API design is hard! |
I think this is a good balance of designing for the case we're sure about (select none) and flexibility for other cases we have some confidence in (select all). I don't think we know much about user needs for more complex selection of groups We normally try to stick close to HTML naming/api, but the closest thing I can think of to this in HTML is the Do we know how any other framework does this? |
@joelanman thanks Joe. I wonder if It might make sense if the macro API maps to the HTML implementation too, so Other alternatives for
There's a separate question about whether |
sorry of course, we can't use type, as its |
Thanks all, lots of really useful discussion here. I talked through some of the options with @vanitabarrett. We'd prefer to avoid a boolean flag for a behaviour like this, as it can lead to strange 'undefined' functionality if we introduced other competing behaviours in the future, for example if we ended up with We think We're less sure about We were thinking about
This also mirrors the existing behaviour from checkboxes built into GOV.UK Publishing Components – although it doesn't match their API as they've gone for a boolean flag. Finally, we'd agree groups of exclusive checkboxes are out of scope, but think this could be added in the future if needed without needing to change the existing API (e.g. Thoughts? |
@36degrees that all sounds good to me. Just to be super clear, I’ll update the Checkboxes macro so that if you pass in For non-javascript contexts, the divider and input will still be rendered, and it'll be up to services to handle a validation error if the "None" checkbox is checked as well as some others. One other minor thing: I agree it'll need to look at inputs with the same |
That all sounds good to me 👍🏻
I think it should affect other inputs with the same govuk-frontend/src/govuk/components/radios/radios.js Lines 90 to 120 in c4fbe3d
I think we'll also need to adjust the logic used for conditional reveals, as theoretically checking a checkbox could uncheck a checkbox elsewhere in the form. Again, I think it'll need to look similar to the logic we use in radios. |
@36degrees your suggestions sound good to me 👍 |
@36degrees ok, scoping to the form makes sense. Allows people to do crazy things like having nested fieldsets. 😄 |
@36degrees now that we've agreed this, shall we close this Issue / move to Done on your board? We can have any follow-up discussion on the Pull Request: #2151 |
I think that sounds sensible – thanks @frankieroberto 🙂 |
What
Agree on the macro API for a proposed JavaScript enhancement to this PR:
#2151
The enhancement would automatically uncheck all of the other checkboxes in the list, when the 'none-of-the-above' box is checked.
Why
A contributor has volunteered to develop the JavaScript for this feature, but would like to agree up front on how it should be triggered in the macro.
Who needs to know about this
Developer
Done when
The text was updated successfully, but these errors were encountered: