-
Notifications
You must be signed in to change notification settings - Fork 50
Add useRenderAppenderWithLimit hook #394
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
Merged
Merged
Conversation
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
10up Block Components
|
||||||||||||||||||||||||||||
| Project |
10up Block Components
|
| Branch Review |
feature/hook-render-appender-with-limit
|
| Run status |
|
| Run duration | 05m 07s |
| Commit |
|
| Committer | Neil Coetzer |
| View all properties for this run ↗︎ | |
| Test results | |
|---|---|
|
|
0
|
|
|
0
|
|
|
0
|
|
|
0
|
|
|
35
|
| View all changes introduced in this branch ↗︎ | |
fabiankaegy
reviewed
Sep 1, 2025
…mponent instead of a boolean flag for button appender
…etailed parameter descriptions and usage examples for default, button type, and custom appenders.
fabiankaegy
approved these changes
Sep 8, 2025
Member
fabiankaegy
left a comment
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.
This is looking good :)
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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.
Description of the Change
This pull request introduces a new custom React hook,
useRenderAppenderWithLimit, which allows developers to easily enforce a maximum number of inner blocks in WordPress blocks. It also demonstrates its usage by adding an example block and updates the block components package to export the new hook.New Hook Implementation and Documentation
useRenderAppenderWithLimithook inhooks/use-render-appender-with-limit/index.ts, which conditionally returns a block appender based on the number of inner blocks and a specified limit.hooks/use-render-appender-with-limit/readme.md, including usage instructions and an example.Example Block Demonstrating the Hook
example/inner-block-limit, with configuration inexample/src/blocks/inner-blocks-limit/block.jsonto showcase usage of the hook.example/src/blocks/inner-blocks-limit/edit.tsx, utilizing the hook to limit inner blocks to four.example/src/blocks/inner-blocks-limit/index.tsx, wiring up the edit and save functionality.Package Export Update
useRenderAppenderWithLimitfrom the main hooks index for easier import throughout the codebase.Closes #393
How to test the Change
Changelog Entry
Credits
Props @ncoetzer @fabiankaegy
Checklist: