UNPKG

primeng

Version:

[![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](https://opensource.org/licenses/MIT) [![npm version](https://badge.fury.io/js/primeng.svg)](https://badge.fury.io/js/primeng) [![npm downloads](https://img.shields.io/npm/dm/primeng.sv

257 lines (249 loc) 16.8 kB
(function (global, factory) { typeof exports === 'object' && typeof module !== 'undefined' ? factory(exports, require('@angular/core'), require('@angular/common'), require('primeng/dom'), require('primeng/api')) : typeof define === 'function' && define.amd ? define('primeng/scrollpanel', ['exports', '@angular/core', '@angular/common', 'primeng/dom', 'primeng/api'], factory) : (global = typeof globalThis !== 'undefined' ? globalThis : global || self, factory((global.primeng = global.primeng || {}, global.primeng.scrollpanel = {}), global.ng.core, global.ng.common, global.primeng.dom, global.primeng.api)); }(this, (function (exports, i0, i1, dom, api) { 'use strict'; function _interopNamespace(e) { if (e && e.__esModule) return e; var n = Object.create(null); if (e) { Object.keys(e).forEach(function (k) { if (k !== 'default') { var d = Object.getOwnPropertyDescriptor(e, k); Object.defineProperty(n, k, d.get ? d : { enumerable: true, get: function () { return e[k]; } }); } }); } n['default'] = e; return Object.freeze(n); } var i0__namespace = /*#__PURE__*/_interopNamespace(i0); var i1__namespace = /*#__PURE__*/_interopNamespace(i1); var ScrollPanel = /** @class */ (function () { function ScrollPanel(el, zone, cd) { this.el = el; this.zone = zone; this.cd = cd; this.timeoutFrame = function (fn) { return setTimeout(fn, 0); }; } ScrollPanel.prototype.ngAfterViewInit = function () { var _this = this; this.zone.runOutsideAngular(function () { _this.moveBar(); _this.moveBar = _this.moveBar.bind(_this); _this.onXBarMouseDown = _this.onXBarMouseDown.bind(_this); _this.onYBarMouseDown = _this.onYBarMouseDown.bind(_this); _this.onDocumentMouseMove = _this.onDocumentMouseMove.bind(_this); _this.onDocumentMouseUp = _this.onDocumentMouseUp.bind(_this); window.addEventListener('resize', _this.moveBar); _this.contentViewChild.nativeElement.addEventListener('scroll', _this.moveBar); _this.contentViewChild.nativeElement.addEventListener('mouseenter', _this.moveBar); _this.xBarViewChild.nativeElement.addEventListener('mousedown', _this.onXBarMouseDown); _this.yBarViewChild.nativeElement.addEventListener('mousedown', _this.onYBarMouseDown); _this.calculateContainerHeight(); _this.initialized = true; }); }; ScrollPanel.prototype.ngAfterContentInit = function () { var _this = this; this.templates.forEach(function (item) { switch (item.getType()) { case 'content': _this.contentTemplate = item.template; break; default: _this.contentTemplate = item.template; break; } }); }; ScrollPanel.prototype.calculateContainerHeight = function () { var container = this.containerViewChild.nativeElement; var content = this.contentViewChild.nativeElement; var xBar = this.xBarViewChild.nativeElement; var containerStyles = getComputedStyle(container), xBarStyles = getComputedStyle(xBar), pureContainerHeight = dom.DomHandler.getHeight(container) - parseInt(xBarStyles['height'], 10); if (containerStyles['max-height'] != "none" && pureContainerHeight == 0) { if (content.offsetHeight + parseInt(xBarStyles['height'], 10) > parseInt(containerStyles['max-height'], 10)) { container.style.height = containerStyles['max-height']; } else { container.style.height = content.offsetHeight + parseFloat(containerStyles.paddingTop) + parseFloat(containerStyles.paddingBottom) + parseFloat(containerStyles.borderTopWidth) + parseFloat(containerStyles.borderBottomWidth) + "px"; } } }; ScrollPanel.prototype.moveBar = function () { var _this = this; var container = this.containerViewChild.nativeElement; var content = this.contentViewChild.nativeElement; /* horizontal scroll */ var xBar = this.xBarViewChild.nativeElement; var totalWidth = content.scrollWidth; var ownWidth = content.clientWidth; var bottom = (container.clientHeight - xBar.clientHeight) * -1; this.scrollXRatio = ownWidth / totalWidth; /* vertical scroll */ var yBar = this.yBarViewChild.nativeElement; var totalHeight = content.scrollHeight; var ownHeight = content.clientHeight; var right = (container.clientWidth - yBar.clientWidth) * -1; this.scrollYRatio = ownHeight / totalHeight; this.requestAnimationFrame(function () { if (_this.scrollXRatio >= 1) { dom.DomHandler.addClass(xBar, 'p-scrollpanel-hidden'); } else { dom.DomHandler.removeClass(xBar, 'p-scrollpanel-hidden'); var xBarWidth = Math.max(_this.scrollXRatio * 100, 10); var xBarLeft = content.scrollLeft * (100 - xBarWidth) / (totalWidth - ownWidth); xBar.style.cssText = 'width:' + xBarWidth + '%; left:' + xBarLeft + '%;bottom:' + bottom + 'px;'; } if (_this.scrollYRatio >= 1) { dom.DomHandler.addClass(yBar, 'p-scrollpanel-hidden'); } else { dom.DomHandler.removeClass(yBar, 'p-scrollpanel-hidden'); var yBarHeight = Math.max(_this.scrollYRatio * 100, 10); var yBarTop = content.scrollTop * (100 - yBarHeight) / (totalHeight - ownHeight); yBar.style.cssText = 'height:' + yBarHeight + '%; top: calc(' + yBarTop + '% - ' + xBar.clientHeight + 'px);right:' + right + 'px;'; } }); this.cd.markForCheck(); }; ScrollPanel.prototype.onYBarMouseDown = function (e) { this.isYBarClicked = true; this.lastPageY = e.pageY; dom.DomHandler.addClass(this.yBarViewChild.nativeElement, 'p-scrollpanel-grabbed'); dom.DomHandler.addClass(document.body, 'p-scrollpanel-grabbed'); document.addEventListener('mousemove', this.onDocumentMouseMove); document.addEventListener('mouseup', this.onDocumentMouseUp); e.preventDefault(); }; ScrollPanel.prototype.onXBarMouseDown = function (e) { this.isXBarClicked = true; this.lastPageX = e.pageX; dom.DomHandler.addClass(this.xBarViewChild.nativeElement, 'p-scrollpanel-grabbed'); dom.DomHandler.addClass(document.body, 'p-scrollpanel-grabbed'); document.addEventListener('mousemove', this.onDocumentMouseMove); document.addEventListener('mouseup', this.onDocumentMouseUp); e.preventDefault(); }; ScrollPanel.prototype.onDocumentMouseMove = function (e) { if (this.isXBarClicked) { this.onMouseMoveForXBar(e); } else if (this.isYBarClicked) { this.onMouseMoveForYBar(e); } else { this.onMouseMoveForXBar(e); this.onMouseMoveForYBar(e); } }; ScrollPanel.prototype.onMouseMoveForXBar = function (e) { var _this = this; var deltaX = e.pageX - this.lastPageX; this.lastPageX = e.pageX; this.requestAnimationFrame(function () { _this.contentViewChild.nativeElement.scrollLeft += deltaX / _this.scrollXRatio; }); }; ScrollPanel.prototype.onMouseMoveForYBar = function (e) { var _this = this; var deltaY = e.pageY - this.lastPageY; this.lastPageY = e.pageY; this.requestAnimationFrame(function () { _this.contentViewChild.nativeElement.scrollTop += deltaY / _this.scrollYRatio; }); }; ScrollPanel.prototype.scrollTop = function (scrollTop) { var scrollableHeight = this.contentViewChild.nativeElement.scrollHeight - this.contentViewChild.nativeElement.clientHeight; scrollTop = scrollTop > scrollableHeight ? scrollableHeight : scrollTop > 0 ? scrollTop : 0; this.contentViewChild.nativeElement.scrollTop = scrollTop; }; ScrollPanel.prototype.onDocumentMouseUp = function (e) { dom.DomHandler.removeClass(this.yBarViewChild.nativeElement, 'p-scrollpanel-grabbed'); dom.DomHandler.removeClass(this.xBarViewChild.nativeElement, 'p-scrollpanel-grabbed'); dom.DomHandler.removeClass(document.body, 'p-scrollpanel-grabbed'); document.removeEventListener('mousemove', this.onDocumentMouseMove); document.removeEventListener('mouseup', this.onDocumentMouseUp); this.isXBarClicked = false; this.isYBarClicked = false; }; ScrollPanel.prototype.requestAnimationFrame = function (f) { var frame = window.requestAnimationFrame || this.timeoutFrame; frame(f); }; ScrollPanel.prototype.ngOnDestroy = function () { if (this.initialized) { window.removeEventListener('resize', this.moveBar); this.contentViewChild.nativeElement.removeEventListener('scroll', this.moveBar); this.contentViewChild.nativeElement.removeEventListener('mouseenter', this.moveBar); this.xBarViewChild.nativeElement.removeEventListener('mousedown', this.onXBarMouseDown); this.yBarViewChild.nativeElement.removeEventListener('mousedown', this.onYBarMouseDown); } }; ScrollPanel.prototype.refresh = function () { this.moveBar(); }; return ScrollPanel; }()); ScrollPanel.ɵfac = i0__namespace.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.0.4", ngImport: i0__namespace, type: ScrollPanel, deps: [{ token: i0__namespace.ElementRef }, { token: i0__namespace.NgZone }, { token: i0__namespace.ChangeDetectorRef }], target: i0__namespace.ɵɵFactoryTarget.Component }); ScrollPanel.ɵcmp = i0__namespace.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "12.0.4", type: ScrollPanel, selector: "p-scrollPanel", inputs: { style: "style", styleClass: "styleClass" }, queries: [{ propertyName: "templates", predicate: api.PrimeTemplate }], viewQueries: [{ propertyName: "containerViewChild", first: true, predicate: ["container"], descendants: true }, { propertyName: "contentViewChild", first: true, predicate: ["content"], descendants: true }, { propertyName: "xBarViewChild", first: true, predicate: ["xBar"], descendants: true }, { propertyName: "yBarViewChild", first: true, predicate: ["yBar"], descendants: true }], ngImport: i0__namespace, template: "\n <div #container [ngClass]=\"'p-scrollpanel p-component'\" [ngStyle]=\"style\" [class]=\"styleClass\">\n <div class=\"p-scrollpanel-wrapper\">\n <div #content class=\"p-scrollpanel-content\">\n <ng-content></ng-content>\n <ng-container *ngTemplateOutlet=\"contentTemplate\"></ng-container>\n </div>\n </div>\n <div #xBar class=\"p-scrollpanel-bar p-scrollpanel-bar-x\"></div>\n <div #yBar class=\"p-scrollpanel-bar p-scrollpanel-bar-y\"></div> \n </div>\n ", isInline: true, styles: [".p-scrollpanel-wrapper{overflow:hidden;width:100%;height:100%;position:relative;z-index:1;float:left}.p-scrollpanel-content{height:calc(100% + 18px);width:calc(100% + 18px);padding:0 18px 18px 0;position:relative;overflow:auto;box-sizing:border-box}.p-scrollpanel-bar{position:relative;background:#c1c1c1;border-radius:3px;z-index:2;cursor:pointer;opacity:0;transition:opacity .25s linear}.p-scrollpanel-bar-y{width:9px;top:0}.p-scrollpanel-bar-x{height:9px;bottom:0}.p-scrollpanel-hidden{visibility:hidden}.p-scrollpanel:active .p-scrollpanel-bar,.p-scrollpanel:hover .p-scrollpanel-bar{opacity:1}.p-scrollpanel-grabbed{-webkit-user-select:none;-ms-user-select:none;user-select:none}"], directives: [{ type: i1__namespace.NgClass, selector: "[ngClass]", inputs: ["class", "ngClass"] }, { type: i1__namespace.NgStyle, selector: "[ngStyle]", inputs: ["ngStyle"] }, { type: i1__namespace.NgTemplateOutlet, selector: "[ngTemplateOutlet]", inputs: ["ngTemplateOutletContext", "ngTemplateOutlet"] }], changeDetection: i0__namespace.ChangeDetectionStrategy.OnPush, encapsulation: i0__namespace.ViewEncapsulation.None }); i0__namespace.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.0.4", ngImport: i0__namespace, type: ScrollPanel, decorators: [{ type: i0.Component, args: [{ selector: 'p-scrollPanel', template: "\n <div #container [ngClass]=\"'p-scrollpanel p-component'\" [ngStyle]=\"style\" [class]=\"styleClass\">\n <div class=\"p-scrollpanel-wrapper\">\n <div #content class=\"p-scrollpanel-content\">\n <ng-content></ng-content>\n <ng-container *ngTemplateOutlet=\"contentTemplate\"></ng-container>\n </div>\n </div>\n <div #xBar class=\"p-scrollpanel-bar p-scrollpanel-bar-x\"></div>\n <div #yBar class=\"p-scrollpanel-bar p-scrollpanel-bar-y\"></div> \n </div>\n ", changeDetection: i0.ChangeDetectionStrategy.OnPush, encapsulation: i0.ViewEncapsulation.None, styleUrls: ['./scrollpanel.css'] }] }], ctorParameters: function () { return [{ type: i0__namespace.ElementRef }, { type: i0__namespace.NgZone }, { type: i0__namespace.ChangeDetectorRef }]; }, propDecorators: { style: [{ type: i0.Input }], styleClass: [{ type: i0.Input }], containerViewChild: [{ type: i0.ViewChild, args: ['container'] }], contentViewChild: [{ type: i0.ViewChild, args: ['content'] }], xBarViewChild: [{ type: i0.ViewChild, args: ['xBar'] }], yBarViewChild: [{ type: i0.ViewChild, args: ['yBar'] }], templates: [{ type: i0.ContentChildren, args: [api.PrimeTemplate] }] } }); var ScrollPanelModule = /** @class */ (function () { function ScrollPanelModule() { } return ScrollPanelModule; }()); ScrollPanelModule.ɵfac = i0__namespace.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.0.4", ngImport: i0__namespace, type: ScrollPanelModule, deps: [], target: i0__namespace.ɵɵFactoryTarget.NgModule }); ScrollPanelModule.ɵmod = i0__namespace.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version: "12.0.4", ngImport: i0__namespace, type: ScrollPanelModule, declarations: [ScrollPanel], imports: [i1.CommonModule], exports: [ScrollPanel] }); ScrollPanelModule.ɵinj = i0__namespace.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "12.0.4", ngImport: i0__namespace, type: ScrollPanelModule, imports: [[i1.CommonModule]] }); i0__namespace.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.0.4", ngImport: i0__namespace, type: ScrollPanelModule, decorators: [{ type: i0.NgModule, args: [{ imports: [i1.CommonModule], exports: [ScrollPanel], declarations: [ScrollPanel] }] }] }); /** * Generated bundle index. Do not edit. */ exports.ScrollPanel = ScrollPanel; exports.ScrollPanelModule = ScrollPanelModule; Object.defineProperty(exports, '__esModule', { value: true }); }))); //# sourceMappingURL=primeng-scrollpanel.umd.js.map