Skip to content
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

Open
wants to merge 15 commits into
base: master
Choose a base branch
from

Conversation

rkristelijn
Copy link
Contributor

image

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.

@rkristelijn rkristelijn changed the title feat: add custom toolbar and shopping cart slot feat: add custom toolbar Mar 31, 2025
@Janpot Janpot requested a review from apedroferreira March 31, 2025 10:22
Copy link
Member

@apedroferreira apedroferreira left a 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>;
/**
Copy link
Member

@apedroferreira apedroferreira Apr 1, 2025

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...

Copy link
Contributor Author

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?

Copy link
Member

@apedroferreira apedroferreira Apr 2, 2025

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.

Copy link
Contributor Author

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!

image

@rkristelijn
Copy link
Contributor Author

@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!

@github-actions github-actions bot added the PR: out-of-date The pull request has merge conflicts and can't be merged label Apr 2, 2025
@rkristelijn
Copy link
Contributor Author

rkristelijn commented Apr 2, 2025

I think it is good enough now;

considering these helper functions:

function Middle({ menuIcon }: ToolbarProps) {
  return (
    <Stack direction="row" spacing={2} alignItems="center" justifyContent="space-between">
      {menuIcon}
      <ToolbarActions />
    </Stack>
  );
}

function Right() {
  return (
    <Stack direction="row" spacing={2} alignItems="center">
      <Account />

      <Link href="/orders">
        <Button color="primary" aria-label="Cart">
          <ShoppingCart />
        </Button>
      </Link>
    </Stack>
  );
}

function Left() {
  return (
    <Stack direction="row" spacing={2} alignItems="center">
      <AppTitle />
    </Stack>
  );
}
export default function DashboardPagesLayout(props: { children: React.ReactNode }) {
  const pathname = usePathname();
  const params = useParams();
  const [orderId] = params.segments ?? [];

  const title = React.useMemo(() => {
    if (pathname === '/orders/new') {
      return 'New Order';
    }
    if (orderId && pathname.includes('/edit')) {
      return `Order ${orderId} - Edit`;
    }
    if (orderId) {
      return `Order ${orderId}`;
    }
    return undefined;
  }, [orderId, pathname]);

  return (
    <DashboardLayout
      slots={{
        sidebarFooter: SidebarFooterAccount,
        toolbarLeft: () => <div />,
        toolbarRight: () => <div />,
        toolbarMiddle: Middle,
      }}
    >
      <PageContainer title={title}>{props.children}</PageContainer>
    </DashboardLayout>
  );
}

renders as:
image

<DashboardLayout
      slots={{
        sidebarFooter: SidebarFooterAccount,
        toolbarMiddle: Middle,
        toolbarRight: Right,
        toolbarLeft: Left,
      }}
    >
      <PageContainer title={title}>{props.children}</PageContainer>
    </DashboardLayout>

renders as:

image
<DashboardLayout
      slots={{
        sidebarFooter: SidebarFooterAccount,
        toolbar: Right,
      }}
    >
      <PageContainer title={title}>{props.children}</PageContainer>
    </DashboardLayout>

renders as:
image

@apedroferreira
Copy link
Member

apedroferreira commented Apr 2, 2025

@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 toolbarActions slot as proposed, and keep the changes minimal.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
PR: out-of-date The pull request has merge conflicts and can't be merged
Projects
None yet
Development

Successfully merging this pull request may close these issues.

Feature request: more control on topbar slots
3 participants