Skip to content
Snippets Groups Projects
in-view-detection.directive.ts 1.24 KiB
Newer Older
  • Learn to ignore specific revisions
  • import {
      Directive, ElementRef, EventEmitter, Input, OnDestroy, OnInit, Output
    } from '@angular/core';
    
    import { takeUntil } from 'rxjs/operators';
    import { Subject } from 'rxjs';
    
    import { IntersectionDetector } from '../classes/intersection-detector';
    
    
    @Directive({
    
      selector: '[aspectInViewDetection]'
    
    export class InViewDetectionDirective implements OnInit, OnDestroy {
    
      @Input() detectionType!: 'top' | 'bottom';
    
      @Output() intersecting = new EventEmitter();
    
      @Input() intersectionContainer!: HTMLElement;
    
      @Input() topPadding!: number;
    
      intersectionDetector!: IntersectionDetector;
    
      private ngUnsubscribe = new Subject<void>();
    
    
      constructor(private elementRef: ElementRef) {}
    
      ngOnInit(): void {
    
        const constraint = this.detectionType === 'top' ? '0px' : '0px';
    
        this.intersectionDetector = new IntersectionDetector(this.intersectionContainer, constraint);
        this.intersectionDetector.observe(this.elementRef.nativeElement);
    
        this.intersectionDetector.intersecting
          .pipe(takeUntil(this.ngUnsubscribe))
    
          .subscribe(() => this.intersecting.emit());
    
      }
    
      ngOnDestroy(): void {
    
        this.ngUnsubscribe.next();
        this.ngUnsubscribe.complete();
    
        this.intersectionDetector.disconnect(this.elementRef.nativeElement);