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

Unable to use DragHandleMenu children prop #1525

Open
fscs64 opened this issue Mar 13, 2025 · 3 comments
Open

Unable to use DragHandleMenu children prop #1525

fscs64 opened this issue Mar 13, 2025 · 3 comments
Labels
bug Something isn't working

Comments

@fscs64
Copy link

fscs64 commented Mar 13, 2025

Describe the bug
I want to use the DragHandleMenu component with my own custom subcomponents. It seems that can be done using specific children (

), but when you check the parent component It seems that no children are given to the component, so I am not able to customize the component.

I tried also to provide my own custom component using the 'dragHandleMenu' prop

const Component = props.dragHandleMenu || DragHandleMenu;

but you have to provide a component class not an instance with my custom component

To Reproduce
Try to configure a custom SideMenu, and provide custom components to be used on
https://github.com/TypeCellOS/BlockNote/blob/main/packages/react/src/components/SideMenu/DragHandleMenu/DragHandleMenu.tsx#L42
You are not going to able to use you custom components unless you create own custom components

@fscs64 fscs64 added the bug Something isn't working label Mar 13, 2025
@nperez0111
Copy link
Contributor

I don't understand what the problem is here:

but you have to provide a component class not an instance with my custom component

shouldn't it be something like this:

const MyDragHandleMenu = () => {
  return (<DragHandleMenu><button>my button</buton></DragHandleMenu>)
}

<DragHandleButton dragHandleMenu={MyDragHandleMenu} /*other props*/></DragHandleButton>

Maybe you want it to be more like this?

<DragHandleButton dragHandleMenu={MyDragHandleMenu}><button>my button</button></DragHandleButton>

@nperez0111
Copy link
Contributor

Opened a PR for the latter option as that sort of makes more sense to me to expose easier.

@fscs64
Copy link
Author

fscs64 commented Mar 13, 2025

I guess that it's more clear with this new option. Thanks for the support.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
bug Something isn't working
Projects
None yet
Development

No branches or pull requests

2 participants