Add folder view component #53
Open
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.
This PR adds an implementation of the folder view component. This is an expanded version of the component that we've used in previous stories (the Rubin story in particular). The main items of note are:
item
slot. The downside to this is that the slot content will need to re-implement the selection handling itself. I would've liked to push the event handlers up to the slot container, but this could potentially interfere with the functionality of whatever content one puts into the item slot.Folder
object, if one wants. If managing the folder instance isn't necessary in the parent component, this can help reduce overhead on that side.There are still some CSS issues to work out here, but I think the internals of this are in good shape.