Add support for dashboard tabs #14865
Open
+245
−13
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 support for adding tabs on your dashboard. In case you have many widgets, it makes sense to split them by separate tabs. The implementation is based on the Resource tabs implementation, with the only difference that the Dashboard tabs are implemented on the Alpine-side instead of Livewire due to performance (if Livewire is still (lazy) loading widget on a tab, then switching tabs would be unresponsive until all (slow) widgets are completely loaded).
Users can mark their widgets as belonging to a tab using a
protected static ?string $tab = 'Label';
property. This is the same principle as eg the$navigationGroup
property, that also matches navigation group by it's label.Dashboard.Tabs.mov
Thanks!