- Issue created by @luke.leber
- Status changed to Postponed
over 1 year ago 8:56pm 26 July 2023
Layout builder layouts don't have a proper diff plugin. As more and more sites transition to rely on layout builder, an intuitive way of inspecting changes between layout revisions is required.
Provide two different general diff classifications: Section changes and Component changes.
Sections can't really be "properly" diff'd until they get dedicated UUID's over in https://www.drupal.org/project/drupal/issues/3208766 β¨ Add UUID to sections Needs work . As a result, this layout view probably won't be overly useful if sections are either re-ordered, or a new section is added toward the top of a piece of content.
For each section delta from 0 to the max delta of LHS / RHS, sequentially, assume LHS is the "left" revision and RHS is the "right" revision.
table
for the "left" and "right" revision (padding empty tables for any empty sections).caxy/php-htmldiff
For each section delta from 0 to the max delta of LHS / RHS, gather up all LHS components and RHS components.
array_diff_key($rhs_components, $lhs_components);
.array_diff_key($lhs_components, $rhs_components);
.array_intersect_key($lhs_components, $rhs_components
.table
(padding empty tables for any empty components).caxy/php-htmldiff
For each section delta from 0 to the max delta of LHS / RHS, gather up all LHS components and RHS components.
array_diff_key($rhs_components, $lhs_components);
.array_diff_key($lhs_components, $rhs_components);
.array_intersect_key($lhs_components, $rhs_components
.caxy/php-htmldiff
A new diff layout plugin type to review layout based changes.
None
None
Postponed
1.0
Code