-
Notifications
You must be signed in to change notification settings - Fork 4.2k
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
RichText/Footnotes: make getRichTextValues work with InnerBlocks.Content #52241
Merged
Merged
Changes from all commits
Commits
Show all changes
7 commits
Select commit
Hold shift + click to select a range
6904c70
RichText/Footnotes: make getRichTextValues work with InnerBlocks.Content
ellatrix 43e28d5
Fix innerBlocks
ellatrix 423588a
Clean up
ellatrix 526154c
Add e2e tests
ellatrix d006b5e
Polish
ellatrix a440616
Fix tests after rebase
ellatrix 8f9041a
Update test/e2e/specs/editor/various/footnotes.spec.js
mcsf File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains 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
95 changes: 95 additions & 0 deletions
95
packages/block-editor/src/components/rich-text/get-rich-text-values.js
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,95 @@ | ||
/** | ||
* WordPress dependencies | ||
*/ | ||
import { RawHTML, StrictMode, Fragment } from '@wordpress/element'; | ||
import { | ||
getSaveElement, | ||
__unstableGetBlockProps as getBlockProps, | ||
} from '@wordpress/blocks'; | ||
|
||
/** | ||
* Internal dependencies | ||
*/ | ||
import InnerBlocks from '../inner-blocks'; | ||
import { Content } from './content'; | ||
|
||
/* | ||
* This function is similar to `@wordpress/element`'s `renderToString` function, | ||
* except that it does not render the elements to a string, but instead collects | ||
* the values of all rich text `Content` elements. | ||
*/ | ||
function addValuesForElement( element, ...args ) { | ||
if ( null === element || undefined === element || false === element ) { | ||
return; | ||
} | ||
|
||
if ( Array.isArray( element ) ) { | ||
return addValuesForElements( element, ...args ); | ||
} | ||
|
||
switch ( typeof element ) { | ||
case 'string': | ||
case 'number': | ||
return; | ||
} | ||
|
||
const { type, props } = element; | ||
|
||
switch ( type ) { | ||
case StrictMode: | ||
case Fragment: | ||
return addValuesForElements( props.children, ...args ); | ||
case RawHTML: | ||
return; | ||
case InnerBlocks.Content: | ||
return addValuesForBlocks( ...args ); | ||
case Content: | ||
const [ values ] = args; | ||
values.push( props.value ); | ||
return; | ||
} | ||
|
||
switch ( typeof type ) { | ||
case 'string': | ||
if ( typeof props.children !== 'undefined' ) { | ||
return addValuesForElements( props.children, ...args ); | ||
} | ||
return; | ||
case 'function': | ||
if ( | ||
type.prototype && | ||
typeof type.prototype.render === 'function' | ||
) { | ||
return addValuesForElement( | ||
new type( props ).render(), | ||
...args | ||
); | ||
} | ||
|
||
return addValuesForElement( type( props ), ...args ); | ||
} | ||
} | ||
|
||
function addValuesForElements( children, ...args ) { | ||
children = Array.isArray( children ) ? children : [ children ]; | ||
|
||
for ( let i = 0; i < children.length; i++ ) { | ||
addValuesForElement( children[ i ], ...args ); | ||
} | ||
} | ||
|
||
function addValuesForBlocks( values, blocks ) { | ||
for ( let i = 0; i < blocks.length; i++ ) { | ||
const { name, attributes, innerBlocks } = blocks[ i ]; | ||
const saveElement = getSaveElement( name, attributes ); | ||
addValuesForElement( saveElement, values, innerBlocks ); | ||
} | ||
} | ||
|
||
export function getRichTextValues( blocks = [] ) { | ||
getBlockProps.skipFilters = true; | ||
const values = []; | ||
addValuesForBlocks( values, blocks ); | ||
getBlockProps.skipFilters = false; | ||
return values; | ||
} |
This file contains 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
This file contains 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
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.
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.
Since values is a const
[]
this code reads as if we always return[]
?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.
addValuesForBlocks
and subsequent calls all mutate that single array. Personally, I find it clear enough in the context of those four lines (otherwisevalues
would be totally inert), and it's consistent with other performance-minded functions in rich text.