-
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
Stabilise BlockPreview props #47231
Merged
Merged
Stabilise BlockPreview props #47231
Changes from 1 commit
Commits
Show all changes
4 commits
Select commit
Hold shift + click to select a range
6655011
Stabilise BlockPreview props
noisysocks 478a51a
Remove unnecessary __experimentalStyles migration
noisysocks 6e85766
Add version to deprecated() calls
noisysocks 8a3838a
Default padding to 0, allow additionalStyles to override default styling
noisysocks 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
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
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 |
---|---|---|
|
@@ -9,6 +9,7 @@ import classnames from 'classnames'; | |
import { useDisabled, useMergeRefs } from '@wordpress/compose'; | ||
import { useSelect } from '@wordpress/data'; | ||
import { memo, useMemo } from '@wordpress/element'; | ||
import deprecated from '@wordpress/deprecated'; | ||
|
||
/** | ||
* Internal dependencies | ||
|
@@ -20,11 +21,41 @@ import { BlockListItems } from '../block-list'; | |
|
||
export function BlockPreview( { | ||
blocks, | ||
__experimentalPadding = 0, | ||
viewportWidth = 1200, | ||
minHeight, | ||
additionalStyles = [], | ||
// Deprecated props: | ||
__experimentalMinHeight, | ||
__experimentalStyles = [], | ||
__experimentalStyles, | ||
__experimentalPadding, | ||
} ) { | ||
if ( __experimentalMinHeight ) { | ||
minHeight = __experimentalMinHeight; | ||
deprecated( 'The __experimentalMinHeight prop', { | ||
since: '6.2', | ||
noisysocks marked this conversation as resolved.
Show resolved
Hide resolved
|
||
alternative: 'minHeight', | ||
} ); | ||
} | ||
if ( __experimentalStyles ) { | ||
additionalStyles = __experimentalStyles; | ||
deprecated( 'The __experimentalStyles prop of BlockPreview', { | ||
noisysocks marked this conversation as resolved.
Show resolved
Hide resolved
|
||
plugin: 'Gutenberg', | ||
since: '15.0', | ||
version: '15.2', | ||
alternative: 'additionalStyles', | ||
} ); | ||
} | ||
if ( __experimentalPadding ) { | ||
ntsekouras marked this conversation as resolved.
Show resolved
Hide resolved
|
||
additionalStyles = [ | ||
...additionalStyles, | ||
{ css: `body { padding: ${ __experimentalPadding }px; }` }, | ||
]; | ||
deprecated( 'The __experimentalPadding prop of BlockPreview', { | ||
since: '6.2', | ||
alternative: 'additionalStyles', | ||
} ); | ||
} | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Should we follow-up and remove these props now? If you think it's still too early, consider increasing the version. |
||
|
||
const originalSettings = useSelect( | ||
( select ) => select( blockEditorStore ).getSettings(), | ||
[] | ||
|
@@ -37,16 +68,17 @@ export function BlockPreview( { | |
() => ( Array.isArray( blocks ) ? blocks : [ blocks ] ), | ||
[ blocks ] | ||
); | ||
|
||
if ( ! blocks || blocks.length === 0 ) { | ||
return null; | ||
} | ||
|
||
return ( | ||
<BlockEditorProvider value={ renderedBlocks } settings={ settings }> | ||
<AutoHeightBlockPreview | ||
viewportWidth={ viewportWidth } | ||
__experimentalPadding={ __experimentalPadding } | ||
__experimentalMinHeight={ __experimentalMinHeight } | ||
__experimentalStyles={ __experimentalStyles } | ||
minHeight={ minHeight } | ||
additionalStyles={ additionalStyles } | ||
/> | ||
</BlockEditorProvider> | ||
); | ||
|
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
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.
That's not from this PR, but is there a case that we don't have
styles
but we do haveadditionalStyles
?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.
Yes in theory there could be no
styles
attribute in the block editor settings which would meanstyles
isundefined
here. This likely happens when the block editor is used outside of WordPress.