UNPKG

@nebular/theme

Version:
108 lines 4.3 kB
import { __decorate, __metadata } from "tslib"; import { Directive, ContentChildren, QueryList, Input, ElementRef, Output, EventEmitter, } from '@angular/core'; import { takeUntil } from 'rxjs/operators'; import { Subject } from 'rxjs'; import 'intersection-observer'; import { NbListItemComponent } from './list.component'; /** * List pager directive * * Directive allows you to determine page of currently viewing items. * */ var NbListPageTrackerDirective = /** @class */ (function () { function NbListPageTrackerDirective() { var _this = this; this.destroy$ = new Subject(); /** * Page to start counting with. */ this.startPage = 1; /** * Emits when another page become visible. */ this.pageChange = new EventEmitter(); this.observer = new IntersectionObserver(function (entries) { return _this.checkForPageChange(entries); }, { threshold: 0.5 }); } NbListPageTrackerDirective.prototype.ngAfterViewInit = function () { var _this = this; if (this.listItems && this.listItems.length) { this.observeItems(); } this.listItems.changes .pipe(takeUntil(this.destroy$)) .subscribe(function () { return _this.observeItems(); }); }; NbListPageTrackerDirective.prototype.ngOnDestroy = function () { this.observer.disconnect && this.observer.disconnect(); }; NbListPageTrackerDirective.prototype.observeItems = function () { var _this = this; this.listItems.forEach(function (i) { return _this.observer.observe(i.nativeElement); }); }; NbListPageTrackerDirective.prototype.checkForPageChange = function (entries) { var mostVisiblePage = this.findMostVisiblePage(entries); if (mostVisiblePage && this.currentPage !== mostVisiblePage) { this.currentPage = mostVisiblePage; this.pageChange.emit(this.currentPage); } }; NbListPageTrackerDirective.prototype.findMostVisiblePage = function (entries) { var intersectionRatioByPage = new Map(); for (var _i = 0, entries_1 = entries; _i < entries_1.length; _i++) { var entry = entries_1[_i]; if (entry.intersectionRatio < 0.5) { continue; } var elementIndex = this.elementIndex(entry.target); if (elementIndex === -1) { continue; } var page = this.startPage + Math.floor(elementIndex / this.pageSize); var ratio = entry.intersectionRatio; if (intersectionRatioByPage.has(page)) { ratio += intersectionRatioByPage.get(page); } intersectionRatioByPage.set(page, ratio); } var maxRatio = 0; var mostVisiblePage; intersectionRatioByPage.forEach(function (ratio, page) { if (ratio > maxRatio) { maxRatio = ratio; mostVisiblePage = page; } }); return mostVisiblePage; }; NbListPageTrackerDirective.prototype.elementIndex = function (element) { return element.parentElement && element.parentElement.children ? Array.from(element.parentElement.children).indexOf(element) : -1; }; __decorate([ Input(), __metadata("design:type", Number) ], NbListPageTrackerDirective.prototype, "pageSize", void 0); __decorate([ Input(), __metadata("design:type", Number) ], NbListPageTrackerDirective.prototype, "startPage", void 0); __decorate([ Output(), __metadata("design:type", Object) ], NbListPageTrackerDirective.prototype, "pageChange", void 0); __decorate([ ContentChildren(NbListItemComponent, { read: ElementRef }), __metadata("design:type", QueryList) ], NbListPageTrackerDirective.prototype, "listItems", void 0); NbListPageTrackerDirective = __decorate([ Directive({ selector: '[nbListPageTracker]', }), __metadata("design:paramtypes", []) ], NbListPageTrackerDirective); return NbListPageTrackerDirective; }()); export { NbListPageTrackerDirective }; //# sourceMappingURL=list-page-tracker.directive.js.map