1
0
Fork 0
mirror of https://github.com/twbs/bootstrap.git synced 2022-11-09 12:25:43 -05:00
twbs--bootstrap/js/dist/scrollspy.js

317 lines
10 KiB
JavaScript
Raw Normal View History

2017-12-22 19:21:54 -05:00
function _extends() { _extends = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }
2017-09-30 17:28:03 -04:00
function _defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if ("value" in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } }
2017-09-06 00:05:12 -04:00
2017-09-30 17:28:03 -04:00
function _createClass(Constructor, protoProps, staticProps) { if (protoProps) _defineProperties(Constructor.prototype, protoProps); if (staticProps) _defineProperties(Constructor, staticProps); return Constructor; }
2015-05-11 15:05:35 -04:00
/**
* --------------------------------------------------------------------------
2017-12-28 12:16:39 -05:00
* Bootstrap (v4.0.0-beta.3): scrollspy.js
2015-05-11 15:05:35 -04:00
* Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
* --------------------------------------------------------------------------
*/
2017-10-25 15:31:55 -04:00
var ScrollSpy = function ($) {
2015-05-11 15:05:35 -04:00
/**
* ------------------------------------------------------------------------
* Constants
* ------------------------------------------------------------------------
*/
var NAME = 'scrollspy';
2017-12-28 12:16:39 -05:00
var VERSION = '4.0.0-beta.3';
2015-05-11 15:05:35 -04:00
var DATA_KEY = 'bs.scrollspy';
2017-09-30 17:28:03 -04:00
var EVENT_KEY = "." + DATA_KEY;
2015-05-13 15:48:34 -04:00
var DATA_API_KEY = '.data-api';
2015-05-11 15:05:35 -04:00
var JQUERY_NO_CONFLICT = $.fn[NAME];
var Default = {
offset: 10,
2015-05-13 16:43:56 -04:00
method: 'auto',
target: ''
2015-05-11 15:05:35 -04:00
};
2015-05-13 17:46:50 -04:00
var DefaultType = {
offset: 'number',
method: 'string',
target: '(string|element)'
};
2015-05-11 15:05:35 -04:00
var Event = {
2017-09-30 17:28:03 -04:00
ACTIVATE: "activate" + EVENT_KEY,
SCROLL: "scroll" + EVENT_KEY,
LOAD_DATA_API: "load" + EVENT_KEY + DATA_API_KEY
2015-05-11 15:05:35 -04:00
};
var ClassName = {
2015-08-18 23:33:57 -04:00
DROPDOWN_ITEM: 'dropdown-item',
2015-05-11 15:05:35 -04:00
DROPDOWN_MENU: 'dropdown-menu',
ACTIVE: 'active'
};
var Selector = {
DATA_SPY: '[data-spy="scroll"]',
ACTIVE: '.active',
2017-04-08 16:22:53 -04:00
NAV_LIST_GROUP: '.nav, .list-group',
2015-08-18 23:33:57 -04:00
NAV_LINKS: '.nav-link',
2017-09-30 17:28:03 -04:00
NAV_ITEMS: '.nav-item',
2017-04-08 16:22:53 -04:00
LIST_ITEMS: '.list-group-item',
DROPDOWN: '.dropdown',
DROPDOWN_ITEMS: '.dropdown-item',
DROPDOWN_TOGGLE: '.dropdown-toggle'
2015-05-11 15:05:35 -04:00
};
var OffsetMethod = {
OFFSET: 'offset',
POSITION: 'position'
2017-09-13 01:24:15 -04:00
/**
* ------------------------------------------------------------------------
* Class Definition
* ------------------------------------------------------------------------
*/
2015-05-11 15:05:35 -04:00
2017-09-13 01:24:15 -04:00
};
2017-09-30 17:28:03 -04:00
var ScrollSpy =
/*#__PURE__*/
function () {
2015-05-11 15:05:35 -04:00
function ScrollSpy(element, config) {
2016-11-01 00:14:23 -04:00
var _this = this;
2015-05-13 15:48:34 -04:00
this._element = element;
2015-05-11 15:05:35 -04:00
this._scrollElement = element.tagName === 'BODY' ? window : element;
2015-05-13 16:43:56 -04:00
this._config = this._getConfig(config);
2017-09-30 17:28:03 -04:00
this._selector = this._config.target + " " + Selector.NAV_LINKS + "," + (this._config.target + " " + Selector.LIST_ITEMS + ",") + (this._config.target + " " + Selector.DROPDOWN_ITEMS);
2015-05-11 15:05:35 -04:00
this._offsets = [];
this._targets = [];
this._activeTarget = null;
this._scrollHeight = 0;
2016-11-01 00:14:23 -04:00
$(this._scrollElement).on(Event.SCROLL, function (event) {
return _this._process(event);
});
2015-05-11 15:05:35 -04:00
this.refresh();
2017-09-30 17:28:03 -04:00
this._process();
} // getters
2015-08-13 00:12:03 -04:00
2015-05-11 15:05:35 -04:00
2017-09-30 17:28:03 -04:00
var _proto = ScrollSpy.prototype;
2015-05-11 15:05:35 -04:00
2017-09-30 17:28:03 -04:00
// public
_proto.refresh = function refresh() {
var _this2 = this;
2015-05-11 15:05:35 -04:00
2017-09-30 17:28:03 -04:00
var autoMethod = this._scrollElement !== this._scrollElement.window ? OffsetMethod.POSITION : OffsetMethod.OFFSET;
var offsetMethod = this._config.method === 'auto' ? autoMethod : this._config.method;
var offsetBase = offsetMethod === OffsetMethod.POSITION ? this._getScrollTop() : 0;
this._offsets = [];
this._targets = [];
this._scrollHeight = this._getScrollHeight();
var targets = $.makeArray($(this._selector));
targets.map(function (element) {
var target;
var targetSelector = Util.getSelectorFromElement(element);
if (targetSelector) {
target = $(targetSelector)[0];
}
2017-09-30 17:28:03 -04:00
if (target) {
var targetBCR = target.getBoundingClientRect();
2015-05-11 15:05:35 -04:00
2017-09-30 17:28:03 -04:00
if (targetBCR.width || targetBCR.height) {
// todo (fat): remove sketch reliance on jQuery position/offset
return [$(target)[offsetMethod]().top + offsetBase, targetSelector];
}
}
2015-05-11 15:05:35 -04:00
2017-09-30 17:28:03 -04:00
return null;
}).filter(function (item) {
return item;
}).sort(function (a, b) {
return a[0] - b[0];
}).forEach(function (item) {
_this2._offsets.push(item[0]);
2015-05-11 15:05:35 -04:00
2017-09-30 17:28:03 -04:00
_this2._targets.push(item[1]);
});
};
_proto.dispose = function dispose() {
$.removeData(this._element, DATA_KEY);
$(this._scrollElement).off(EVENT_KEY);
this._element = null;
this._scrollElement = null;
this._config = null;
this._selector = null;
this._offsets = null;
this._targets = null;
this._activeTarget = null;
this._scrollHeight = null;
}; // private
2015-05-11 15:05:35 -04:00
2017-09-30 17:28:03 -04:00
_proto._getConfig = function _getConfig(config) {
2017-12-22 19:21:54 -05:00
config = _extends({}, Default, config);
2015-05-11 15:05:35 -04:00
2017-09-30 17:28:03 -04:00
if (typeof config.target !== 'string') {
var id = $(config.target).attr('id');
2015-05-11 15:05:35 -04:00
2017-09-30 17:28:03 -04:00
if (!id) {
id = Util.getUID(NAME);
$(config.target).attr('id', id);
}
2015-05-11 15:05:35 -04:00
2017-09-30 17:28:03 -04:00
config.target = "#" + id;
2016-10-09 20:26:51 -04:00
}
2015-05-13 16:43:56 -04:00
2017-09-30 17:28:03 -04:00
Util.typeCheckConfig(NAME, config, DefaultType);
return config;
};
2016-10-09 20:26:51 -04:00
2017-09-30 17:28:03 -04:00
_proto._getScrollTop = function _getScrollTop() {
return this._scrollElement === window ? this._scrollElement.pageYOffset : this._scrollElement.scrollTop;
};
2016-01-09 03:40:51 -05:00
2017-09-30 17:28:03 -04:00
_proto._getScrollHeight = function _getScrollHeight() {
return this._scrollElement.scrollHeight || Math.max(document.body.scrollHeight, document.documentElement.scrollHeight);
};
2016-10-09 20:26:51 -04:00
2017-09-30 17:28:03 -04:00
_proto._getOffsetHeight = function _getOffsetHeight() {
return this._scrollElement === window ? window.innerHeight : this._scrollElement.getBoundingClientRect().height;
};
2015-05-11 15:05:35 -04:00
2017-09-30 17:28:03 -04:00
_proto._process = function _process() {
var scrollTop = this._getScrollTop() + this._config.offset;
2015-05-11 15:05:35 -04:00
2017-09-30 17:28:03 -04:00
var scrollHeight = this._getScrollHeight();
2015-05-11 15:05:35 -04:00
2017-09-30 17:28:03 -04:00
var maxScroll = this._config.offset + scrollHeight - this._getOffsetHeight();
2015-05-11 15:05:35 -04:00
2017-09-30 17:28:03 -04:00
if (this._scrollHeight !== scrollHeight) {
this.refresh();
}
2015-05-11 15:05:35 -04:00
2017-09-30 17:28:03 -04:00
if (scrollTop >= maxScroll) {
var target = this._targets[this._targets.length - 1];
if (this._activeTarget !== target) {
this._activate(target);
2017-09-06 00:05:12 -04:00
}
2017-09-30 17:28:03 -04:00
return;
2015-05-11 15:05:35 -04:00
}
2017-09-30 17:28:03 -04:00
if (this._activeTarget && scrollTop < this._offsets[0] && this._offsets[0] > 0) {
this._activeTarget = null;
2015-05-11 15:05:35 -04:00
2017-09-06 00:05:12 -04:00
this._clear();
2015-05-11 15:05:35 -04:00
2017-09-30 17:28:03 -04:00
return;
}
for (var i = this._offsets.length; i--;) {
var isActiveTarget = this._activeTarget !== this._targets[i] && scrollTop >= this._offsets[i] && (typeof this._offsets[i + 1] === 'undefined' || scrollTop < this._offsets[i + 1]);
2015-05-11 15:05:35 -04:00
2017-09-30 17:28:03 -04:00
if (isActiveTarget) {
this._activate(this._targets[i]);
}
2017-09-06 00:05:12 -04:00
}
2017-09-30 17:28:03 -04:00
};
_proto._activate = function _activate(target) {
this._activeTarget = target;
this._clear();
var queries = this._selector.split(','); // eslint-disable-next-line arrow-body-style
queries = queries.map(function (selector) {
return selector + "[data-target=\"" + target + "\"]," + (selector + "[href=\"" + target + "\"]");
});
var $link = $(queries.join(','));
if ($link.hasClass(ClassName.DROPDOWN_ITEM)) {
$link.closest(Selector.DROPDOWN).find(Selector.DROPDOWN_TOGGLE).addClass(ClassName.ACTIVE);
$link.addClass(ClassName.ACTIVE);
} else {
// Set triggered link as active
$link.addClass(ClassName.ACTIVE); // Set triggered links parents as active
// With both <ul> and <nav> markup a parent is the previous sibling of any nav ancestor
$link.parents(Selector.NAV_LIST_GROUP).prev(Selector.NAV_LINKS + ", " + Selector.LIST_ITEMS).addClass(ClassName.ACTIVE); // Handle special case when .nav-link is inside .nav-item
$link.parents(Selector.NAV_LIST_GROUP).prev(Selector.NAV_ITEMS).children(Selector.NAV_LINKS).addClass(ClassName.ACTIVE);
2017-09-06 00:05:12 -04:00
}
2015-05-11 15:05:35 -04:00
2017-09-30 17:28:03 -04:00
$(this._scrollElement).trigger(Event.ACTIVATE, {
relatedTarget: target
});
};
2016-10-09 20:26:51 -04:00
2017-09-30 17:28:03 -04:00
_proto._clear = function _clear() {
$(this._selector).filter(Selector.ACTIVE).removeClass(ClassName.ACTIVE);
}; // static
2016-10-09 20:26:51 -04:00
2017-09-30 17:28:03 -04:00
ScrollSpy._jQueryInterface = function _jQueryInterface(config) {
return this.each(function () {
var data = $(this).data(DATA_KEY);
var _config = typeof config === 'object' && config;
if (!data) {
data = new ScrollSpy(this, _config);
$(this).data(DATA_KEY, data);
}
if (typeof config === 'string') {
if (typeof data[config] === 'undefined') {
throw new Error("No method named \"" + config + "\"");
2017-09-06 00:05:12 -04:00
}
2017-09-30 17:28:03 -04:00
data[config]();
}
});
};
_createClass(ScrollSpy, null, [{
key: "VERSION",
2015-08-13 00:12:03 -04:00
get: function get() {
return VERSION;
}
}, {
2017-09-30 17:28:03 -04:00
key: "Default",
2015-08-13 00:12:03 -04:00
get: function get() {
return Default;
}
2015-05-11 15:05:35 -04:00
}]);
return ScrollSpy;
2016-10-09 20:26:51 -04:00
}();
/**
* ------------------------------------------------------------------------
* Data Api implementation
* ------------------------------------------------------------------------
*/
2015-05-11 15:05:35 -04:00
2017-09-30 17:28:03 -04:00
2015-05-13 15:48:34 -04:00
$(window).on(Event.LOAD_DATA_API, function () {
2015-05-11 15:05:35 -04:00
var scrollSpys = $.makeArray($(Selector.DATA_SPY));
for (var i = scrollSpys.length; i--;) {
var $spy = $(scrollSpys[i]);
2017-09-30 17:28:03 -04:00
2015-05-11 15:05:35 -04:00
ScrollSpy._jQueryInterface.call($spy, $spy.data());
}
2017-07-02 13:40:27 -04:00
});
2015-05-11 15:05:35 -04:00
/**
* ------------------------------------------------------------------------
* jQuery
* ------------------------------------------------------------------------
*/
2017-07-02 13:40:27 -04:00
$.fn[NAME] = ScrollSpy._jQueryInterface;
2015-05-11 15:05:35 -04:00
$.fn[NAME].Constructor = ScrollSpy;
2017-09-30 17:28:03 -04:00
2015-05-11 15:05:35 -04:00
$.fn[NAME].noConflict = function () {
$.fn[NAME] = JQUERY_NO_CONFLICT;
return ScrollSpy._jQueryInterface;
};
return ScrollSpy;
2017-10-15 18:51:44 -04:00
}($);
2017-04-22 02:58:09 -04:00
//# sourceMappingURL=scrollspy.js.map