AEM 6.5, SPA, Angular 9
In the editor and published page via Typescript, I'd like to subscribe to a parent container component from a child component. If I drag a parent container component on the editor page and then drag a child component so it is inside of the parent container, how can the child get a reference to it's closest parent so it can subscribe to parent changes?
When a component is dragged onto the editor page, are there certain Angular-monitored events that are triggered and would help with a solution?
Two use cases I'm trying to solve:
Solved! Go to Solution.
Topics help categorize Community content and increase your ability to discover relevant content.
Views
Replies
Total Likes
Hi,
You don't necessarily need any specific Angular or AEM functionality to achieve this. You could simply utilize the "closest" selector to locate the parent container. Once you've obtained the parent, you can retrieve the details and perform updates to your children.
You would implement something along these lines:
<div class="container">
<div class="component1">
</div>
<div class="component2">
</div>
</div>
//Using JS
document.querySelector(".component2").closest(".container")
Please check these links:
https://developer.mozilla.org/en-US/docs/Web/API/Element/closest
Hope this helps
Views
Replies
Total Likes
Hi,
You don't necessarily need any specific Angular or AEM functionality to achieve this. You could simply utilize the "closest" selector to locate the parent container. Once you've obtained the parent, you can retrieve the details and perform updates to your children.
You would implement something along these lines:
<div class="container">
<div class="component1">
</div>
<div class="component2">
</div>
</div>
//Using JS
document.querySelector(".component2").closest(".container")
Please check these links:
https://developer.mozilla.org/en-US/docs/Web/API/Element/closest
Hope this helps
Views
Replies
Total Likes