-
-
Notifications
You must be signed in to change notification settings - Fork 461
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
docs: Updated custom UI example #926
Conversation
The latest updates on your projects. Learn more about Vercel for Git ↗︎
|
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.
Nice. I think this looks good but we can make a couple of improvements. Mainly to explain to readers what the concepts are behind the code. What's the architecture?
Otherwise, we just provide them with some sample replacements that they can edit, but might not go beyond that or really understand it because the concepts aren't explained.
Specifically, I'd suggest:
- For every component, link / explain which built-in component is replaced. e.g. something like: "The MUIFormattingToolbar replaces the default FormattingToolbar (link) with a MUI-based one. It includes the same components as the default FormattingToolbar, but renders them using MUI elements instead. You can also adjust this code to add or remove specific buttons."
- Explain when a user would implement a new package (e.g.: "The approach in this example replaces individual components. Alternatively, you can .... This is how the default BlockNote UI layers for Mantine / ShadCN / Ariakit are created")
# Conflicts: # package-lock.json # playground/package.json
Looks great! |
This PR reworks the custom UI example and adds a non-pro example for how to make a static formatting toolbar. The new custom UI example uses Material UI to implement replacements for the default Mantine components, and is extensively commented to show users how to customize elements and use other component libraries that aren't MUI.
Closes #867