import { Component, HostBinding, HostListener } from '@angular/core';
// #docregion
@Component({
  selector: 'hero-host',
  template: `
    
Hero Host in Decorators
    Heading clicks: {{clicks}}
  `,
  // Styles within (but excluding) the  element
  styles: ['.active {background-color: yellow;}']
})
export class HeroHostComponent {
  // HostBindings to the  element
  @HostBinding() title = 'Hero Host in Decorators Tooltip';
  @HostBinding('class.heading') headingClass = true;
  active = false;
  clicks = 0;
  // HostListeners on the entire  element
  @HostListener('click')
  clicked() {
    this.clicks += 1;
  }
  @HostListener('mouseenter', ['$event'])
  enter(event: Event) {
    this.active = true;
    this.headingClass = false;
  }
  @HostListener('mouseleave', ['$event'])
  leave(event: Event) {
    this.active = false;
    this.headingClass = true;
  }
}
// #enddocregion