-
Notifications
You must be signed in to change notification settings - Fork 218
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
[BUGFIX] Missing rendered children in preview workspace #2225
base: development
Are you sure you want to change the base?
Conversation
As described in Issue FluidTYPO3#2158 children are not rendered when previewing changes made in the preview workspace.
Thanks for the patch @JanStorm. Just restating for my own understanding: the underlying cause here is that there are no workspace versions of the parent record's children but the parent has a WS version, which causes FE to render the WS version of the parent and use that version's UID to calculate colPos, which in turn causes FE to only show children which were created or moved in the workspace (if it shows any children at all). About the proposed patch: Usually it's not the right approach to mix things together like this (also, that causes unexpected things with sorting order and such). The right solution might instead be to create workspace versions of the parent's child records when when a parent record is modified in workspace. It may also be necessary to create a WS version of the parent and WS versions of all children when a child is changed in WS. This should give the right result:
By making WS versions of all child records, and ensuring those child records have the colPos calculated from the WS version of the parent, the puzzle should fit - without needing to change things in FE context. We would have two complete sets of parent+children. And this probably needs to be full recursive. By the way: What happens when you actually publish those workspace versions? Is the colPos changed to the one belong to the live version of the parent - or does it stay the one belonging to the workspace version of the parent? |
All of this logic would be in the DataHandlerSubscriber - which tends to be pretty complex. But the good news is that I think this will just be a matter of propagating a And it sounds like we don't even need to further post-process after propagating the action. That is, assuming the colPos values are indeed all correct even for new created content in WS. I'm not 100% sure but we might need to also change the FE rendering to ensure the colPos it uses for selecting content, is based on the live record even when parent is a WS version. |
As described in Issue #2158 children are not rendered when previewing changes made in the preview workspace:
I have encountered the same problem.
The Problem is that when rendering the content records of a workspace element, that they are identified by their colPos, which are based on the uid of the LIVE-element.
As example, we have these Elements:
ColumnNumberUtility::calculateColumnNumberForParentAndColumn
function.With this set, we render the preview element:
We see that the "placeholder" (the preview element) is used instead the original:
Rendering the preview results in the child elements being searched by colPos 4301, 4302, 4303, ... (Again, because of
ColumnNumberUtility::calculateColumnNumberForParentAndColumn
).The Problem here is that we want to render also the live elements, which have the colPos 4201, 4201, ...
So no children are rendered.
So as a solution, i kept that information about the original record and used it then to also check for rows in this live record.