-
Prevent orphan components in Experience Editor when deleting composed components
September 29, 2017 Rodrigo Peplau 0
If an editor deletes a component in Experience Editor and that component has inner components, only the outer component will be actually deleted from the page rendering. Inner components will not show anymore (and often Content Editors will be happy), so why would that be a problem?
The problem
Take for instance this set of renderings of a certain page:
If in Experience Editor someone tries to delete it:
The result will be a “ghost” orphan item, which will not render when the page loads because its placeholder does not exist anymore.
That rendering will continue at the page rendering, being either forgotten forever or re-appearing when someone tries to add a new Carousel to the same Full-Width Container placeholder.
Not just me
I’ve seen more people concerned with that – such as the author of this question at Sitecore Exchange – and some other people suggested possible solutions.
One approach I tried was to follow this blog post by Mike Tschida and implement a pipeline processor to clean-up the Page Rendering, removing orphan components when the page is saved. That would be perfect, however during development or debugging, it is very common to temporarily move a component to an unexistent placeholder to make it vanish from the page. In cases like that, the component would be deleted, which is not desired.
Acting at the other end
So what if, instead of acting later at the server, we stop content editors at the root of the problem: the Experience Editor? At that case, when an editor attempts to delete a component which has inner components, a prompt like this would be displayed. In order to delete the outer component, the editor now needs to delete the inner components first.
Inspired by this simple Stack Overflow post, in which the author was looking for a way to simply ask for a confirmation before deleting a component, I ended up with the solution below.
Nip the evil in the bud
The deletion of a component is handled by javascript code located at \sitecore\shell\Applications\Page Modes\ChromeTypes\RenderingChromeType.js – more specifically at the deleteControl method. Our fix will comment out the original code (I will leave there for future reference in case of an upgrade) and add the following code:
deleteControl: function () { var canDelete = this.canDeleteControl(this.chrome); if (canDelete === false) { alert("Please delete inner controls before deleting this."); return false; } var placeholder = this.getPlaceholder(); if (placeholder) { placeholder.type.deleteControl(this.chrome); return true; } return false; },
Along of course with the new canDeleteControl method, which does the trick of verifying if the component attempted to be deleted has inner components.
canDeleteControl: function (chrome) { var canDelete = true; var childChromes = chrome.getChildChromes(); for (var i = 0; i < childChromes.length; i++) { if (childChromes[i].type.key() == "placeholder") { canDelete = this.canDeleteControl(childChromes[i]); if (canDelete === false) break; } else if (childChromes[i].type.key() == "rendering") { canDelete = false; break; } } return canDelete; },
And that’s all we need! Replace this file in all instances, clean up your browser caches and don’t worry about orphan components anymore!
Categories: Content Edition Experience, Development, Experience Editor, Uncategorized
How we won the Hackathon A Helix/TDS Sitecore Solution you can use
Proudly 9x Sitecore MVP
(2016-2024)
Localization
Recent Posts
Recent Comments
- navan on Meet MVPinny: the AI-Powered Sitecore Assistant
- Adriana on Content generation with Sitecore Connect and ChatGPT
- NAVAN on Automatic Sitecore NuGet upgrades with Powershell
- Hedipo S Menezes on Corey Peplau wrote this - WFFM conflict with Unity DI and a lesson on how Sitecore community is so amazing
- Rodrigo Peplau on ERROR [Content Testing]: Cannot find PhantomJS executable at ' (...) /data/tools/phantomjs/phantomjs.exe'. Aborting screenshot generation.
Archives
- June 2024
- April 2024
- February 2024
- December 2023
- November 2023
- August 2023
- July 2023
- January 2023
- February 2022
- December 2021
- November 2021
- March 2021
- July 2020
- February 2020
- September 2019
- July 2019
- April 2019
- March 2019
- December 2018
- February 2018
- January 2018
- November 2017
- September 2017
- August 2017
- July 2017
- March 2017
- February 2017
- November 2016
- September 2016
- August 2016
- July 2016
- April 2016
- November 2015
- September 2015
- July 2015
- April 2015
- March 2015
- February 2015
Categories
- Actions
- Active Directory
- Analytics
- Architecture
- Bug fixing
- CDP/Personalize
- ChatGPT
- Content Edition Experience
- Content Hub
- Continuous Integration
- Dev
- Development
- Environments
- Experience Editor
- Experience Forms
- Front-end
- Health Check builds
- Helix
- How To
- LDAP
- MVP
- MVP Summit
- MVPinny
- Phantom JS
- Powershell
- QA
- Richtext Editor
- Rules
- Security Provider
- SIF
- Sitecore 9
- Sitecore API
- Sitecore Community
- SItecore Connect
- Sitecore Modules
- Sitecore Rocks
- Sitecore Rule Processor
- Sitecore Symposium
- SPE
- SPEAK
- SUG
- Support Ticket
- TDS
- Team City
- Uncategorized
- Upgrades
- Visual Studio
- WFFM
- Workflow
- XConnect
- xDB
- XM Cloud