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

Block editor: iframe: use block settings to pass assets #37193

Merged
merged 1 commit into from
Dec 12, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
25 changes: 13 additions & 12 deletions lib/client-assets.php
Original file line number Diff line number Diff line change
Expand Up @@ -710,7 +710,7 @@ function gutenberg_extend_block_editor_settings_with_fse_theme_flag( $settings )
/**
* Sets the editor styles to be consumed by JS.
*/
function gutenberg_extend_block_editor_styles_html() {
function gutenberg_resolve_assets() {
global $pagenow;

$script_handles = array();
Expand Down Expand Up @@ -765,16 +765,17 @@ function gutenberg_extend_block_editor_styles_html() {

$scripts = ob_get_clean();

$editor_assets = wp_json_encode(
array(
'styles' => $styles,
'scripts' => $scripts,
)
return array(
'styles' => $styles,
'scripts' => $scripts,
);

echo "<script>window.__editorAssets = $editor_assets</script>";
}
add_action( 'admin_footer-appearance_page_gutenberg-edit-site', 'gutenberg_extend_block_editor_styles_html' );
add_action( 'admin_footer-post.php', 'gutenberg_extend_block_editor_styles_html' );
add_action( 'admin_footer-post-new.php', 'gutenberg_extend_block_editor_styles_html' );
add_action( 'admin_footer-widgets.php', 'gutenberg_extend_block_editor_styles_html' );

add_filter(
'block_editor_settings_all',
function( $settings ) {
// In the future we can allow WP Dependency handles to be passed.
$settings['__unstableResolvedAssets'] = gutenberg_resolve_assets();
return $settings;
}
);
9 changes: 7 additions & 2 deletions packages/block-editor/src/components/block-preview/auto.js
Original file line number Diff line number Diff line change
Expand Up @@ -25,8 +25,12 @@ function AutoBlockPreview( { viewportWidth, __experimentalPadding } ) {
contentResizeListener,
{ height: contentHeight },
] = useResizeObserver();
const styles = useSelect( ( select ) => {
return select( store ).getSettings().styles;
const { styles, assets } = useSelect( ( select ) => {
const settings = select( store ).getSettings();
return {
styles: settings.styles,
assets: settings.__unstableResolvedAssets,
};
}, [] );

// Initialize on render instead of module top level, to avoid circular dependency issues.
Expand All @@ -46,6 +50,7 @@ function AutoBlockPreview( { viewportWidth, __experimentalPadding } ) {
>
<Iframe
head={ <EditorStyles styles={ styles } /> }
assets={ assets }
contentRef={ useRefEffect( ( bodyElement ) => {
const {
ownerDocument: { documentElement },
Expand Down
9 changes: 6 additions & 3 deletions packages/block-editor/src/components/iframe/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -164,12 +164,15 @@ async function loadScript( head, { id, src } ) {
} );
}

function Iframe( { contentRef, children, head, tabIndex = 0, ...props }, ref ) {
function Iframe(
{ contentRef, children, head, tabIndex = 0, assets, ...props },
ref
) {
const [ , forceRender ] = useReducer( () => ( {} ) );
const [ iframeDocument, setIframeDocument ] = useState();
const [ bodyClasses, setBodyClasses ] = useState( [] );
const styles = useParsedAssets( window.__editorAssets?.styles );
const scripts = useParsedAssets( window.__editorAssets?.scripts );
const styles = useParsedAssets( assets?.styles );
const scripts = useParsedAssets( assets?.scripts );
const clearerRef = useBlockSelectionClearer();
const [ before, writingFlowRef, after ] = useWritingFlow();
const setRef = useRefEffect( ( node ) => {
Expand Down
2 changes: 2 additions & 0 deletions packages/block-editor/src/store/defaults.js
Original file line number Diff line number Diff line change
Expand Up @@ -234,4 +234,6 @@ export const SETTINGS_DEFAULTS = {
slug: 'midnight',
},
],

__unstableResolvedAssets: { styles: [], scripts: [] },
};
20 changes: 16 additions & 4 deletions packages/edit-post/src/components/visual-editor/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,14 @@ import { __ } from '@wordpress/i18n';
import BlockInspectorButton from './block-inspector-button';
import { store as editPostStore } from '../../store';

function MaybeIframe( { children, contentRef, shouldIframe, styles, style } ) {
function MaybeIframe( {
children,
contentRef,
shouldIframe,
styles,
assets,
style,
} ) {
const ref = useMouseMoveTypingReset();

if ( ! shouldIframe ) {
Expand All @@ -64,6 +71,7 @@ function MaybeIframe( { children, contentRef, shouldIframe, styles, style } ) {
return (
<Iframe
head={ <EditorStyles styles={ styles } /> }
assets={ assets }
ref={ ref }
contentRef={ contentRef }
style={ { width: '100%', height: '100%', display: 'block' } }
Expand Down Expand Up @@ -106,9 +114,12 @@ export default function VisualEditor( { styles } ) {
( select ) => select( editPostStore ).hasMetaBoxes(),
[]
);
const themeSupportsLayout = useSelect( ( select ) => {
const { getSettings } = select( blockEditorStore );
return getSettings().supportsLayout;
const { themeSupportsLayout, assets } = useSelect( ( select ) => {
const _settings = select( blockEditorStore ).getSettings();
return {
themeSupportsLayout: _settings.supportsLayout,
assets: _settings.__unstableResolvedAssets,
};
}, [] );
const { clearSelectedBlock } = useDispatch( blockEditorStore );
const { setIsEditingTemplate } = useDispatch( editPostStore );
Expand Down Expand Up @@ -216,6 +227,7 @@ export default function VisualEditor( { styles } ) {
}
contentRef={ contentRef }
styles={ styles }
assets={ assets }
style={ { paddingBottom } }
>
{ themeSupportsLayout && ! isTemplateMode && (
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -137,6 +137,7 @@ function ResizableEditor( { enableResizing, settings, ...props } ) {
}</style>
</>
}
assets={ settings.__unstableResolvedAssets }
ref={ ref }
name="editor-canvas"
className="edit-site-visual-editor__editor-canvas"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -127,6 +127,7 @@ function useBlockEditorSettings( settings, hasTemplate ) {
'titlePlaceholder',
'supportsLayout',
'widgetTypesToHideFromLegacyWidgetBlock',
'__unstableResolvedAssets',
] ),
mediaUpload: hasUploadPermissions ? mediaUpload : undefined,
__experimentalReusableBlocks: reusableBlocks,
Expand Down