-
-
Notifications
You must be signed in to change notification settings - Fork 263
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
RadioTile support 'multiple' prop? #428
Comments
Radio buttons must only have one selection (Nielsen Norman). I'll review the SelectableTile. |
I guess I've also just discovered that at least one must be selected as I look for a way to empty the filters! Yes I think if SelectableTile could fill the gap that would be great. If you want to suggest a solution I can look at it. Would an optional wrapper component be a feesible solution? |
Sure – that approach is sound. Similar to RadioTileGroup, the wrapper component (e.g., SelectableTileGroup) would manage the selected ids using the context API. |
|
I like your thinking of reusing One issue though: the I'm leaning towards keeping them separate. Preserve the
So we can deprecate TileGroup in the next major release in one fell swoop. |
At the moment, I guess these tile groups are suffering the same fate as the Tabs in that they are not programmatically mutable? Might be good to try and address this with the newer versions? Although I wasn't keen on the sight of the all the if statements! Are there no other options / techniques on the table? EDIT: I guess this isn't an issue since order isn't important? |
@metonym as per original discussion I've written the code to make the wrapping see: https://gist.github.com/ispyinternet/862b6f26c0cb461e132f28062ce1f046 |
That's a breaking change but I think it's necessary to fully support reactive/programmatic control. |
I don't think we need to worry about this. The |
the linked code is non breaking, but when coming to write the docs, I'm wondering what is the point in showing one group with by a div (the non breaking/ current usage) and another group wrapped by the |
Yes – update the docs to remove the |
Initially I was looking at SelectableTile to control a selection of filters, firstly with there being nothing reactive about it, it looked like a bit of clunky end user wiring would be required - that's another issue I wonder should be looked at?
Anyway for my use case, I was happy to allow only 1 filter, so I opted for the much more succint RadioTile, but it did get me thinking if I wanted to support more than one selection, should this component support a
multiple
prop?If you did want to implement, how would you like to handle the value? Array type when multiple, or Array type always?
The text was updated successfully, but these errors were encountered: