I have a common if statement to check the partial used inside parent partials or templates before render, like
{{#with this}}
{{#if (checkPartials "card")}}
{{> card }}
{{/if}}
{{/with}}
This logic is used for n number of different partials declared in multiple templates and partials. How to perform a helper just before render?