-
-
Notifications
You must be signed in to change notification settings - Fork 373
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
feat: add custom toolbar #4820
base: master
Are you sure you want to change the base?
feat: add custom toolbar #4820
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thanks a lot for your contribution!
Added some suggestions that will probably help simplify everything and align with what we think would be the best way to do this.
@@ -58,11 +60,20 @@ export interface DashboardLayoutSlots { | |||
* @default Account | |||
*/ | |||
toolbarAccount?: React.JSXElementConstructor<AccountProps>; | |||
/** |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Instead of creating any new slots, could we just move the <Account />
component to be included by default on the right of the toolbarActions
slot, and get rid of the toolbarAccount
slot?
Then anyone could customize these actions to have whatever they wanted in any order.
Some slight updates might also be needed to the documentation around this slot if we change this...
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I'm unsure to simply 'drop' the toolbarAccount slot, shouldn't we deprecate it first?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Actually yeah, that might be better, we can just deprecate it!
And we can leave a TODO comment to remove it after the next three minor versions.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@apedroferreira I just did that and added the documentation. Thanks for the help!

@apedroferreira I lifted the ability to override to the full toolbar and introduced left, mid and right props too. I'm unsure if i should extend: export interface DashboardLayoutSlotProps {
appTitle?: AppTitleProps;
toolbarActions?: {};
toolbarAccount?: AccountProps;
sidebarFooter?: SidebarFooterProps;
toolbar?: {}; // needed?
} And I will dive into updating the docs once you approved of this direction/change. Thanks for your feedback! |
I would really just stick to a single |
Adds ability to ship your own toolbar, this gives more flexibility, therefore: you can ship your own things, this may as well be the tools Toolpad already provides, such as the account, toolbar and any custom stuff, like a cart, or a search bar, in any given order.
Please let me know if this is in line with the roadmap, or how I can polish my merge request to approval.