Dear Members,
In my current project some components are standalone( neither a child of foundation nor wcm core component's) and some are child of foundation component so requirement is to migrate all those foundation components to wcm core components. After reading some adobe articles I reached on the conclusion that:
There are two ways to migrate foundation to core component-
1. If functionality matches then use resourceSuperType to refer the respective core component and write interface based sling model if customised.
2. If functionality doesn't matches, at least write interface based sling model.
Please confirm whether my understanding is correct or not.
If not, please suggest an approach to accomplish the requirement.
Thanks
Umesh Thakur
Solved! Go to Solution.
Views
Replies
Total Likes
Hi,
Globally that's correct, yes
However, one thing to be aware of is that Core Components come with a number of methods to modify them without needing to write new code. These non-code customizations are called policies, you can read more about them here. If you want an example:
Before Core Components, the Image component let authors upload images from their PC (bad idea). The Core Component Image has a policy that lets you disable this feature (much safer). You can read about that here.
In order to use policies though, you'll have to migrate from Static Templates to Editable Templates (which I highly recommend). These let you build and design your templates in an editor rather than in code, and offer many more features than Static Templates.
Also, one semantic detail: a component that uses a Sling Model is not, by definition, a "core component". The term "core component" refers specifically to the components offered by AEM Core Components.
Views
Replies
Total Likes
Hi,
Globally that's correct, yes
However, one thing to be aware of is that Core Components come with a number of methods to modify them without needing to write new code. These non-code customizations are called policies, you can read more about them here. If you want an example:
Before Core Components, the Image component let authors upload images from their PC (bad idea). The Core Component Image has a policy that lets you disable this feature (much safer). You can read about that here.
In order to use policies though, you'll have to migrate from Static Templates to Editable Templates (which I highly recommend). These let you build and design your templates in an editor rather than in code, and offer many more features than Static Templates.
Also, one semantic detail: a component that uses a Sling Model is not, by definition, a "core component". The term "core component" refers specifically to the components offered by AEM Core Components.
Views
Replies
Total Likes
.
Views
Replies
Total Likes
Can you please explain why you would want to migrate all existing components from foundation components to WCM Core components? Why was this decided?
Taking a closer look at the content WCM Core Content Components:
What's more interesting is the WCM Core Page Component:
Here's what I would do. The first thing I would do is to convert the base page to extend the WCM Core Page Component. The WCM Core Page Component is important as there are new behaviours included in the supporting scripts of the Sightly HTL templates that support new features such as editable templates; used for templates or experience fragments (read more here). After creating a new base page component and all other supporting page components, you would need to either think about using editable templates or continue on using static templates. Whatever choice you decide, you would next need to apply a migration script; to update all existing content nodes to point to the new static or editable templates. During script migration, ensure that you are progressively upgrading pages to test as you go.
Next, Content Components; I would focus on converting JSPs to Sling Model backend logic and Sightly for the view logic while implementing the Jackson Exporter feature for all Sling Models. Don't forget to update the Classic UI, convert Classic UI -> Touch UI using this tool https://docs.adobe.com/content/help/en/experience-manager-64/developing/devtools/dialog-conversion.h....
Maybe only some existing components can overlay (extend) WCM core components, but not all.
I hope this helps.
Views
Replies
Total Likes
Views
Replies
Total Likes
Hi Briankasingli,
Here I am talking about only content component not the structure component.
1. Some of the foundation component is going to be deprecated.
2. To achieve WCAG AA level you will have to made your component compatible with best practises, those are already implemented in Core component.
3. All our existing components are in sightly only but we are still using WCMUsePojo for the same.
Due to above stated reason we are planing to upgrade our foundation component to core component.
Thanks
Umesh Thakur
Views
Replies
Total Likes
Views
Likes
Replies
Views
Likes
Replies