Custom Component in AEM 6.5 - Referencing Core Component HTML | Community
Skip to main content
April 9, 2020
Solved

Custom Component in AEM 6.5 - Referencing Core Component HTML

  • April 9, 2020
  • 2 replies
  • 1107 views

Hello,

I'm learning the ropes of AEM 6.5, and am trying to create a custom container component. The documents state that best practice is to utilize core components as much as possible, which is exactly what I'm trying to do. As such, my "ImageContainer" component utilizes "core/wcm/components/image/v1/container" for its functionality.

This custom component works perfectly as intended when "imagecontainer.html" is implemented as such:

<div data-sly-use.imagecontainer="com.mycompany.www.core.models.ImageContainer"
class="cmp-imagecontainer__container ${properties.styleType}">

<!-- contents from 'container.html' -->

<sly data-sly-use.container="com.adobe.cq.wcm.core.components.models.LayoutContainer">
<sly data-sly-test.responsive="${container.layout == 'RESPONSIVE_GRID'}"
data-sly-use.responsiveGridTemplate="responsiveGrid.html"
data-sly-call="${responsiveGridTemplate.responsiveGrid @ container=container}"></sly>
<sly data-sly-test.simple="${!responsive}"
data-sly-use.simpleTemplate="simple.html"
data-sly-call="${simpleTemplate.simple @ container=container}"></sly>
</sly>

<!-- end contents -->
</div>

However, the implementation above directly copies code from "container.html". Every time "container.html" is updated, this component would need to be updated as well. I'd prefer to have a solution that directly references "container.html" and passes in the model properties:

<div data-sly-use.imagecontainer="com.mycompany.www.core.models.ImageContainer"
class="cmp-imagecontainer__container ${properties.styleType}">

<!-- code inserted here that directly references container.html -->

<div data-sly-include="{'container.html' @ properties=properties}"></div>

<!-- this does not work -->
</div>

I'm not sure what combination of sling actions and properties would need to be used to get this to work. There's data-sly-use, data-sly-template, data-sly-include, among many others. A nudge in the right direction would help me a lot.

This post is no longer active and is closed to new replies. Need help? Start a new post to ask your question.
Best answer by aanchal-sikka

You just need to add following. Since, you are planning to leave the OOTB one as it is, you need not send properties. It already uses a Sling Model which will provide relevant properties.

 

<sly data-sly-include="container.html" />

2 replies

aanchal-sikka
Community Advisor
aanchal-sikkaCommunity AdvisorAccepted solution
Community Advisor
December 5, 2023

You just need to add following. Since, you are planning to leave the OOTB one as it is, you need not send properties. It already uses a Sling Model which will provide relevant properties.

 

<sly data-sly-include="container.html" />
Aanchal Sikka
kautuk_sahni
Community Manager
Community Manager
December 5, 2023

@kernja Did you find the suggestions from users helpful? Please let us know if more information is required. Otherwise, please mark the answer as correct for posterity. If you have found out solution yourself, please share it with the community.

Kautuk Sahni