// BehaviorSubject from rxjs hovering$ = new BehaviorSubject(false); toggleOnHover() { const currentHovering = this.hovering$.getValue(); this.hovering$.next(!currentHovering); }