I have the following directive. I am trying to pass the class name that needs to be toggled when the link/button is clicked. I keep getting undefined in debug console. HostListener takes array of args - i guess i am not sure how to pass them and cant seem to find example of it.
@Directive({
selector: '[appSidebarToggler]'
})
export class SidebarToggleDirective {
constructor(public elementRef: ElementRef) {
}
@HostListener('click', ['$event', '$tobeToggledClassName'])
toggleOpen($event: any, $tobeToggledClassName: any) {
$event.preventDefault();
console.log("class to be toggled is - >" + $tobeToggledClassName);
console.log("ref - >" + this.elementRef);
document.querySelector(tobeToggledClassName).classList.toggle('sidebar-hidden');
}
}
and i am using it like this in my component :
<a class="" href="#" sidebarToggler tobeToggledClassName="sideMenu">☰</a>
thanks.