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

Gallery refactor - Infer version from existing content #32270

Merged
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
11 changes: 8 additions & 3 deletions packages/block-library/src/gallery/edit-wrapper.js
Original file line number Diff line number Diff line change
Expand Up @@ -23,10 +23,15 @@ export default function GalleryEditWrapper( props ) {
return settings.__experimentalGalleryRefactor;
}, [] );

// This logic is used to infer version information from content with higher
// precedence than the flag. New galleries (and existing empty galleries) will
// honor the flag.
const hasNewVersionContent = !! attributes?.imageCount;
const hasOldVersionContent =
0 < attributes?.ids?.length || 0 < attributes?.images?.length;
if (
! __experimentalGalleryRefactor ||
attributes?.ids?.length > 0 ||
attributes?.images?.length > 0
hasOldVersionContent ||
( ! hasNewVersionContent && ! __experimentalGalleryRefactor )
) {
return <GalleryEditV1 { ...props } />;
}
Expand Down