File

projects/ngui-common/src/lib/ngui-inview/src/ngui-inview.directive.ts

Description

Fires (nguiInview) or (nguiOutview) events dependents on the element is in viewport or not

Implements

OnInit OnDestroy

Metadata

Index

Properties
Methods
Inputs
Outputs

Constructor

constructor(element: ElementRef, platformId: any)
Parameters :
Name Type Optional
element ElementRef No
platformId any No

Inputs

observerOptions
Type : IntersectionObserverInit
Default value : {threshold: [.1, .2, .3, .4, .5, .6, .7, .8]}

IntersectionObserver options

options
Type : any

Deprecated config. Use observerOptions instead.

Outputs

nguiInview
Type : EventEmitter<IntersectionObserverEntry>

Event that will be fired when in viewport

nguiOutview
Type : EventEmitter<IntersectionObserverEntry>

Event that will be fired when out of viewport

Methods

handleIntersect
handleIntersect(entries)

Fires (nguiInview) event when this element is in viewport and fires (nguiOutview) event when this element is not in viewport

Parameters :
Name Optional
entries No
Returns : void
ngOnDestroy
ngOnDestroy()

Stops IntersectionObserver

Returns : void
ngOnInit
ngOnInit()

Starts IntersectionObserver

Returns : void

Properties

Public element
Type : ElementRef
observer
Type : IntersectionObserver
import {
    Directive,
    ElementRef,
    EventEmitter,
    Inject,
    Input,
    OnDestroy,
    OnInit,
    Output,
    PLATFORM_ID
} from '@angular/core';
import {isPlatformBrowser} from '@angular/common';

/**
 * Fires (nguiInview) or (nguiOutview) events dependents on the element is in viewport or not
 */
@Directive({
    selector: '[nguiInview], [nguiOutview]' // eslint-disable-line
})
export class NguiInviewDirective implements OnInit, OnDestroy {
  observer: IntersectionObserver;

    /** IntersectionObserver options */
  @Input() observerOptions: IntersectionObserverInit = {threshold: [.1, .2, .3, .4, .5, .6, .7, .8]};
    /** Deprecated config. Use `observerOptions` instead.
     * @deprecated Use `observerOptions` instead. */
  @Input() options: any;

    /** Event that will be fired when in viewport */
  @Output() nguiInview: EventEmitter<IntersectionObserverEntry> = new EventEmitter();
    /** Event that will be fired when out of  viewport */
  @Output() nguiOutview: EventEmitter<IntersectionObserverEntry> = new EventEmitter();

  constructor(
        public element: ElementRef,
        @Inject(PLATFORM_ID) private platformId: any) {
  }

    /** Starts IntersectionObserver */
  ngOnInit(): void {
    if (this.options) {
      this.observerOptions = this.options;
    }

    if (isPlatformBrowser(this.platformId)) {
      this.observer = new IntersectionObserver(this.handleIntersect.bind(this), this.observerOptions);
      this.observer.observe(this.element.nativeElement);
    }
  }

    /** Stops IntersectionObserver */
  ngOnDestroy(): void {
    if (isPlatformBrowser(this.platformId) && this.observer) {
      this.observer.disconnect();
    }
  }

    /**
     * Fires (nguiInview) event when this element is in viewport
     *  and fires (nguiOutview) event when this element is not in viewport
     */
  handleIntersect(entries): void {
    entries.forEach((entry: IntersectionObserverEntry) => {
      if (entry['isIntersecting']) {
        this.nguiInview.emit(entry);
      } else {
        this.nguiOutview.emit(entry);
      }
    });
  }
}

results matching ""

    No results matching ""