UNPKG

custom-bootstrap-vue

Version:

Custom version of bootstrap-vue created for providing specific theme to a particular project

351 lines (300 loc) 11.4 kB
function ownKeys(object, enumerableOnly) { var keys = Object.keys(object); if (Object.getOwnPropertySymbols) { var symbols = Object.getOwnPropertySymbols(object); if (enumerableOnly) symbols = symbols.filter(function (sym) { return Object.getOwnPropertyDescriptor(object, sym).enumerable; }); keys.push.apply(keys, symbols); } return keys; } function _objectSpread(target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i] != null ? arguments[i] : {}; if (i % 2) { ownKeys(Object(source), true).forEach(function (key) { _defineProperty(target, key, source[key]); }); } else if (Object.getOwnPropertyDescriptors) { Object.defineProperties(target, Object.getOwnPropertyDescriptors(source)); } else { ownKeys(Object(source)).forEach(function (key) { Object.defineProperty(target, key, Object.getOwnPropertyDescriptor(source, key)); }); } } return target; } function _defineProperty(obj, key, value) { if (key in obj) { Object.defineProperty(obj, key, { value: value, enumerable: true, configurable: true, writable: true }); } else { obj[key] = value; } return obj; } import Vue from '../../utils/vue'; import looseEqual from '../../utils/loose-equal'; import { BvEvent } from '../../utils/bv-event.class'; import { getComponentConfig } from '../../utils/config'; import { attemptBlur, requestAF } from '../../utils/dom'; import { isBrowser } from '../../utils/env'; import { isArray, isUndefined, isFunction, isObject } from '../../utils/inspect'; import { mathMax } from '../../utils/math'; import { toInteger } from '../../utils/number'; import { omit } from '../../utils/object'; import { pluckProps } from '../../utils/props'; import { computeHref, parseQuery } from '../../utils/router'; import { toString } from '../../utils/string'; import { warn } from '../../utils/warn'; import paginationMixin from '../../mixins/pagination'; import { props as BLinkProps } from '../link/link'; // --- Constants --- var NAME = 'BPaginationNav'; // --- Props --- var _linkProps = omit(BLinkProps, ['event', 'routerTag']); var props = _objectSpread({ size: { type: String, default: function _default() { return getComponentConfig(NAME, 'size'); } }, numberOfPages: { type: [Number, String], default: 1, validator: function validator(value) /* istanbul ignore next */ { var number = toInteger(value, 0); if (number < 1) { warn('Prop "number-of-pages" must be a number greater than "0"', NAME); return false; } return true; } }, baseUrl: { type: String, default: '/' }, useRouter: { type: Boolean, default: false }, linkGen: { type: Function // default: null }, pageGen: { type: Function // default: null }, pages: { // Optional array of page links type: Array // default: null }, noPageDetect: { // Disable auto page number detection if true type: Boolean, default: false } }, _linkProps); // --- Utility methods --- // Sanitize the provided number of pages (converting to a number) export var sanitizeNumberOfPages = function sanitizeNumberOfPages(value) { return mathMax(toInteger(value, 0), 1); }; // --- Main component --- // The render function is brought in via the pagination mixin // @vue/component export var BPaginationNav = /*#__PURE__*/Vue.extend({ name: NAME, mixins: [paginationMixin], props: props, computed: { // Used by render function to trigger wrapping in '<nav>' element isNav: function isNav() { return true; }, computedValue: function computedValue() { // Returns the value prop as a number or `null` if undefined or < 1 var value = toInteger(this.value, 0); return value < 1 ? null : value; } }, watch: { numberOfPages: function numberOfPages() { var _this = this; this.$nextTick(function () { _this.setNumberOfPages(); }); }, pages: function pages() { var _this2 = this; this.$nextTick(function () { _this2.setNumberOfPages(); }); } }, created: function created() { this.setNumberOfPages(); }, mounted: function mounted() { var _this3 = this; if (this.$router) { // We only add the watcher if vue router is detected this.$watch('$route', function () { _this3.$nextTick(function () { requestAF(function () { _this3.guessCurrentPage(); }); }); }); } }, methods: { setNumberOfPages: function setNumberOfPages() { var _this4 = this; if (isArray(this.pages) && this.pages.length > 0) { this.localNumberOfPages = this.pages.length; } else { this.localNumberOfPages = sanitizeNumberOfPages(this.numberOfPages); } this.$nextTick(function () { _this4.guessCurrentPage(); }); }, onClick: function onClick(evt, pageNumber) { var _this5 = this; // Dont do anything if clicking the current active page if (pageNumber === this.currentPage) { return; } var target = evt.currentTarget || evt.target; // Emit a user-cancelable `page-click` event var clickEvt = new BvEvent('page-click', { cancelable: true, vueTarget: this, target: target }); this.$emit(clickEvt.type, clickEvt, pageNumber); if (clickEvt.defaultPrevented) { return; } // Update the `v-model` // Done in in requestAF() to allow browser to complete the // native browser click handling of a link requestAF(function () { _this5.currentPage = pageNumber; _this5.$emit('change', pageNumber); }); // Emulate native link click page reloading behaviour by blurring the // paginator and returning focus to the document // Done in a `nextTick()` to ensure rendering complete this.$nextTick(function () { attemptBlur(target); }); }, getPageInfo: function getPageInfo(pageNum) { if (!isArray(this.pages) || this.pages.length === 0 || isUndefined(this.pages[pageNum - 1])) { var link = "".concat(this.baseUrl).concat(pageNum); return { link: this.useRouter ? { path: link } : link, text: toString(pageNum) }; } var info = this.pages[pageNum - 1]; if (isObject(info)) { var _link = info.link; return { // Normalize link for router use link: isObject(_link) ? _link : this.useRouter ? { path: _link } : _link, // Make sure text has a value text: toString(info.text || pageNum) }; } else { return { link: toString(info), text: toString(pageNum) }; } }, makePage: function makePage(pageNum) { var info = this.getPageInfo(pageNum); if (this.pageGen && isFunction(this.pageGen)) { return this.pageGen(pageNum, info); } return info.text; }, makeLink: function makeLink(pageNum) { var info = this.getPageInfo(pageNum); if (this.linkGen && isFunction(this.linkGen)) { return this.linkGen(pageNum, info); } return info.link; }, linkProps: function linkProps(pageNum) { var props = pluckProps(_linkProps, this); var link = this.makeLink(pageNum); if (this.useRouter || isObject(link)) { props.to = link; } else { props.href = link; } return props; }, resolveLink: function resolveLink() { var to = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : ''; // Given a to (or href string), convert to normalized route-like structure // Works only client side!! var link; try { // Convert the `to` to a HREF via a temporary `a` tag link = document.createElement('a'); link.href = computeHref({ to: to }, 'a', '/', '/'); // We need to add the anchor to the document to make sure the // `pathname` is correctly detected in any browser (i.e. IE) document.body.appendChild(link); // Once href is assigned, the link will be normalized to the full URL bits var _link2 = link, pathname = _link2.pathname, hash = _link2.hash, search = _link2.search; // Remove link from document document.body.removeChild(link); // Return the location in a route-like object return { path: pathname, hash: hash, query: parseQuery(search) }; } catch (e) { /* istanbul ignore next */ try { link && link.parentNode && link.parentNode.removeChild(link); } catch (_unused) {} /* istanbul ignore next */ return {}; } }, resolveRoute: function resolveRoute() { var to = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : ''; // Given a to (or href string), convert to normalized route location structure // works only when router available!! try { var route = this.$router.resolve(to, this.$route).route; return { path: route.path, hash: route.hash, query: route.query }; } catch (e) { /* istanbul ignore next */ return {}; } }, guessCurrentPage: function guessCurrentPage() { var guess = this.computedValue; var $router = this.$router; var $route = this.$route; // This section only occurs if we are client side, or server-side with $router /* istanbul ignore else */ if (!this.noPageDetect && !guess && (isBrowser || !isBrowser && $router)) { // Current route (if router available) var currRoute = $router && $route ? { path: $route.path, hash: $route.hash, query: $route.query } : {}; // Current page full HREF (if client side). Can't be done as a computed prop! var loc = isBrowser ? window.location || document.location : null; var currLink = loc ? { path: loc.pathname, hash: loc.hash, query: parseQuery(loc.search) } : /* istanbul ignore next */ {}; // Loop through the possible pages looking for a match until found for (var page = 1; !guess && page <= this.localNumberOfPages; page++) { var to = this.makeLink(page); if ($router && (isObject(to) || this.useRouter)) { // Resolve the page via the $router guess = looseEqual(this.resolveRoute(to), currRoute) ? page : null; } else if (isBrowser) { // If no $router available (or !this.useRouter when `to` is a string) // we compare using parsed URIs guess = looseEqual(this.resolveLink(to), currLink) ? page : null; } else { // probably SSR, but no $router so we can't guess, so lets break out of // the loop early /* istanbul ignore next */ guess = -1; } } } // We set currentPage to 0 to trigger an $emit('input', null) // As the default for this.currentPage is -1 when no value is specified // And valid page numbers are greater than 0 this.currentPage = guess > 0 ? guess : 0; } } });