12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034 |
- (function (global, factory) {
- typeof exports === 'object' && typeof module !== 'undefined' ? module.exports = factory() :
- typeof define === 'function' && define.amd ? define(factory) :
- (global.ResizeObserver = factory());
- }(this, (function () { 'use strict';
- var MapShim = (function () {
- if (typeof Map !== 'undefined') {
- return Map;
- }
-
- function getIndex(arr, key) {
- var result = -1;
- arr.some(function (entry, index) {
- if (entry[0] === key) {
- result = index;
- return true;
- }
- return false;
- });
- return result;
- }
- return (function () {
- function anonymous() {
- this.__entries__ = [];
- }
- var prototypeAccessors = { size: { configurable: true } };
-
- prototypeAccessors.size.get = function () {
- return this.__entries__.length;
- };
-
- anonymous.prototype.get = function (key) {
- var index = getIndex(this.__entries__, key);
- var entry = this.__entries__[index];
- return entry && entry[1];
- };
-
- anonymous.prototype.set = function (key, value) {
- var index = getIndex(this.__entries__, key);
- if (~index) {
- this.__entries__[index][1] = value;
- } else {
- this.__entries__.push([key, value]);
- }
- };
-
- anonymous.prototype.delete = function (key) {
- var entries = this.__entries__;
- var index = getIndex(entries, key);
- if (~index) {
- entries.splice(index, 1);
- }
- };
-
- anonymous.prototype.has = function (key) {
- return !!~getIndex(this.__entries__, key);
- };
-
- anonymous.prototype.clear = function () {
- this.__entries__.splice(0);
- };
-
- anonymous.prototype.forEach = function (callback, ctx) {
- var this$1 = this;
- if ( ctx === void 0 ) ctx = null;
- for (var i = 0, list = this$1.__entries__; i < list.length; i += 1) {
- var entry = list[i];
- callback.call(ctx, entry[1], entry[0]);
- }
- };
- Object.defineProperties( anonymous.prototype, prototypeAccessors );
- return anonymous;
- }());
- })();
- var isBrowser = typeof window !== 'undefined' && typeof document !== 'undefined' && window.document === document;
- var global$1 = (function () {
- if (typeof global !== 'undefined' && global.Math === Math) {
- return global;
- }
- if (typeof self !== 'undefined' && self.Math === Math) {
- return self;
- }
- if (typeof window !== 'undefined' && window.Math === Math) {
- return window;
- }
-
- return Function('return this')();
- })();
- var requestAnimationFrame$1 = (function () {
- if (typeof requestAnimationFrame === 'function') {
-
-
-
- return requestAnimationFrame.bind(global$1);
- }
- return function (callback) { return setTimeout(function () { return callback(Date.now()); }, 1000 / 60); };
- })();
- var trailingTimeout = 2;
- var throttle = function (callback, delay) {
- var leadingCall = false,
- trailingCall = false,
- lastCallTime = 0;
-
- function resolvePending() {
- if (leadingCall) {
- leadingCall = false;
- callback();
- }
- if (trailingCall) {
- proxy();
- }
- }
-
- function timeoutCallback() {
- requestAnimationFrame$1(resolvePending);
- }
-
- function proxy() {
- var timeStamp = Date.now();
- if (leadingCall) {
-
- if (timeStamp - lastCallTime < trailingTimeout) {
- return;
- }
-
-
-
-
- trailingCall = true;
- } else {
- leadingCall = true;
- trailingCall = false;
- setTimeout(timeoutCallback, delay);
- }
- lastCallTime = timeStamp;
- }
- return proxy;
- };
- var REFRESH_DELAY = 20;
- var transitionKeys = ['top', 'right', 'bottom', 'left', 'width', 'height', 'size', 'weight'];
- var mutationObserverSupported = typeof MutationObserver !== 'undefined';
- var ResizeObserverController = function() {
- this.connected_ = false;
- this.mutationEventsAdded_ = false;
- this.mutationsObserver_ = null;
- this.observers_ = [];
- this.onTransitionEnd_ = this.onTransitionEnd_.bind(this);
- this.refresh = throttle(this.refresh.bind(this), REFRESH_DELAY);
- };
- ResizeObserverController.prototype.addObserver = function (observer) {
- if (!~this.observers_.indexOf(observer)) {
- this.observers_.push(observer);
- }
-
- if (!this.connected_) {
- this.connect_();
- }
- };
- ResizeObserverController.prototype.removeObserver = function (observer) {
- var observers = this.observers_;
- var index = observers.indexOf(observer);
-
- if (~index) {
- observers.splice(index, 1);
- }
-
- if (!observers.length && this.connected_) {
- this.disconnect_();
- }
- };
- ResizeObserverController.prototype.refresh = function () {
- var changesDetected = this.updateObservers_();
-
-
- if (changesDetected) {
- this.refresh();
- }
- };
- ResizeObserverController.prototype.updateObservers_ = function () {
-
- var activeObservers = this.observers_.filter(function (observer) {
- return observer.gatherActive(), observer.hasActive();
- });
-
-
-
-
-
- activeObservers.forEach(function (observer) { return observer.broadcastActive(); });
- return activeObservers.length > 0;
- };
- ResizeObserverController.prototype.connect_ = function () {
-
-
- if (!isBrowser || this.connected_) {
- return;
- }
-
-
-
- document.addEventListener('transitionend', this.onTransitionEnd_);
- window.addEventListener('resize', this.refresh);
- if (mutationObserverSupported) {
- this.mutationsObserver_ = new MutationObserver(this.refresh);
- this.mutationsObserver_.observe(document, {
- attributes: true,
- childList: true,
- characterData: true,
- subtree: true
- });
- } else {
- document.addEventListener('DOMSubtreeModified', this.refresh);
- this.mutationEventsAdded_ = true;
- }
- this.connected_ = true;
- };
- ResizeObserverController.prototype.disconnect_ = function () {
-
-
- if (!isBrowser || !this.connected_) {
- return;
- }
- document.removeEventListener('transitionend', this.onTransitionEnd_);
- window.removeEventListener('resize', this.refresh);
- if (this.mutationsObserver_) {
- this.mutationsObserver_.disconnect();
- }
- if (this.mutationEventsAdded_) {
- document.removeEventListener('DOMSubtreeModified', this.refresh);
- }
- this.mutationsObserver_ = null;
- this.mutationEventsAdded_ = false;
- this.connected_ = false;
- };
- ResizeObserverController.prototype.onTransitionEnd_ = function (ref) {
- var propertyName = ref.propertyName; if ( propertyName === void 0 ) propertyName = '';
-
- var isReflowProperty = transitionKeys.some(function (key) {
- return !!~propertyName.indexOf(key);
- });
- if (isReflowProperty) {
- this.refresh();
- }
- };
- ResizeObserverController.getInstance = function () {
- if (!this.instance_) {
- this.instance_ = new ResizeObserverController();
- }
- return this.instance_;
- };
- ResizeObserverController.instance_ = null;
- var defineConfigurable = (function (target, props) {
- for (var i = 0, list = Object.keys(props); i < list.length; i += 1) {
- var key = list[i];
- Object.defineProperty(target, key, {
- value: props[key],
- enumerable: false,
- writable: false,
- configurable: true
- });
- }
- return target;
- });
- var getWindowOf = (function (target) {
-
-
-
- var ownerGlobal = target && target.ownerDocument && target.ownerDocument.defaultView;
-
-
- return ownerGlobal || global$1;
- });
- var emptyRect = createRectInit(0, 0, 0, 0);
- function toFloat(value) {
- return parseFloat(value) || 0;
- }
- function getBordersSize(styles) {
- var positions = [], len = arguments.length - 1;
- while ( len-- > 0 ) positions[ len ] = arguments[ len + 1 ];
- return positions.reduce(function (size, position) {
- var value = styles['border-' + position + '-width'];
- return size + toFloat(value);
- }, 0);
- }
- function getPaddings(styles) {
- var positions = ['top', 'right', 'bottom', 'left'];
- var paddings = {};
- for (var i = 0, list = positions; i < list.length; i += 1) {
- var position = list[i];
- var value = styles['padding-' + position];
- paddings[position] = toFloat(value);
- }
- return paddings;
- }
- function getSVGContentRect(target) {
- var bbox = target.getBBox();
- return createRectInit(0, 0, bbox.width, bbox.height);
- }
- function getHTMLElementContentRect(target) {
-
-
- var clientWidth = target.clientWidth;
- var clientHeight = target.clientHeight;
-
-
-
-
-
-
-
-
- if (!clientWidth && !clientHeight) {
- return emptyRect;
- }
- var styles = getWindowOf(target).getComputedStyle(target);
- var paddings = getPaddings(styles);
- var horizPad = paddings.left + paddings.right;
- var vertPad = paddings.top + paddings.bottom;
-
-
-
-
- var width = toFloat(styles.width),
- height = toFloat(styles.height);
-
-
- if (styles.boxSizing === 'border-box') {
-
-
-
-
-
-
- if (Math.round(width + horizPad) !== clientWidth) {
- width -= getBordersSize(styles, 'left', 'right') + horizPad;
- }
- if (Math.round(height + vertPad) !== clientHeight) {
- height -= getBordersSize(styles, 'top', 'bottom') + vertPad;
- }
- }
-
-
-
-
- if (!isDocumentElement(target)) {
-
-
-
-
- var vertScrollbar = Math.round(width + horizPad) - clientWidth;
- var horizScrollbar = Math.round(height + vertPad) - clientHeight;
-
-
-
-
-
- if (Math.abs(vertScrollbar) !== 1) {
- width -= vertScrollbar;
- }
- if (Math.abs(horizScrollbar) !== 1) {
- height -= horizScrollbar;
- }
- }
- return createRectInit(paddings.left, paddings.top, width, height);
- }
- var isSVGGraphicsElement = (function () {
-
-
- if (typeof SVGGraphicsElement !== 'undefined') {
- return function (target) { return target instanceof getWindowOf(target).SVGGraphicsElement; };
- }
-
-
-
- return function (target) { return target instanceof getWindowOf(target).SVGElement && typeof target.getBBox === 'function'; };
- })();
- function isDocumentElement(target) {
- return target === getWindowOf(target).document.documentElement;
- }
- function getContentRect(target) {
- if (!isBrowser) {
- return emptyRect;
- }
- if (isSVGGraphicsElement(target)) {
- return getSVGContentRect(target);
- }
- return getHTMLElementContentRect(target);
- }
- function createReadOnlyRect(ref) {
- var x = ref.x;
- var y = ref.y;
- var width = ref.width;
- var height = ref.height;
-
- var Constr = typeof DOMRectReadOnly !== 'undefined' ? DOMRectReadOnly : Object;
- var rect = Object.create(Constr.prototype);
-
- defineConfigurable(rect, {
- x: x, y: y, width: width, height: height,
- top: y,
- right: x + width,
- bottom: height + y,
- left: x
- });
- return rect;
- }
- function createRectInit(x, y, width, height) {
- return { x: x, y: y, width: width, height: height };
- }
- var ResizeObservation = function(target) {
- this.broadcastWidth = 0;
- this.broadcastHeight = 0;
- this.contentRect_ = createRectInit(0, 0, 0, 0);
- this.target = target;
- };
- ResizeObservation.prototype.isActive = function () {
- var rect = getContentRect(this.target);
- this.contentRect_ = rect;
- return rect.width !== this.broadcastWidth || rect.height !== this.broadcastHeight;
- };
- ResizeObservation.prototype.broadcastRect = function () {
- var rect = this.contentRect_;
- this.broadcastWidth = rect.width;
- this.broadcastHeight = rect.height;
- return rect;
- };
- var ResizeObserverEntry = function(target, rectInit) {
- var contentRect = createReadOnlyRect(rectInit);
-
-
-
-
-
-
- defineConfigurable(this, { target: target, contentRect: contentRect });
- };
- var ResizeObserverSPI = function(callback, controller, callbackCtx) {
- this.activeObservations_ = [];
- this.observations_ = new MapShim();
- if (typeof callback !== 'function') {
- throw new TypeError('The callback provided as parameter 1 is not a function.');
- }
- this.callback_ = callback;
- this.controller_ = controller;
- this.callbackCtx_ = callbackCtx;
- };
- ResizeObserverSPI.prototype.observe = function (target) {
- if (!arguments.length) {
- throw new TypeError('1 argument required, but only 0 present.');
- }
-
- if (typeof Element === 'undefined' || !(Element instanceof Object)) {
- return;
- }
- if (!(target instanceof getWindowOf(target).Element)) {
- throw new TypeError('parameter 1 is not of type "Element".');
- }
- var observations = this.observations_;
-
- if (observations.has(target)) {
- return;
- }
- observations.set(target, new ResizeObservation(target));
- this.controller_.addObserver(this);
-
- this.controller_.refresh();
- };
- ResizeObserverSPI.prototype.unobserve = function (target) {
- if (!arguments.length) {
- throw new TypeError('1 argument required, but only 0 present.');
- }
-
- if (typeof Element === 'undefined' || !(Element instanceof Object)) {
- return;
- }
- if (!(target instanceof getWindowOf(target).Element)) {
- throw new TypeError('parameter 1 is not of type "Element".');
- }
- var observations = this.observations_;
-
- if (!observations.has(target)) {
- return;
- }
- observations.delete(target);
- if (!observations.size) {
- this.controller_.removeObserver(this);
- }
- };
- ResizeObserverSPI.prototype.disconnect = function () {
- this.clearActive();
- this.observations_.clear();
- this.controller_.removeObserver(this);
- };
- ResizeObserverSPI.prototype.gatherActive = function () {
- var this$1 = this;
- this.clearActive();
- this.observations_.forEach(function (observation) {
- if (observation.isActive()) {
- this$1.activeObservations_.push(observation);
- }
- });
- };
- ResizeObserverSPI.prototype.broadcastActive = function () {
-
- if (!this.hasActive()) {
- return;
- }
- var ctx = this.callbackCtx_;
-
- var entries = this.activeObservations_.map(function (observation) {
- return new ResizeObserverEntry(observation.target, observation.broadcastRect());
- });
- this.callback_.call(ctx, entries, ctx);
- this.clearActive();
- };
- ResizeObserverSPI.prototype.clearActive = function () {
- this.activeObservations_.splice(0);
- };
- ResizeObserverSPI.prototype.hasActive = function () {
- return this.activeObservations_.length > 0;
- };
- var observers = typeof WeakMap !== 'undefined' ? new WeakMap() : new MapShim();
- var ResizeObserver = function(callback) {
- if (!(this instanceof ResizeObserver)) {
- throw new TypeError('Cannot call a class as a function.');
- }
- if (!arguments.length) {
- throw new TypeError('1 argument required, but only 0 present.');
- }
- var controller = ResizeObserverController.getInstance();
- var observer = new ResizeObserverSPI(callback, controller, this);
- observers.set(this, observer);
- };
- ['observe', 'unobserve', 'disconnect'].forEach(function (method) {
- ResizeObserver.prototype[method] = function () {
- return (ref = observers.get(this))[method].apply(ref, arguments);
- var ref;
- };
- });
- var index = (function () {
-
- if (typeof global$1.ResizeObserver !== 'undefined') {
- return global$1.ResizeObserver;
- }
- global$1.ResizeObserver = ResizeObserver;
- return ResizeObserver;
- })();
- return index;
- })));
|