resize-observer-polyfill
Advanced tools
Comparing version 1.5.0 to 1.5.1
@@ -12,3 +12,2 @@ /** | ||
} | ||
/** | ||
@@ -23,41 +22,34 @@ * Returns index in provided array that matches the specified 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() { | ||
return /** @class */ (function () { | ||
function class_1() { | ||
this.__entries__ = []; | ||
} | ||
var prototypeAccessors = { size: { configurable: true } }; | ||
Object.defineProperty(class_1.prototype, "size", { | ||
/** | ||
* @returns {boolean} | ||
*/ | ||
get: function () { | ||
return this.__entries__.length; | ||
}, | ||
enumerable: true, | ||
configurable: true | ||
}); | ||
/** | ||
* @returns {boolean} | ||
*/ | ||
prototypeAccessors.size.get = function () { | ||
return this.__entries__.length; | ||
}; | ||
/** | ||
* @param {*} key | ||
* @returns {*} | ||
*/ | ||
anonymous.prototype.get = function (key) { | ||
class_1.prototype.get = function (key) { | ||
var index = getIndex(this.__entries__, key); | ||
var entry = this.__entries__[index]; | ||
return entry && entry[1]; | ||
}; | ||
/** | ||
@@ -68,12 +60,11 @@ * @param {*} key | ||
*/ | ||
anonymous.prototype.set = function (key, value) { | ||
class_1.prototype.set = function (key, value) { | ||
var index = getIndex(this.__entries__, key); | ||
if (~index) { | ||
this.__entries__[index][1] = value; | ||
} else { | ||
} | ||
else { | ||
this.__entries__.push([key, value]); | ||
} | ||
}; | ||
/** | ||
@@ -83,6 +74,5 @@ * @param {*} key | ||
*/ | ||
anonymous.prototype.delete = function (key) { | ||
class_1.prototype.delete = function (key) { | ||
var entries = this.__entries__; | ||
var index = getIndex(entries, key); | ||
if (~index) { | ||
@@ -92,3 +82,2 @@ entries.splice(index, 1); | ||
}; | ||
/** | ||
@@ -98,13 +87,11 @@ * @param {*} key | ||
*/ | ||
anonymous.prototype.has = function (key) { | ||
class_1.prototype.has = function (key) { | ||
return !!~getIndex(this.__entries__, key); | ||
}; | ||
/** | ||
* @returns {void} | ||
*/ | ||
anonymous.prototype.clear = function () { | ||
class_1.prototype.clear = function () { | ||
this.__entries__.splice(0); | ||
}; | ||
/** | ||
@@ -115,16 +102,10 @@ * @param {Function} callback | ||
*/ | ||
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]; | ||
class_1.prototype.forEach = function (callback, ctx) { | ||
if (ctx === void 0) { ctx = null; } | ||
for (var _i = 0, _a = this.__entries__; _i < _a.length; _i++) { | ||
var entry = _a[_i]; | ||
callback.call(ctx, entry[1], entry[0]); | ||
} | ||
}; | ||
Object.defineProperties( anonymous.prototype, prototypeAccessors ); | ||
return anonymous; | ||
return class_1; | ||
}()); | ||
@@ -143,11 +124,8 @@ })(); | ||
} | ||
if (typeof self !== 'undefined' && self.Math === Math) { | ||
return self; | ||
} | ||
if (typeof window !== 'undefined' && window.Math === Math) { | ||
return window; | ||
} | ||
// eslint-disable-next-line no-new-func | ||
@@ -170,3 +148,2 @@ return Function('return this')(); | ||
} | ||
return function (callback) { return setTimeout(function () { return callback(Date.now()); }, 1000 / 60); }; | ||
@@ -177,3 +154,2 @@ })(); | ||
var trailingTimeout = 2; | ||
/** | ||
@@ -187,7 +163,4 @@ * Creates a wrapper function which ensures that provided callback will be | ||
*/ | ||
var throttle = function (callback, delay) { | ||
var leadingCall = false, | ||
trailingCall = false, | ||
lastCallTime = 0; | ||
function throttle (callback, delay) { | ||
var leadingCall = false, trailingCall = false, lastCallTime = 0; | ||
/** | ||
@@ -202,6 +175,4 @@ * Invokes the original callback function and schedules new invocation if | ||
leadingCall = false; | ||
callback(); | ||
} | ||
if (trailingCall) { | ||
@@ -211,3 +182,2 @@ proxy(); | ||
} | ||
/** | ||
@@ -223,3 +193,2 @@ * Callback invoked after the specified delay. It will further postpone | ||
} | ||
/** | ||
@@ -232,3 +201,2 @@ * Schedules invocation of the original function. | ||
var timeStamp = Date.now(); | ||
if (leadingCall) { | ||
@@ -239,3 +207,2 @@ // Reject immediately following calls. | ||
} | ||
// Schedule new call to be in invoked when the pending one is resolved. | ||
@@ -246,239 +213,219 @@ // This is important for "transitions" which never actually start | ||
trailingCall = true; | ||
} else { | ||
} | ||
else { | ||
leadingCall = true; | ||
trailingCall = false; | ||
setTimeout(timeoutCallback, delay); | ||
} | ||
lastCallTime = timeStamp; | ||
} | ||
return proxy; | ||
}; | ||
} | ||
// Minimum delay before invoking the update of observers. | ||
var REFRESH_DELAY = 20; | ||
// A list of substrings of CSS properties used to find transition events that | ||
// might affect dimensions of observed elements. | ||
var transitionKeys = ['top', 'right', 'bottom', 'left', 'width', 'height', 'size', 'weight']; | ||
// Check if MutationObserver is available. | ||
var mutationObserverSupported = typeof MutationObserver !== 'undefined'; | ||
/** | ||
* Singleton controller class which handles updates of ResizeObserver instances. | ||
*/ | ||
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); | ||
}; | ||
/** | ||
* Adds observer to observers list. | ||
* | ||
* @param {ResizeObserverSPI} observer - Observer to be added. | ||
* @returns {void} | ||
*/ | ||
/** | ||
* Holds reference to the controller's instance. | ||
* | ||
* @private {ResizeObserverController} | ||
*/ | ||
/** | ||
* Keeps reference to the instance of MutationObserver. | ||
* | ||
* @private {MutationObserver} | ||
*/ | ||
/** | ||
* Indicates whether DOM listeners have been added. | ||
* | ||
* @private {boolean} | ||
*/ | ||
ResizeObserverController.prototype.addObserver = function (observer) { | ||
if (!~this.observers_.indexOf(observer)) { | ||
this.observers_.push(observer); | ||
var ResizeObserverController = /** @class */ (function () { | ||
/** | ||
* Creates a new instance of ResizeObserverController. | ||
* | ||
* @private | ||
*/ | ||
function ResizeObserverController() { | ||
/** | ||
* Indicates whether DOM listeners have been added. | ||
* | ||
* @private {boolean} | ||
*/ | ||
this.connected_ = false; | ||
/** | ||
* Tells that controller has subscribed for Mutation Events. | ||
* | ||
* @private {boolean} | ||
*/ | ||
this.mutationEventsAdded_ = false; | ||
/** | ||
* Keeps reference to the instance of MutationObserver. | ||
* | ||
* @private {MutationObserver} | ||
*/ | ||
this.mutationsObserver_ = null; | ||
/** | ||
* A list of connected observers. | ||
* | ||
* @private {Array<ResizeObserverSPI>} | ||
*/ | ||
this.observers_ = []; | ||
this.onTransitionEnd_ = this.onTransitionEnd_.bind(this); | ||
this.refresh = throttle(this.refresh.bind(this), REFRESH_DELAY); | ||
} | ||
// Add listeners if they haven't been added yet. | ||
if (!this.connected_) { | ||
this.connect_(); | ||
} | ||
}; | ||
/** | ||
* Removes observer from observers list. | ||
* | ||
* @param {ResizeObserverSPI} observer - Observer to be removed. | ||
* @returns {void} | ||
*/ | ||
ResizeObserverController.prototype.removeObserver = function (observer) { | ||
var observers = this.observers_; | ||
var index = observers.indexOf(observer); | ||
// Remove observer if it's present in registry. | ||
if (~index) { | ||
observers.splice(index, 1); | ||
} | ||
// Remove listeners if controller has no connected observers. | ||
if (!observers.length && this.connected_) { | ||
this.disconnect_(); | ||
} | ||
}; | ||
/** | ||
* Invokes the update of observers. It will continue running updates insofar | ||
* it detects changes. | ||
* | ||
* @returns {void} | ||
*/ | ||
ResizeObserverController.prototype.refresh = function () { | ||
var changesDetected = this.updateObservers_(); | ||
// Continue running updates if changes have been detected as there might | ||
// be future ones caused by CSS transitions. | ||
if (changesDetected) { | ||
this.refresh(); | ||
} | ||
}; | ||
/** | ||
* Updates every observer from observers list and notifies them of queued | ||
* entries. | ||
* | ||
* @private | ||
* @returns {boolean} Returns "true" if any observer has detected changes in | ||
* dimensions of it's elements. | ||
*/ | ||
ResizeObserverController.prototype.updateObservers_ = function () { | ||
// Collect observers that have active observations. | ||
var activeObservers = this.observers_.filter(function (observer) { | ||
return observer.gatherActive(), observer.hasActive(); | ||
}); | ||
// Deliver notifications in a separate cycle in order to avoid any | ||
// collisions between observers, e.g. when multiple instances of | ||
// ResizeObserver are tracking the same element and the callback of one | ||
// of them changes content dimensions of the observed target. Sometimes | ||
// this may result in notifications being blocked for the rest of observers. | ||
activeObservers.forEach(function (observer) { return observer.broadcastActive(); }); | ||
return activeObservers.length > 0; | ||
}; | ||
/** | ||
* Initializes DOM listeners. | ||
* | ||
* @private | ||
* @returns {void} | ||
*/ | ||
ResizeObserverController.prototype.connect_ = function () { | ||
// Do nothing if running in a non-browser environment or if listeners | ||
// have been already added. | ||
if (!isBrowser || this.connected_) { | ||
return; | ||
} | ||
// Subscription to the "Transitionend" event is used as a workaround for | ||
// delayed transitions. This way it's possible to capture at least the | ||
// final state of an element. | ||
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 | ||
/** | ||
* Adds observer to observers list. | ||
* | ||
* @param {ResizeObserverSPI} observer - Observer to be added. | ||
* @returns {void} | ||
*/ | ||
ResizeObserverController.prototype.addObserver = function (observer) { | ||
if (!~this.observers_.indexOf(observer)) { | ||
this.observers_.push(observer); | ||
} | ||
// Add listeners if they haven't been added yet. | ||
if (!this.connected_) { | ||
this.connect_(); | ||
} | ||
}; | ||
/** | ||
* Removes observer from observers list. | ||
* | ||
* @param {ResizeObserverSPI} observer - Observer to be removed. | ||
* @returns {void} | ||
*/ | ||
ResizeObserverController.prototype.removeObserver = function (observer) { | ||
var observers = this.observers_; | ||
var index = observers.indexOf(observer); | ||
// Remove observer if it's present in registry. | ||
if (~index) { | ||
observers.splice(index, 1); | ||
} | ||
// Remove listeners if controller has no connected observers. | ||
if (!observers.length && this.connected_) { | ||
this.disconnect_(); | ||
} | ||
}; | ||
/** | ||
* Invokes the update of observers. It will continue running updates insofar | ||
* it detects changes. | ||
* | ||
* @returns {void} | ||
*/ | ||
ResizeObserverController.prototype.refresh = function () { | ||
var changesDetected = this.updateObservers_(); | ||
// Continue running updates if changes have been detected as there might | ||
// be future ones caused by CSS transitions. | ||
if (changesDetected) { | ||
this.refresh(); | ||
} | ||
}; | ||
/** | ||
* Updates every observer from observers list and notifies them of queued | ||
* entries. | ||
* | ||
* @private | ||
* @returns {boolean} Returns "true" if any observer has detected changes in | ||
* dimensions of it's elements. | ||
*/ | ||
ResizeObserverController.prototype.updateObservers_ = function () { | ||
// Collect observers that have active observations. | ||
var activeObservers = this.observers_.filter(function (observer) { | ||
return observer.gatherActive(), observer.hasActive(); | ||
}); | ||
} else { | ||
document.addEventListener('DOMSubtreeModified', this.refresh); | ||
// Deliver notifications in a separate cycle in order to avoid any | ||
// collisions between observers, e.g. when multiple instances of | ||
// ResizeObserver are tracking the same element and the callback of one | ||
// of them changes content dimensions of the observed target. Sometimes | ||
// this may result in notifications being blocked for the rest of observers. | ||
activeObservers.forEach(function (observer) { return observer.broadcastActive(); }); | ||
return activeObservers.length > 0; | ||
}; | ||
/** | ||
* Initializes DOM listeners. | ||
* | ||
* @private | ||
* @returns {void} | ||
*/ | ||
ResizeObserverController.prototype.connect_ = function () { | ||
// Do nothing if running in a non-browser environment or if listeners | ||
// have been already added. | ||
if (!isBrowser || this.connected_) { | ||
return; | ||
} | ||
// Subscription to the "Transitionend" event is used as a workaround for | ||
// delayed transitions. This way it's possible to capture at least the | ||
// final state of an element. | ||
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; | ||
}; | ||
/** | ||
* Removes DOM listeners. | ||
* | ||
* @private | ||
* @returns {void} | ||
*/ | ||
ResizeObserverController.prototype.disconnect_ = function () { | ||
// Do nothing if running in a non-browser environment or if listeners | ||
// have been already removed. | ||
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; | ||
}; | ||
/** | ||
* "Transitionend" event handler. | ||
* | ||
* @private | ||
* @param {TransitionEvent} event | ||
* @returns {void} | ||
*/ | ||
ResizeObserverController.prototype.onTransitionEnd_ = function (_a) { | ||
var _b = _a.propertyName, propertyName = _b === void 0 ? '' : _b; | ||
// Detect whether transition may affect dimensions of an element. | ||
var isReflowProperty = transitionKeys.some(function (key) { | ||
return !!~propertyName.indexOf(key); | ||
}); | ||
if (isReflowProperty) { | ||
this.refresh(); | ||
} | ||
}; | ||
/** | ||
* Returns instance of the ResizeObserverController. | ||
* | ||
* @returns {ResizeObserverController} | ||
*/ | ||
ResizeObserverController.getInstance = function () { | ||
if (!this.instance_) { | ||
this.instance_ = new ResizeObserverController(); | ||
} | ||
return this.instance_; | ||
}; | ||
/** | ||
* Holds reference to the controller's instance. | ||
* | ||
* @private {ResizeObserverController} | ||
*/ | ||
ResizeObserverController.instance_ = null; | ||
return ResizeObserverController; | ||
}()); | ||
this.mutationEventsAdded_ = true; | ||
} | ||
this.connected_ = true; | ||
}; | ||
/** | ||
* Removes DOM listeners. | ||
* | ||
* @private | ||
* @returns {void} | ||
*/ | ||
ResizeObserverController.prototype.disconnect_ = function () { | ||
// Do nothing if running in a non-browser environment or if listeners | ||
// have been already removed. | ||
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; | ||
}; | ||
/** | ||
* "Transitionend" event handler. | ||
* | ||
* @private | ||
* @param {TransitionEvent} event | ||
* @returns {void} | ||
*/ | ||
ResizeObserverController.prototype.onTransitionEnd_ = function (ref) { | ||
var propertyName = ref.propertyName; if ( propertyName === void 0 ) propertyName = ''; | ||
// Detect whether transition may affect dimensions of an element. | ||
var isReflowProperty = transitionKeys.some(function (key) { | ||
return !!~propertyName.indexOf(key); | ||
}); | ||
if (isReflowProperty) { | ||
this.refresh(); | ||
} | ||
}; | ||
/** | ||
* Returns instance of the ResizeObserverController. | ||
* | ||
* @returns {ResizeObserverController} | ||
*/ | ||
ResizeObserverController.getInstance = function () { | ||
if (!this.instance_) { | ||
this.instance_ = new ResizeObserverController(); | ||
} | ||
return this.instance_; | ||
}; | ||
ResizeObserverController.instance_ = null; | ||
/** | ||
* Defines non-writable/enumerable properties of the provided target object. | ||
@@ -491,5 +438,4 @@ * | ||
var defineConfigurable = (function (target, props) { | ||
for (var i = 0, list = Object.keys(props); i < list.length; i += 1) { | ||
var key = list[i]; | ||
for (var _i = 0, _a = Object.keys(props); _i < _a.length; _i++) { | ||
var key = _a[_i]; | ||
Object.defineProperty(target, key, { | ||
@@ -502,3 +448,2 @@ value: props[key], | ||
} | ||
return target; | ||
@@ -518,3 +463,2 @@ }); | ||
var ownerGlobal = target && target.ownerDocument && target.ownerDocument.defaultView; | ||
// Return the local global object if it's not possible extract one from | ||
@@ -527,3 +471,2 @@ // provided element. | ||
var emptyRect = createRectInit(0, 0, 0, 0); | ||
/** | ||
@@ -538,3 +481,2 @@ * Converts provided string to a number. | ||
} | ||
/** | ||
@@ -548,12 +490,11 @@ * Extracts borders size from provided styles. | ||
function getBordersSize(styles) { | ||
var positions = [], len = arguments.length - 1; | ||
while ( len-- > 0 ) positions[ len ] = arguments[ len + 1 ]; | ||
var positions = []; | ||
for (var _i = 1; _i < arguments.length; _i++) { | ||
positions[_i - 1] = arguments[_i]; | ||
} | ||
return positions.reduce(function (size, position) { | ||
var value = styles['border-' + position + '-width']; | ||
return size + toFloat(value); | ||
}, 0); | ||
} | ||
/** | ||
@@ -568,14 +509,9 @@ * Extracts paddings sizes from provided styles. | ||
var paddings = {}; | ||
for (var i = 0, list = positions; i < list.length; i += 1) { | ||
var position = list[i]; | ||
for (var _i = 0, positions_1 = positions; _i < positions_1.length; _i++) { | ||
var position = positions_1[_i]; | ||
var value = styles['padding-' + position]; | ||
paddings[position] = toFloat(value); | ||
} | ||
return paddings; | ||
} | ||
/** | ||
@@ -590,6 +526,4 @@ * Calculates content rectangle of provided SVG element. | ||
var bbox = target.getBBox(); | ||
return createRectInit(0, 0, bbox.width, bbox.height); | ||
} | ||
/** | ||
@@ -604,5 +538,3 @@ * Calculates content rectangle of provided HTMLElement. | ||
// used exclusively as they provide rounded values. | ||
var clientWidth = target.clientWidth; | ||
var clientHeight = target.clientHeight; | ||
var clientWidth = target.clientWidth, clientHeight = target.clientHeight; | ||
// By this condition we can catch all non-replaced inline, hidden and | ||
@@ -619,3 +551,2 @@ // detached elements. Though elements with width & height properties less | ||
} | ||
var styles = getWindowOf(target).getComputedStyle(target); | ||
@@ -625,3 +556,2 @@ var paddings = getPaddings(styles); | ||
var vertPad = paddings.top + paddings.bottom; | ||
// Computed styles of width & height are being used because they are the | ||
@@ -631,5 +561,3 @@ // only dimensions available to JS that contain non-rounded values. It could | ||
// affected by CSS transformations let alone paddings, borders and scroll bars. | ||
var width = toFloat(styles.width), | ||
height = toFloat(styles.height); | ||
var width = toFloat(styles.width), height = toFloat(styles.height); | ||
// Width & height include paddings and borders when the 'border-box' box | ||
@@ -647,3 +575,2 @@ // model is applied (except for IE). | ||
} | ||
if (Math.round(height + vertPad) !== clientHeight) { | ||
@@ -653,3 +580,2 @@ height -= getBordersSize(styles, 'top', 'bottom') + vertPad; | ||
} | ||
// Following steps can't be applied to the document's root element as its | ||
@@ -666,3 +592,2 @@ // client[Width/Height] properties represent viewport area of the window. | ||
var horizScrollbar = Math.round(height + vertPad) - clientHeight; | ||
// Chrome has a rather weird rounding of "client" properties. | ||
@@ -676,3 +601,2 @@ // E.g. for an element with content width of 314.2px it sometimes gives | ||
} | ||
if (Math.abs(horizScrollbar) !== 1) { | ||
@@ -682,6 +606,4 @@ height -= horizScrollbar; | ||
} | ||
return createRectInit(paddings.left, paddings.top, width, height); | ||
} | ||
/** | ||
@@ -699,9 +621,8 @@ * Checks whether provided element is an instance of the SVGGraphicsElement. | ||
} | ||
// If it's so, then check that element is at least an instance of the | ||
// SVGElement and that it has the "getBBox" method. | ||
// eslint-disable-next-line no-extra-parens | ||
return function (target) { return target instanceof getWindowOf(target).SVGElement && typeof target.getBBox === 'function'; }; | ||
return function (target) { return (target instanceof getWindowOf(target).SVGElement && | ||
typeof target.getBBox === 'function'); }; | ||
})(); | ||
/** | ||
@@ -716,3 +637,2 @@ * Checks whether provided element is a document element (<html>). | ||
} | ||
/** | ||
@@ -728,10 +648,7 @@ * Calculates an appropriate content rectangle for provided html or svg element. | ||
} | ||
if (isSVGGraphicsElement(target)) { | ||
return getSVGContentRect(target); | ||
} | ||
return getHTMLElementContentRect(target); | ||
} | ||
/** | ||
@@ -744,12 +661,7 @@ * Creates rectangle with an interface of the DOMRectReadOnly. | ||
*/ | ||
function createReadOnlyRect(ref) { | ||
var x = ref.x; | ||
var y = ref.y; | ||
var width = ref.width; | ||
var height = ref.height; | ||
function createReadOnlyRect(_a) { | ||
var x = _a.x, y = _a.y, width = _a.width, height = _a.height; | ||
// If DOMRectReadOnly is available use it as a prototype for the rectangle. | ||
var Constr = typeof DOMRectReadOnly !== 'undefined' ? DOMRectReadOnly : Object; | ||
var rect = Object.create(Constr.prototype); | ||
// Rectangle's properties are not writable and non-enumerable. | ||
@@ -763,6 +675,4 @@ defineConfigurable(rect, { | ||
}); | ||
return rect; | ||
} | ||
/** | ||
@@ -786,239 +696,225 @@ * Creates DOMRectInit object based on the provided dimensions and the x/y coordinates. | ||
*/ | ||
var ResizeObservation = function(target) { | ||
this.broadcastWidth = 0; | ||
this.broadcastHeight = 0; | ||
this.contentRect_ = createRectInit(0, 0, 0, 0); | ||
this.target = target; | ||
}; | ||
/** | ||
* Updates content rectangle and tells whether it's width or height properties | ||
* have changed since the last broadcast. | ||
* | ||
* @returns {boolean} | ||
*/ | ||
/** | ||
* Reference to the last observed content rectangle. | ||
* | ||
* @private {DOMRectInit} | ||
*/ | ||
/** | ||
* Broadcasted width of content rectangle. | ||
* | ||
* @type {number} | ||
*/ | ||
ResizeObservation.prototype.isActive = function () { | ||
var rect = getContentRect(this.target); | ||
this.contentRect_ = rect; | ||
return rect.width !== this.broadcastWidth || rect.height !== this.broadcastHeight; | ||
}; | ||
/** | ||
* Updates 'broadcastWidth' and 'broadcastHeight' properties with a data | ||
* from the corresponding properties of the last observed content rectangle. | ||
* | ||
* @returns {DOMRectInit} Last observed content rectangle. | ||
*/ | ||
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); | ||
// According to the specification following properties are not writable | ||
// and are also not enumerable in the native implementation. | ||
// | ||
// Property accessors are not being used as they'd require to define a | ||
// private WeakMap storage which may cause memory leaks in browsers that | ||
// don't support this type of collections. | ||
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.'); | ||
var ResizeObservation = /** @class */ (function () { | ||
/** | ||
* Creates an instance of ResizeObservation. | ||
* | ||
* @param {Element} target - Element to be observed. | ||
*/ | ||
function ResizeObservation(target) { | ||
/** | ||
* Broadcasted width of content rectangle. | ||
* | ||
* @type {number} | ||
*/ | ||
this.broadcastWidth = 0; | ||
/** | ||
* Broadcasted height of content rectangle. | ||
* | ||
* @type {number} | ||
*/ | ||
this.broadcastHeight = 0; | ||
/** | ||
* Reference to the last observed content rectangle. | ||
* | ||
* @private {DOMRectInit} | ||
*/ | ||
this.contentRect_ = createRectInit(0, 0, 0, 0); | ||
this.target = target; | ||
} | ||
/** | ||
* Updates content rectangle and tells whether it's width or height properties | ||
* have changed since the last broadcast. | ||
* | ||
* @returns {boolean} | ||
*/ | ||
ResizeObservation.prototype.isActive = function () { | ||
var rect = getContentRect(this.target); | ||
this.contentRect_ = rect; | ||
return (rect.width !== this.broadcastWidth || | ||
rect.height !== this.broadcastHeight); | ||
}; | ||
/** | ||
* Updates 'broadcastWidth' and 'broadcastHeight' properties with a data | ||
* from the corresponding properties of the last observed content rectangle. | ||
* | ||
* @returns {DOMRectInit} Last observed content rectangle. | ||
*/ | ||
ResizeObservation.prototype.broadcastRect = function () { | ||
var rect = this.contentRect_; | ||
this.broadcastWidth = rect.width; | ||
this.broadcastHeight = rect.height; | ||
return rect; | ||
}; | ||
return ResizeObservation; | ||
}()); | ||
this.callback_ = callback; | ||
this.controller_ = controller; | ||
this.callbackCtx_ = callbackCtx; | ||
}; | ||
/** | ||
* Starts observing provided element. | ||
* | ||
* @param {Element} target - Element to be observed. | ||
* @returns {void} | ||
*/ | ||
/** | ||
* Registry of the ResizeObservation instances. | ||
* | ||
* @private {Map<Element, ResizeObservation>} | ||
*/ | ||
/** | ||
* Public ResizeObserver instance which will be passed to the callback | ||
* function and used as a value of it's "this" binding. | ||
* | ||
* @private {ResizeObserver} | ||
*/ | ||
/** | ||
* Collection of resize observations that have detected changes in dimensions | ||
* of elements. | ||
* | ||
* @private {Array<ResizeObservation>} | ||
*/ | ||
ResizeObserverSPI.prototype.observe = function (target) { | ||
if (!arguments.length) { | ||
throw new TypeError('1 argument required, but only 0 present.'); | ||
var ResizeObserverEntry = /** @class */ (function () { | ||
/** | ||
* Creates an instance of ResizeObserverEntry. | ||
* | ||
* @param {Element} target - Element that is being observed. | ||
* @param {DOMRectInit} rectInit - Data of the element's content rectangle. | ||
*/ | ||
function ResizeObserverEntry(target, rectInit) { | ||
var contentRect = createReadOnlyRect(rectInit); | ||
// According to the specification following properties are not writable | ||
// and are also not enumerable in the native implementation. | ||
// | ||
// Property accessors are not being used as they'd require to define a | ||
// private WeakMap storage which may cause memory leaks in browsers that | ||
// don't support this type of collections. | ||
defineConfigurable(this, { target: target, contentRect: contentRect }); | ||
} | ||
return ResizeObserverEntry; | ||
}()); | ||
// Do nothing if current environment doesn't have the Element interface. | ||
if (typeof Element === 'undefined' || !(Element instanceof Object)) { | ||
return; | ||
var ResizeObserverSPI = /** @class */ (function () { | ||
/** | ||
* Creates a new instance of ResizeObserver. | ||
* | ||
* @param {ResizeObserverCallback} callback - Callback function that is invoked | ||
* when one of the observed elements changes it's content dimensions. | ||
* @param {ResizeObserverController} controller - Controller instance which | ||
* is responsible for the updates of observer. | ||
* @param {ResizeObserver} callbackCtx - Reference to the public | ||
* ResizeObserver instance which will be passed to callback function. | ||
*/ | ||
function ResizeObserverSPI(callback, controller, callbackCtx) { | ||
/** | ||
* Collection of resize observations that have detected changes in dimensions | ||
* of elements. | ||
* | ||
* @private {Array<ResizeObservation>} | ||
*/ | ||
this.activeObservations_ = []; | ||
/** | ||
* Registry of the ResizeObservation instances. | ||
* | ||
* @private {Map<Element, ResizeObservation>} | ||
*/ | ||
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; | ||
} | ||
if (!(target instanceof getWindowOf(target).Element)) { | ||
throw new TypeError('parameter 1 is not of type "Element".'); | ||
} | ||
var observations = this.observations_; | ||
// Do nothing if element is already being observed. | ||
if (observations.has(target)) { | ||
return; | ||
} | ||
observations.set(target, new ResizeObservation(target)); | ||
this.controller_.addObserver(this); | ||
// Force the update of observations. | ||
this.controller_.refresh(); | ||
}; | ||
/** | ||
* Stops observing provided element. | ||
* | ||
* @param {Element} target - Element to stop observing. | ||
* @returns {void} | ||
*/ | ||
ResizeObserverSPI.prototype.unobserve = function (target) { | ||
if (!arguments.length) { | ||
throw new TypeError('1 argument required, but only 0 present.'); | ||
} | ||
// Do nothing if current environment doesn't have the Element interface. | ||
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_; | ||
// Do nothing if element is not being observed. | ||
if (!observations.has(target)) { | ||
return; | ||
} | ||
observations.delete(target); | ||
if (!observations.size) { | ||
/** | ||
* Starts observing provided element. | ||
* | ||
* @param {Element} target - Element to be observed. | ||
* @returns {void} | ||
*/ | ||
ResizeObserverSPI.prototype.observe = function (target) { | ||
if (!arguments.length) { | ||
throw new TypeError('1 argument required, but only 0 present.'); | ||
} | ||
// Do nothing if current environment doesn't have the Element interface. | ||
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_; | ||
// Do nothing if element is already being observed. | ||
if (observations.has(target)) { | ||
return; | ||
} | ||
observations.set(target, new ResizeObservation(target)); | ||
this.controller_.addObserver(this); | ||
// Force the update of observations. | ||
this.controller_.refresh(); | ||
}; | ||
/** | ||
* Stops observing provided element. | ||
* | ||
* @param {Element} target - Element to stop observing. | ||
* @returns {void} | ||
*/ | ||
ResizeObserverSPI.prototype.unobserve = function (target) { | ||
if (!arguments.length) { | ||
throw new TypeError('1 argument required, but only 0 present.'); | ||
} | ||
// Do nothing if current environment doesn't have the Element interface. | ||
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_; | ||
// Do nothing if element is not being observed. | ||
if (!observations.has(target)) { | ||
return; | ||
} | ||
observations.delete(target); | ||
if (!observations.size) { | ||
this.controller_.removeObserver(this); | ||
} | ||
}; | ||
/** | ||
* Stops observing all elements. | ||
* | ||
* @returns {void} | ||
*/ | ||
ResizeObserverSPI.prototype.disconnect = function () { | ||
this.clearActive(); | ||
this.observations_.clear(); | ||
this.controller_.removeObserver(this); | ||
} | ||
}; | ||
/** | ||
* Stops observing all elements. | ||
* | ||
* @returns {void} | ||
*/ | ||
ResizeObserverSPI.prototype.disconnect = function () { | ||
this.clearActive(); | ||
this.observations_.clear(); | ||
this.controller_.removeObserver(this); | ||
}; | ||
/** | ||
* Collects observation instances the associated element of which has changed | ||
* it's content rectangle. | ||
* | ||
* @returns {void} | ||
*/ | ||
ResizeObserverSPI.prototype.gatherActive = function () { | ||
var this$1 = this; | ||
this.clearActive(); | ||
this.observations_.forEach(function (observation) { | ||
if (observation.isActive()) { | ||
this$1.activeObservations_.push(observation); | ||
}; | ||
/** | ||
* Collects observation instances the associated element of which has changed | ||
* it's content rectangle. | ||
* | ||
* @returns {void} | ||
*/ | ||
ResizeObserverSPI.prototype.gatherActive = function () { | ||
var _this = this; | ||
this.clearActive(); | ||
this.observations_.forEach(function (observation) { | ||
if (observation.isActive()) { | ||
_this.activeObservations_.push(observation); | ||
} | ||
}); | ||
}; | ||
/** | ||
* Invokes initial callback function with a list of ResizeObserverEntry | ||
* instances collected from active resize observations. | ||
* | ||
* @returns {void} | ||
*/ | ||
ResizeObserverSPI.prototype.broadcastActive = function () { | ||
// Do nothing if observer doesn't have active observations. | ||
if (!this.hasActive()) { | ||
return; | ||
} | ||
}); | ||
}; | ||
var ctx = this.callbackCtx_; | ||
// Create ResizeObserverEntry instance for every active observation. | ||
var entries = this.activeObservations_.map(function (observation) { | ||
return new ResizeObserverEntry(observation.target, observation.broadcastRect()); | ||
}); | ||
this.callback_.call(ctx, entries, ctx); | ||
this.clearActive(); | ||
}; | ||
/** | ||
* Clears the collection of active observations. | ||
* | ||
* @returns {void} | ||
*/ | ||
ResizeObserverSPI.prototype.clearActive = function () { | ||
this.activeObservations_.splice(0); | ||
}; | ||
/** | ||
* Tells whether observer has active observations. | ||
* | ||
* @returns {boolean} | ||
*/ | ||
ResizeObserverSPI.prototype.hasActive = function () { | ||
return this.activeObservations_.length > 0; | ||
}; | ||
return ResizeObserverSPI; | ||
}()); | ||
/** | ||
* Invokes initial callback function with a list of ResizeObserverEntry | ||
* instances collected from active resize observations. | ||
* | ||
* @returns {void} | ||
*/ | ||
ResizeObserverSPI.prototype.broadcastActive = function () { | ||
// Do nothing if observer doesn't have active observations. | ||
if (!this.hasActive()) { | ||
return; | ||
} | ||
var ctx = this.callbackCtx_; | ||
// Create ResizeObserverEntry instance for every active observation. | ||
var entries = this.activeObservations_.map(function (observation) { | ||
return new ResizeObserverEntry(observation.target, observation.broadcastRect()); | ||
}); | ||
this.callback_.call(ctx, entries, ctx); | ||
this.clearActive(); | ||
}; | ||
/** | ||
* Clears the collection of active observations. | ||
* | ||
* @returns {void} | ||
*/ | ||
ResizeObserverSPI.prototype.clearActive = function () { | ||
this.activeObservations_.splice(0); | ||
}; | ||
/** | ||
* Tells whether observer has active observations. | ||
* | ||
* @returns {boolean} | ||
*/ | ||
ResizeObserverSPI.prototype.hasActive = function () { | ||
return this.activeObservations_.length > 0; | ||
}; | ||
// Registry of internal observers. If WeakMap is not available use current shim | ||
@@ -1028,3 +924,2 @@ // for the Map collection as it has all required methods and because WeakMap | ||
var observers = typeof WeakMap !== 'undefined' ? new WeakMap() : new MapShim(); | ||
/** | ||
@@ -1034,21 +929,31 @@ * ResizeObserver API. Encapsulates the ResizeObserver SPI implementation | ||
*/ | ||
var ResizeObserver = function(callback) { | ||
if (!(this instanceof ResizeObserver)) { | ||
throw new TypeError('Cannot call a class as a function.'); | ||
var ResizeObserver = /** @class */ (function () { | ||
/** | ||
* Creates a new instance of ResizeObserver. | ||
* | ||
* @param {ResizeObserverCallback} callback - Callback that is invoked when | ||
* dimensions of the observed elements change. | ||
*/ | ||
function ResizeObserver(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); | ||
} | ||
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); | ||
}; | ||
return ResizeObserver; | ||
}()); | ||
// Expose public methods of ResizeObserver. | ||
['observe', 'unobserve', 'disconnect'].forEach(function (method) { | ||
[ | ||
'observe', | ||
'unobserve', | ||
'disconnect' | ||
].forEach(function (method) { | ||
ResizeObserver.prototype[method] = function () { | ||
return (ref = observers.get(this))[method].apply(ref, arguments); | ||
var ref; | ||
var _a; | ||
return (_a = observers.get(this))[method].apply(_a, arguments); | ||
}; | ||
@@ -1062,3 +967,2 @@ }); | ||
} | ||
return ResizeObserver; | ||
@@ -1065,0 +969,0 @@ })(); |
(function (global, factory) { | ||
typeof exports === 'object' && typeof module !== 'undefined' ? module.exports = factory() : | ||
typeof define === 'function' && define.amd ? define(factory) : | ||
(global.ResizeObserver = factory()); | ||
typeof exports === 'object' && typeof module !== 'undefined' ? module.exports = factory() : | ||
typeof define === 'function' && define.amd ? define(factory) : | ||
(global.ResizeObserver = factory()); | ||
}(this, (function () { 'use strict'; | ||
/** | ||
* A collection of shims that provide minimal functionality of the ES6 collections. | ||
* | ||
* These implementations are not meant to be used outside of the ResizeObserver | ||
* modules as they cover only a limited range of use cases. | ||
*/ | ||
/* eslint-disable require-jsdoc, valid-jsdoc */ | ||
var MapShim = (function () { | ||
if (typeof Map !== 'undefined') { | ||
return Map; | ||
} | ||
/** | ||
* Returns index in provided array that matches the specified key. | ||
* A collection of shims that provide minimal functionality of the ES6 collections. | ||
* | ||
* @param {Array<Array>} arr | ||
* @param {*} key | ||
* @returns {number} | ||
* These implementations are not meant to be used outside of the ResizeObserver | ||
* modules as they cover only a limited range of use cases. | ||
*/ | ||
function getIndex(arr, key) { | ||
var result = -1; | ||
arr.some(function (entry, index) { | ||
if (entry[0] === key) { | ||
result = index; | ||
return true; | ||
/* eslint-disable require-jsdoc, valid-jsdoc */ | ||
var MapShim = (function () { | ||
if (typeof Map !== 'undefined') { | ||
return Map; | ||
} | ||
/** | ||
* Returns index in provided array that matches the specified key. | ||
* | ||
* @param {Array<Array>} arr | ||
* @param {*} key | ||
* @returns {number} | ||
*/ | ||
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 /** @class */ (function () { | ||
function class_1() { | ||
this.__entries__ = []; | ||
} | ||
Object.defineProperty(class_1.prototype, "size", { | ||
/** | ||
* @returns {boolean} | ||
*/ | ||
get: function () { | ||
return this.__entries__.length; | ||
}, | ||
enumerable: true, | ||
configurable: true | ||
}); | ||
/** | ||
* @param {*} key | ||
* @returns {*} | ||
*/ | ||
class_1.prototype.get = function (key) { | ||
var index = getIndex(this.__entries__, key); | ||
var entry = this.__entries__[index]; | ||
return entry && entry[1]; | ||
}; | ||
/** | ||
* @param {*} key | ||
* @param {*} value | ||
* @returns {void} | ||
*/ | ||
class_1.prototype.set = function (key, value) { | ||
var index = getIndex(this.__entries__, key); | ||
if (~index) { | ||
this.__entries__[index][1] = value; | ||
} | ||
else { | ||
this.__entries__.push([key, value]); | ||
} | ||
}; | ||
/** | ||
* @param {*} key | ||
* @returns {void} | ||
*/ | ||
class_1.prototype.delete = function (key) { | ||
var entries = this.__entries__; | ||
var index = getIndex(entries, key); | ||
if (~index) { | ||
entries.splice(index, 1); | ||
} | ||
}; | ||
/** | ||
* @param {*} key | ||
* @returns {void} | ||
*/ | ||
class_1.prototype.has = function (key) { | ||
return !!~getIndex(this.__entries__, key); | ||
}; | ||
/** | ||
* @returns {void} | ||
*/ | ||
class_1.prototype.clear = function () { | ||
this.__entries__.splice(0); | ||
}; | ||
/** | ||
* @param {Function} callback | ||
* @param {*} [ctx=null] | ||
* @returns {void} | ||
*/ | ||
class_1.prototype.forEach = function (callback, ctx) { | ||
if (ctx === void 0) { ctx = null; } | ||
for (var _i = 0, _a = this.__entries__; _i < _a.length; _i++) { | ||
var entry = _a[_i]; | ||
callback.call(ctx, entry[1], entry[0]); | ||
} | ||
}; | ||
return class_1; | ||
}()); | ||
})(); | ||
return false; | ||
}); | ||
/** | ||
* Detects whether window and document objects are available in current environment. | ||
*/ | ||
var isBrowser = typeof window !== 'undefined' && typeof document !== 'undefined' && window.document === document; | ||
return result; | ||
} | ||
// Returns global object of a current environment. | ||
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; | ||
} | ||
// eslint-disable-next-line no-new-func | ||
return Function('return this')(); | ||
})(); | ||
return (function () { | ||
function anonymous() { | ||
this.__entries__ = []; | ||
/** | ||
* A shim for the requestAnimationFrame which falls back to the setTimeout if | ||
* first one is not supported. | ||
* | ||
* @returns {number} Requests' identifier. | ||
*/ | ||
var requestAnimationFrame$1 = (function () { | ||
if (typeof requestAnimationFrame === 'function') { | ||
// It's required to use a bounded function because IE sometimes throws | ||
// an "Invalid calling object" error if rAF is invoked without the global | ||
// object on the left hand side. | ||
return requestAnimationFrame.bind(global$1); | ||
} | ||
return function (callback) { return setTimeout(function () { return callback(Date.now()); }, 1000 / 60); }; | ||
})(); | ||
var prototypeAccessors = { size: { configurable: true } }; | ||
// Defines minimum timeout before adding a trailing call. | ||
var trailingTimeout = 2; | ||
/** | ||
* Creates a wrapper function which ensures that provided callback will be | ||
* invoked only once during the specified delay period. | ||
* | ||
* @param {Function} callback - Function to be invoked after the delay period. | ||
* @param {number} delay - Delay after which to invoke callback. | ||
* @returns {Function} | ||
*/ | ||
function throttle (callback, delay) { | ||
var leadingCall = false, trailingCall = false, lastCallTime = 0; | ||
/** | ||
* @returns {boolean} | ||
* Invokes the original callback function and schedules new invocation if | ||
* the "proxy" was called during current request. | ||
* | ||
* @returns {void} | ||
*/ | ||
prototypeAccessors.size.get = function () { | ||
return this.__entries__.length; | ||
}; | ||
function resolvePending() { | ||
if (leadingCall) { | ||
leadingCall = false; | ||
callback(); | ||
} | ||
if (trailingCall) { | ||
proxy(); | ||
} | ||
} | ||
/** | ||
* Callback invoked after the specified delay. It will further postpone | ||
* invocation of the original function delegating it to the | ||
* requestAnimationFrame. | ||
* | ||
* @returns {void} | ||
*/ | ||
function timeoutCallback() { | ||
requestAnimationFrame$1(resolvePending); | ||
} | ||
/** | ||
* Schedules invocation of the original function. | ||
* | ||
* @returns {void} | ||
*/ | ||
function proxy() { | ||
var timeStamp = Date.now(); | ||
if (leadingCall) { | ||
// Reject immediately following calls. | ||
if (timeStamp - lastCallTime < trailingTimeout) { | ||
return; | ||
} | ||
// Schedule new call to be in invoked when the pending one is resolved. | ||
// This is important for "transitions" which never actually start | ||
// immediately so there is a chance that we might miss one if change | ||
// happens amids the pending invocation. | ||
trailingCall = true; | ||
} | ||
else { | ||
leadingCall = true; | ||
trailingCall = false; | ||
setTimeout(timeoutCallback, delay); | ||
} | ||
lastCallTime = timeStamp; | ||
} | ||
return proxy; | ||
} | ||
// Minimum delay before invoking the update of observers. | ||
var REFRESH_DELAY = 20; | ||
// A list of substrings of CSS properties used to find transition events that | ||
// might affect dimensions of observed elements. | ||
var transitionKeys = ['top', 'right', 'bottom', 'left', 'width', 'height', 'size', 'weight']; | ||
// Check if MutationObserver is available. | ||
var mutationObserverSupported = typeof MutationObserver !== 'undefined'; | ||
/** | ||
* Singleton controller class which handles updates of ResizeObserver instances. | ||
*/ | ||
var ResizeObserverController = /** @class */ (function () { | ||
/** | ||
* @param {*} key | ||
* @returns {*} | ||
* Creates a new instance of ResizeObserverController. | ||
* | ||
* @private | ||
*/ | ||
anonymous.prototype.get = function (key) { | ||
var index = getIndex(this.__entries__, key); | ||
var entry = this.__entries__[index]; | ||
return entry && entry[1]; | ||
function ResizeObserverController() { | ||
/** | ||
* Indicates whether DOM listeners have been added. | ||
* | ||
* @private {boolean} | ||
*/ | ||
this.connected_ = false; | ||
/** | ||
* Tells that controller has subscribed for Mutation Events. | ||
* | ||
* @private {boolean} | ||
*/ | ||
this.mutationEventsAdded_ = false; | ||
/** | ||
* Keeps reference to the instance of MutationObserver. | ||
* | ||
* @private {MutationObserver} | ||
*/ | ||
this.mutationsObserver_ = null; | ||
/** | ||
* A list of connected observers. | ||
* | ||
* @private {Array<ResizeObserverSPI>} | ||
*/ | ||
this.observers_ = []; | ||
this.onTransitionEnd_ = this.onTransitionEnd_.bind(this); | ||
this.refresh = throttle(this.refresh.bind(this), REFRESH_DELAY); | ||
} | ||
/** | ||
* Adds observer to observers list. | ||
* | ||
* @param {ResizeObserverSPI} observer - Observer to be added. | ||
* @returns {void} | ||
*/ | ||
ResizeObserverController.prototype.addObserver = function (observer) { | ||
if (!~this.observers_.indexOf(observer)) { | ||
this.observers_.push(observer); | ||
} | ||
// Add listeners if they haven't been added yet. | ||
if (!this.connected_) { | ||
this.connect_(); | ||
} | ||
}; | ||
/** | ||
* @param {*} key | ||
* @param {*} value | ||
* Removes observer from observers list. | ||
* | ||
* @param {ResizeObserverSPI} observer - Observer to be removed. | ||
* @returns {void} | ||
*/ | ||
anonymous.prototype.set = function (key, value) { | ||
var index = getIndex(this.__entries__, key); | ||
ResizeObserverController.prototype.removeObserver = function (observer) { | ||
var observers = this.observers_; | ||
var index = observers.indexOf(observer); | ||
// Remove observer if it's present in registry. | ||
if (~index) { | ||
this.__entries__[index][1] = value; | ||
} else { | ||
this.__entries__.push([key, value]); | ||
observers.splice(index, 1); | ||
} | ||
// Remove listeners if controller has no connected observers. | ||
if (!observers.length && this.connected_) { | ||
this.disconnect_(); | ||
} | ||
}; | ||
/** | ||
* @param {*} key | ||
* Invokes the update of observers. It will continue running updates insofar | ||
* it detects changes. | ||
* | ||
* @returns {void} | ||
*/ | ||
anonymous.prototype.delete = function (key) { | ||
var entries = this.__entries__; | ||
var index = getIndex(entries, key); | ||
if (~index) { | ||
entries.splice(index, 1); | ||
ResizeObserverController.prototype.refresh = function () { | ||
var changesDetected = this.updateObservers_(); | ||
// Continue running updates if changes have been detected as there might | ||
// be future ones caused by CSS transitions. | ||
if (changesDetected) { | ||
this.refresh(); | ||
} | ||
}; | ||
/** | ||
* @param {*} key | ||
* Updates every observer from observers list and notifies them of queued | ||
* entries. | ||
* | ||
* @private | ||
* @returns {boolean} Returns "true" if any observer has detected changes in | ||
* dimensions of it's elements. | ||
*/ | ||
ResizeObserverController.prototype.updateObservers_ = function () { | ||
// Collect observers that have active observations. | ||
var activeObservers = this.observers_.filter(function (observer) { | ||
return observer.gatherActive(), observer.hasActive(); | ||
}); | ||
// Deliver notifications in a separate cycle in order to avoid any | ||
// collisions between observers, e.g. when multiple instances of | ||
// ResizeObserver are tracking the same element and the callback of one | ||
// of them changes content dimensions of the observed target. Sometimes | ||
// this may result in notifications being blocked for the rest of observers. | ||
activeObservers.forEach(function (observer) { return observer.broadcastActive(); }); | ||
return activeObservers.length > 0; | ||
}; | ||
/** | ||
* Initializes DOM listeners. | ||
* | ||
* @private | ||
* @returns {void} | ||
*/ | ||
anonymous.prototype.has = function (key) { | ||
return !!~getIndex(this.__entries__, key); | ||
ResizeObserverController.prototype.connect_ = function () { | ||
// Do nothing if running in a non-browser environment or if listeners | ||
// have been already added. | ||
if (!isBrowser || this.connected_) { | ||
return; | ||
} | ||
// Subscription to the "Transitionend" event is used as a workaround for | ||
// delayed transitions. This way it's possible to capture at least the | ||
// final state of an element. | ||
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; | ||
}; | ||
/** | ||
* Removes DOM listeners. | ||
* | ||
* @private | ||
* @returns {void} | ||
*/ | ||
anonymous.prototype.clear = function () { | ||
this.__entries__.splice(0); | ||
ResizeObserverController.prototype.disconnect_ = function () { | ||
// Do nothing if running in a non-browser environment or if listeners | ||
// have been already removed. | ||
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; | ||
}; | ||
/** | ||
* @param {Function} callback | ||
* @param {*} [ctx=null] | ||
* "Transitionend" event handler. | ||
* | ||
* @private | ||
* @param {TransitionEvent} event | ||
* @returns {void} | ||
*/ | ||
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]); | ||
ResizeObserverController.prototype.onTransitionEnd_ = function (_a) { | ||
var _b = _a.propertyName, propertyName = _b === void 0 ? '' : _b; | ||
// Detect whether transition may affect dimensions of an element. | ||
var isReflowProperty = transitionKeys.some(function (key) { | ||
return !!~propertyName.indexOf(key); | ||
}); | ||
if (isReflowProperty) { | ||
this.refresh(); | ||
} | ||
}; | ||
Object.defineProperties( anonymous.prototype, prototypeAccessors ); | ||
return anonymous; | ||
/** | ||
* Returns instance of the ResizeObserverController. | ||
* | ||
* @returns {ResizeObserverController} | ||
*/ | ||
ResizeObserverController.getInstance = function () { | ||
if (!this.instance_) { | ||
this.instance_ = new ResizeObserverController(); | ||
} | ||
return this.instance_; | ||
}; | ||
/** | ||
* Holds reference to the controller's instance. | ||
* | ||
* @private {ResizeObserverController} | ||
*/ | ||
ResizeObserverController.instance_ = null; | ||
return ResizeObserverController; | ||
}()); | ||
})(); | ||
/** | ||
* Detects whether window and document objects are available in current environment. | ||
*/ | ||
var isBrowser = typeof window !== 'undefined' && typeof document !== 'undefined' && window.document === document; | ||
/** | ||
* Defines non-writable/enumerable properties of the provided target object. | ||
* | ||
* @param {Object} target - Object for which to define properties. | ||
* @param {Object} props - Properties to be defined. | ||
* @returns {Object} Target object. | ||
*/ | ||
var defineConfigurable = (function (target, props) { | ||
for (var _i = 0, _a = Object.keys(props); _i < _a.length; _i++) { | ||
var key = _a[_i]; | ||
Object.defineProperty(target, key, { | ||
value: props[key], | ||
enumerable: false, | ||
writable: false, | ||
configurable: true | ||
}); | ||
} | ||
return target; | ||
}); | ||
// Returns global object of a current environment. | ||
var global$1 = (function () { | ||
if (typeof global !== 'undefined' && global.Math === Math) { | ||
return global; | ||
} | ||
/** | ||
* Returns the global object associated with provided element. | ||
* | ||
* @param {Object} target | ||
* @returns {Object} | ||
*/ | ||
var getWindowOf = (function (target) { | ||
// Assume that the element is an instance of Node, which means that it | ||
// has the "ownerDocument" property from which we can retrieve a | ||
// corresponding global object. | ||
var ownerGlobal = target && target.ownerDocument && target.ownerDocument.defaultView; | ||
// Return the local global object if it's not possible extract one from | ||
// provided element. | ||
return ownerGlobal || global$1; | ||
}); | ||
if (typeof self !== 'undefined' && self.Math === Math) { | ||
return self; | ||
// Placeholder of an empty content rectangle. | ||
var emptyRect = createRectInit(0, 0, 0, 0); | ||
/** | ||
* Converts provided string to a number. | ||
* | ||
* @param {number|string} value | ||
* @returns {number} | ||
*/ | ||
function toFloat(value) { | ||
return parseFloat(value) || 0; | ||
} | ||
if (typeof window !== 'undefined' && window.Math === Math) { | ||
return window; | ||
/** | ||
* Extracts borders size from provided styles. | ||
* | ||
* @param {CSSStyleDeclaration} styles | ||
* @param {...string} positions - Borders positions (top, right, ...) | ||
* @returns {number} | ||
*/ | ||
function getBordersSize(styles) { | ||
var positions = []; | ||
for (var _i = 1; _i < arguments.length; _i++) { | ||
positions[_i - 1] = arguments[_i]; | ||
} | ||
return positions.reduce(function (size, position) { | ||
var value = styles['border-' + position + '-width']; | ||
return size + toFloat(value); | ||
}, 0); | ||
} | ||
// eslint-disable-next-line no-new-func | ||
return Function('return this')(); | ||
})(); | ||
/** | ||
* A shim for the requestAnimationFrame which falls back to the setTimeout if | ||
* first one is not supported. | ||
* | ||
* @returns {number} Requests' identifier. | ||
*/ | ||
var requestAnimationFrame$1 = (function () { | ||
if (typeof requestAnimationFrame === 'function') { | ||
// It's required to use a bounded function because IE sometimes throws | ||
// an "Invalid calling object" error if rAF is invoked without the global | ||
// object on the left hand side. | ||
return requestAnimationFrame.bind(global$1); | ||
} | ||
return function (callback) { return setTimeout(function () { return callback(Date.now()); }, 1000 / 60); }; | ||
})(); | ||
// Defines minimum timeout before adding a trailing call. | ||
var trailingTimeout = 2; | ||
/** | ||
* Creates a wrapper function which ensures that provided callback will be | ||
* invoked only once during the specified delay period. | ||
* | ||
* @param {Function} callback - Function to be invoked after the delay period. | ||
* @param {number} delay - Delay after which to invoke callback. | ||
* @returns {Function} | ||
*/ | ||
var throttle = function (callback, delay) { | ||
var leadingCall = false, | ||
trailingCall = false, | ||
lastCallTime = 0; | ||
/** | ||
* Invokes the original callback function and schedules new invocation if | ||
* the "proxy" was called during current request. | ||
* Extracts paddings sizes from provided styles. | ||
* | ||
* @returns {void} | ||
* @param {CSSStyleDeclaration} styles | ||
* @returns {Object} Paddings box. | ||
*/ | ||
function resolvePending() { | ||
if (leadingCall) { | ||
leadingCall = false; | ||
callback(); | ||
function getPaddings(styles) { | ||
var positions = ['top', 'right', 'bottom', 'left']; | ||
var paddings = {}; | ||
for (var _i = 0, positions_1 = positions; _i < positions_1.length; _i++) { | ||
var position = positions_1[_i]; | ||
var value = styles['padding-' + position]; | ||
paddings[position] = toFloat(value); | ||
} | ||
if (trailingCall) { | ||
proxy(); | ||
} | ||
return paddings; | ||
} | ||
/** | ||
* Callback invoked after the specified delay. It will further postpone | ||
* invocation of the original function delegating it to the | ||
* requestAnimationFrame. | ||
* Calculates content rectangle of provided SVG element. | ||
* | ||
* @returns {void} | ||
* @param {SVGGraphicsElement} target - Element content rectangle of which needs | ||
* to be calculated. | ||
* @returns {DOMRectInit} | ||
*/ | ||
function timeoutCallback() { | ||
requestAnimationFrame$1(resolvePending); | ||
function getSVGContentRect(target) { | ||
var bbox = target.getBBox(); | ||
return createRectInit(0, 0, bbox.width, bbox.height); | ||
} | ||
/** | ||
* Schedules invocation of the original function. | ||
* Calculates content rectangle of provided HTMLElement. | ||
* | ||
* @returns {void} | ||
* @param {HTMLElement} target - Element for which to calculate the content rectangle. | ||
* @returns {DOMRectInit} | ||
*/ | ||
function proxy() { | ||
var timeStamp = Date.now(); | ||
if (leadingCall) { | ||
// Reject immediately following calls. | ||
if (timeStamp - lastCallTime < trailingTimeout) { | ||
return; | ||
function getHTMLElementContentRect(target) { | ||
// Client width & height properties can't be | ||
// used exclusively as they provide rounded values. | ||
var clientWidth = target.clientWidth, clientHeight = target.clientHeight; | ||
// By this condition we can catch all non-replaced inline, hidden and | ||
// detached elements. Though elements with width & height properties less | ||
// than 0.5 will be discarded as well. | ||
// | ||
// Without it we would need to implement separate methods for each of | ||
// those cases and it's not possible to perform a precise and performance | ||
// effective test for hidden elements. E.g. even jQuery's ':visible' filter | ||
// gives wrong results for elements with width & height less than 0.5. | ||
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; | ||
// Computed styles of width & height are being used because they are the | ||
// only dimensions available to JS that contain non-rounded values. It could | ||
// be possible to utilize the getBoundingClientRect if only it's data wasn't | ||
// affected by CSS transformations let alone paddings, borders and scroll bars. | ||
var width = toFloat(styles.width), height = toFloat(styles.height); | ||
// Width & height include paddings and borders when the 'border-box' box | ||
// model is applied (except for IE). | ||
if (styles.boxSizing === 'border-box') { | ||
// Following conditions are required to handle Internet Explorer which | ||
// doesn't include paddings and borders to computed CSS dimensions. | ||
// | ||
// We can say that if CSS dimensions + paddings are equal to the "client" | ||
// properties then it's either IE, and thus we don't need to subtract | ||
// anything, or an element merely doesn't have paddings/borders styles. | ||
if (Math.round(width + horizPad) !== clientWidth) { | ||
width -= getBordersSize(styles, 'left', 'right') + horizPad; | ||
} | ||
// Schedule new call to be in invoked when the pending one is resolved. | ||
// This is important for "transitions" which never actually start | ||
// immediately so there is a chance that we might miss one if change | ||
// happens amids the pending invocation. | ||
trailingCall = true; | ||
} else { | ||
leadingCall = true; | ||
trailingCall = false; | ||
setTimeout(timeoutCallback, delay); | ||
if (Math.round(height + vertPad) !== clientHeight) { | ||
height -= getBordersSize(styles, 'top', 'bottom') + vertPad; | ||
} | ||
} | ||
lastCallTime = timeStamp; | ||
// Following steps can't be applied to the document's root element as its | ||
// client[Width/Height] properties represent viewport area of the window. | ||
// Besides, it's as well not necessary as the <html> itself neither has | ||
// rendered scroll bars nor it can be clipped. | ||
if (!isDocumentElement(target)) { | ||
// In some browsers (only in Firefox, actually) CSS width & height | ||
// include scroll bars size which can be removed at this step as scroll | ||
// bars are the only difference between rounded dimensions + paddings | ||
// and "client" properties, though that is not always true in Chrome. | ||
var vertScrollbar = Math.round(width + horizPad) - clientWidth; | ||
var horizScrollbar = Math.round(height + vertPad) - clientHeight; | ||
// Chrome has a rather weird rounding of "client" properties. | ||
// E.g. for an element with content width of 314.2px it sometimes gives | ||
// the client width of 315px and for the width of 314.7px it may give | ||
// 314px. And it doesn't happen all the time. So just ignore this delta | ||
// as a non-relevant. | ||
if (Math.abs(vertScrollbar) !== 1) { | ||
width -= vertScrollbar; | ||
} | ||
if (Math.abs(horizScrollbar) !== 1) { | ||
height -= horizScrollbar; | ||
} | ||
} | ||
return createRectInit(paddings.left, paddings.top, width, height); | ||
} | ||
return proxy; | ||
}; | ||
// Minimum delay before invoking the update of observers. | ||
var REFRESH_DELAY = 20; | ||
// A list of substrings of CSS properties used to find transition events that | ||
// might affect dimensions of observed elements. | ||
var transitionKeys = ['top', 'right', 'bottom', 'left', 'width', 'height', 'size', 'weight']; | ||
// Check if MutationObserver is available. | ||
var mutationObserverSupported = typeof MutationObserver !== 'undefined'; | ||
/** | ||
* Singleton controller class which handles updates of ResizeObserver instances. | ||
*/ | ||
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); | ||
}; | ||
/** | ||
* Adds observer to observers list. | ||
* | ||
* @param {ResizeObserverSPI} observer - Observer to be added. | ||
* @returns {void} | ||
*/ | ||
/** | ||
* Holds reference to the controller's instance. | ||
* | ||
* @private {ResizeObserverController} | ||
*/ | ||
/** | ||
* Keeps reference to the instance of MutationObserver. | ||
* | ||
* @private {MutationObserver} | ||
*/ | ||
/** | ||
* Indicates whether DOM listeners have been added. | ||
* | ||
* @private {boolean} | ||
*/ | ||
ResizeObserverController.prototype.addObserver = function (observer) { | ||
if (!~this.observers_.indexOf(observer)) { | ||
this.observers_.push(observer); | ||
/** | ||
* Checks whether provided element is an instance of the SVGGraphicsElement. | ||
* | ||
* @param {Element} target - Element to be checked. | ||
* @returns {boolean} | ||
*/ | ||
var isSVGGraphicsElement = (function () { | ||
// Some browsers, namely IE and Edge, don't have the SVGGraphicsElement | ||
// interface. | ||
if (typeof SVGGraphicsElement !== 'undefined') { | ||
return function (target) { return target instanceof getWindowOf(target).SVGGraphicsElement; }; | ||
} | ||
// If it's so, then check that element is at least an instance of the | ||
// SVGElement and that it has the "getBBox" method. | ||
// eslint-disable-next-line no-extra-parens | ||
return function (target) { return (target instanceof getWindowOf(target).SVGElement && | ||
typeof target.getBBox === 'function'); }; | ||
})(); | ||
/** | ||
* Checks whether provided element is a document element (<html>). | ||
* | ||
* @param {Element} target - Element to be checked. | ||
* @returns {boolean} | ||
*/ | ||
function isDocumentElement(target) { | ||
return target === getWindowOf(target).document.documentElement; | ||
} | ||
// Add listeners if they haven't been added yet. | ||
if (!this.connected_) { | ||
this.connect_(); | ||
/** | ||
* Calculates an appropriate content rectangle for provided html or svg element. | ||
* | ||
* @param {Element} target - Element content rectangle of which needs to be calculated. | ||
* @returns {DOMRectInit} | ||
*/ | ||
function getContentRect(target) { | ||
if (!isBrowser) { | ||
return emptyRect; | ||
} | ||
if (isSVGGraphicsElement(target)) { | ||
return getSVGContentRect(target); | ||
} | ||
return getHTMLElementContentRect(target); | ||
} | ||
}; | ||
/** | ||
* Removes observer from observers list. | ||
* | ||
* @param {ResizeObserverSPI} observer - Observer to be removed. | ||
* @returns {void} | ||
*/ | ||
ResizeObserverController.prototype.removeObserver = function (observer) { | ||
var observers = this.observers_; | ||
var index = observers.indexOf(observer); | ||
// Remove observer if it's present in registry. | ||
if (~index) { | ||
observers.splice(index, 1); | ||
} | ||
// Remove listeners if controller has no connected observers. | ||
if (!observers.length && this.connected_) { | ||
this.disconnect_(); | ||
} | ||
}; | ||
/** | ||
* Invokes the update of observers. It will continue running updates insofar | ||
* it detects changes. | ||
* | ||
* @returns {void} | ||
*/ | ||
ResizeObserverController.prototype.refresh = function () { | ||
var changesDetected = this.updateObservers_(); | ||
// Continue running updates if changes have been detected as there might | ||
// be future ones caused by CSS transitions. | ||
if (changesDetected) { | ||
this.refresh(); | ||
} | ||
}; | ||
/** | ||
* Updates every observer from observers list and notifies them of queued | ||
* entries. | ||
* | ||
* @private | ||
* @returns {boolean} Returns "true" if any observer has detected changes in | ||
* dimensions of it's elements. | ||
*/ | ||
ResizeObserverController.prototype.updateObservers_ = function () { | ||
// Collect observers that have active observations. | ||
var activeObservers = this.observers_.filter(function (observer) { | ||
return observer.gatherActive(), observer.hasActive(); | ||
}); | ||
// Deliver notifications in a separate cycle in order to avoid any | ||
// collisions between observers, e.g. when multiple instances of | ||
// ResizeObserver are tracking the same element and the callback of one | ||
// of them changes content dimensions of the observed target. Sometimes | ||
// this may result in notifications being blocked for the rest of observers. | ||
activeObservers.forEach(function (observer) { return observer.broadcastActive(); }); | ||
return activeObservers.length > 0; | ||
}; | ||
/** | ||
* Initializes DOM listeners. | ||
* | ||
* @private | ||
* @returns {void} | ||
*/ | ||
ResizeObserverController.prototype.connect_ = function () { | ||
// Do nothing if running in a non-browser environment or if listeners | ||
// have been already added. | ||
if (!isBrowser || this.connected_) { | ||
return; | ||
} | ||
// Subscription to the "Transitionend" event is used as a workaround for | ||
// delayed transitions. This way it's possible to capture at least the | ||
// final state of an element. | ||
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 | ||
/** | ||
* Creates rectangle with an interface of the DOMRectReadOnly. | ||
* Spec: https://drafts.fxtf.org/geometry/#domrectreadonly | ||
* | ||
* @param {DOMRectInit} rectInit - Object with rectangle's x/y coordinates and dimensions. | ||
* @returns {DOMRectReadOnly} | ||
*/ | ||
function createReadOnlyRect(_a) { | ||
var x = _a.x, y = _a.y, width = _a.width, height = _a.height; | ||
// If DOMRectReadOnly is available use it as a prototype for the rectangle. | ||
var Constr = typeof DOMRectReadOnly !== 'undefined' ? DOMRectReadOnly : Object; | ||
var rect = Object.create(Constr.prototype); | ||
// Rectangle's properties are not writable and non-enumerable. | ||
defineConfigurable(rect, { | ||
x: x, y: y, width: width, height: height, | ||
top: y, | ||
right: x + width, | ||
bottom: height + y, | ||
left: x | ||
}); | ||
} else { | ||
document.addEventListener('DOMSubtreeModified', this.refresh); | ||
this.mutationEventsAdded_ = true; | ||
return rect; | ||
} | ||
this.connected_ = true; | ||
}; | ||
/** | ||
* Removes DOM listeners. | ||
* | ||
* @private | ||
* @returns {void} | ||
*/ | ||
ResizeObserverController.prototype.disconnect_ = function () { | ||
// Do nothing if running in a non-browser environment or if listeners | ||
// have been already removed. | ||
if (!isBrowser || !this.connected_) { | ||
return; | ||
/** | ||
* Creates DOMRectInit object based on the provided dimensions and the x/y coordinates. | ||
* Spec: https://drafts.fxtf.org/geometry/#dictdef-domrectinit | ||
* | ||
* @param {number} x - X coordinate. | ||
* @param {number} y - Y coordinate. | ||
* @param {number} width - Rectangle's width. | ||
* @param {number} height - Rectangle's height. | ||
* @returns {DOMRectInit} | ||
*/ | ||
function createRectInit(x, y, width, height) { | ||
return { x: x, y: y, width: width, height: height }; | ||
} | ||
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; | ||
}; | ||
/** | ||
* "Transitionend" event handler. | ||
* | ||
* @private | ||
* @param {TransitionEvent} event | ||
* @returns {void} | ||
*/ | ||
ResizeObserverController.prototype.onTransitionEnd_ = function (ref) { | ||
var propertyName = ref.propertyName; if ( propertyName === void 0 ) propertyName = ''; | ||
// Detect whether transition may affect dimensions of an element. | ||
var isReflowProperty = transitionKeys.some(function (key) { | ||
return !!~propertyName.indexOf(key); | ||
}); | ||
if (isReflowProperty) { | ||
this.refresh(); | ||
} | ||
}; | ||
/** | ||
* Returns instance of the ResizeObserverController. | ||
* | ||
* @returns {ResizeObserverController} | ||
*/ | ||
ResizeObserverController.getInstance = function () { | ||
if (!this.instance_) { | ||
this.instance_ = new ResizeObserverController(); | ||
} | ||
return this.instance_; | ||
}; | ||
ResizeObserverController.instance_ = null; | ||
/** | ||
* Defines non-writable/enumerable properties of the provided target object. | ||
* | ||
* @param {Object} target - Object for which to define properties. | ||
* @param {Object} props - Properties to be defined. | ||
* @returns {Object} Target object. | ||
*/ | ||
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; | ||
}); | ||
/** | ||
* Returns the global object associated with provided element. | ||
* | ||
* @param {Object} target | ||
* @returns {Object} | ||
*/ | ||
var getWindowOf = (function (target) { | ||
// Assume that the element is an instance of Node, which means that it | ||
// has the "ownerDocument" property from which we can retrieve a | ||
// corresponding global object. | ||
var ownerGlobal = target && target.ownerDocument && target.ownerDocument.defaultView; | ||
// Return the local global object if it's not possible extract one from | ||
// provided element. | ||
return ownerGlobal || global$1; | ||
}); | ||
// Placeholder of an empty content rectangle. | ||
var emptyRect = createRectInit(0, 0, 0, 0); | ||
/** | ||
* Converts provided string to a number. | ||
* | ||
* @param {number|string} value | ||
* @returns {number} | ||
*/ | ||
function toFloat(value) { | ||
return parseFloat(value) || 0; | ||
} | ||
/** | ||
* Extracts borders size from provided styles. | ||
* | ||
* @param {CSSStyleDeclaration} styles | ||
* @param {...string} positions - Borders positions (top, right, ...) | ||
* @returns {number} | ||
*/ | ||
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); | ||
} | ||
/** | ||
* Extracts paddings sizes from provided styles. | ||
* | ||
* @param {CSSStyleDeclaration} styles | ||
* @returns {Object} Paddings box. | ||
*/ | ||
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; | ||
} | ||
/** | ||
* Calculates content rectangle of provided SVG element. | ||
* | ||
* @param {SVGGraphicsElement} target - Element content rectangle of which needs | ||
* to be calculated. | ||
* @returns {DOMRectInit} | ||
*/ | ||
function getSVGContentRect(target) { | ||
var bbox = target.getBBox(); | ||
return createRectInit(0, 0, bbox.width, bbox.height); | ||
} | ||
/** | ||
* Calculates content rectangle of provided HTMLElement. | ||
* | ||
* @param {HTMLElement} target - Element for which to calculate the content rectangle. | ||
* @returns {DOMRectInit} | ||
*/ | ||
function getHTMLElementContentRect(target) { | ||
// Client width & height properties can't be | ||
// used exclusively as they provide rounded values. | ||
var clientWidth = target.clientWidth; | ||
var clientHeight = target.clientHeight; | ||
// By this condition we can catch all non-replaced inline, hidden and | ||
// detached elements. Though elements with width & height properties less | ||
// than 0.5 will be discarded as well. | ||
// | ||
// Without it we would need to implement separate methods for each of | ||
// those cases and it's not possible to perform a precise and performance | ||
// effective test for hidden elements. E.g. even jQuery's ':visible' filter | ||
// gives wrong results for elements with width & height less than 0.5. | ||
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; | ||
// Computed styles of width & height are being used because they are the | ||
// only dimensions available to JS that contain non-rounded values. It could | ||
// be possible to utilize the getBoundingClientRect if only it's data wasn't | ||
// affected by CSS transformations let alone paddings, borders and scroll bars. | ||
var width = toFloat(styles.width), | ||
height = toFloat(styles.height); | ||
// Width & height include paddings and borders when the 'border-box' box | ||
// model is applied (except for IE). | ||
if (styles.boxSizing === 'border-box') { | ||
// Following conditions are required to handle Internet Explorer which | ||
// doesn't include paddings and borders to computed CSS dimensions. | ||
// | ||
// We can say that if CSS dimensions + paddings are equal to the "client" | ||
// properties then it's either IE, and thus we don't need to subtract | ||
// anything, or an element merely doesn't have paddings/borders styles. | ||
if (Math.round(width + horizPad) !== clientWidth) { | ||
width -= getBordersSize(styles, 'left', 'right') + horizPad; | ||
/** | ||
* Class that is responsible for computations of the content rectangle of | ||
* provided DOM element and for keeping track of it's changes. | ||
*/ | ||
var ResizeObservation = /** @class */ (function () { | ||
/** | ||
* Creates an instance of ResizeObservation. | ||
* | ||
* @param {Element} target - Element to be observed. | ||
*/ | ||
function ResizeObservation(target) { | ||
/** | ||
* Broadcasted width of content rectangle. | ||
* | ||
* @type {number} | ||
*/ | ||
this.broadcastWidth = 0; | ||
/** | ||
* Broadcasted height of content rectangle. | ||
* | ||
* @type {number} | ||
*/ | ||
this.broadcastHeight = 0; | ||
/** | ||
* Reference to the last observed content rectangle. | ||
* | ||
* @private {DOMRectInit} | ||
*/ | ||
this.contentRect_ = createRectInit(0, 0, 0, 0); | ||
this.target = target; | ||
} | ||
/** | ||
* Updates content rectangle and tells whether it's width or height properties | ||
* have changed since the last broadcast. | ||
* | ||
* @returns {boolean} | ||
*/ | ||
ResizeObservation.prototype.isActive = function () { | ||
var rect = getContentRect(this.target); | ||
this.contentRect_ = rect; | ||
return (rect.width !== this.broadcastWidth || | ||
rect.height !== this.broadcastHeight); | ||
}; | ||
/** | ||
* Updates 'broadcastWidth' and 'broadcastHeight' properties with a data | ||
* from the corresponding properties of the last observed content rectangle. | ||
* | ||
* @returns {DOMRectInit} Last observed content rectangle. | ||
*/ | ||
ResizeObservation.prototype.broadcastRect = function () { | ||
var rect = this.contentRect_; | ||
this.broadcastWidth = rect.width; | ||
this.broadcastHeight = rect.height; | ||
return rect; | ||
}; | ||
return ResizeObservation; | ||
}()); | ||
if (Math.round(height + vertPad) !== clientHeight) { | ||
height -= getBordersSize(styles, 'top', 'bottom') + vertPad; | ||
var ResizeObserverEntry = /** @class */ (function () { | ||
/** | ||
* Creates an instance of ResizeObserverEntry. | ||
* | ||
* @param {Element} target - Element that is being observed. | ||
* @param {DOMRectInit} rectInit - Data of the element's content rectangle. | ||
*/ | ||
function ResizeObserverEntry(target, rectInit) { | ||
var contentRect = createReadOnlyRect(rectInit); | ||
// According to the specification following properties are not writable | ||
// and are also not enumerable in the native implementation. | ||
// | ||
// Property accessors are not being used as they'd require to define a | ||
// private WeakMap storage which may cause memory leaks in browsers that | ||
// don't support this type of collections. | ||
defineConfigurable(this, { target: target, contentRect: contentRect }); | ||
} | ||
} | ||
return ResizeObserverEntry; | ||
}()); | ||
// Following steps can't be applied to the document's root element as its | ||
// client[Width/Height] properties represent viewport area of the window. | ||
// Besides, it's as well not necessary as the <html> itself neither has | ||
// rendered scroll bars nor it can be clipped. | ||
if (!isDocumentElement(target)) { | ||
// In some browsers (only in Firefox, actually) CSS width & height | ||
// include scroll bars size which can be removed at this step as scroll | ||
// bars are the only difference between rounded dimensions + paddings | ||
// and "client" properties, though that is not always true in Chrome. | ||
var vertScrollbar = Math.round(width + horizPad) - clientWidth; | ||
var horizScrollbar = Math.round(height + vertPad) - clientHeight; | ||
// Chrome has a rather weird rounding of "client" properties. | ||
// E.g. for an element with content width of 314.2px it sometimes gives | ||
// the client width of 315px and for the width of 314.7px it may give | ||
// 314px. And it doesn't happen all the time. So just ignore this delta | ||
// as a non-relevant. | ||
if (Math.abs(vertScrollbar) !== 1) { | ||
width -= vertScrollbar; | ||
var ResizeObserverSPI = /** @class */ (function () { | ||
/** | ||
* Creates a new instance of ResizeObserver. | ||
* | ||
* @param {ResizeObserverCallback} callback - Callback function that is invoked | ||
* when one of the observed elements changes it's content dimensions. | ||
* @param {ResizeObserverController} controller - Controller instance which | ||
* is responsible for the updates of observer. | ||
* @param {ResizeObserver} callbackCtx - Reference to the public | ||
* ResizeObserver instance which will be passed to callback function. | ||
*/ | ||
function ResizeObserverSPI(callback, controller, callbackCtx) { | ||
/** | ||
* Collection of resize observations that have detected changes in dimensions | ||
* of elements. | ||
* | ||
* @private {Array<ResizeObservation>} | ||
*/ | ||
this.activeObservations_ = []; | ||
/** | ||
* Registry of the ResizeObservation instances. | ||
* | ||
* @private {Map<Element, ResizeObservation>} | ||
*/ | ||
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; | ||
} | ||
/** | ||
* Starts observing provided element. | ||
* | ||
* @param {Element} target - Element to be observed. | ||
* @returns {void} | ||
*/ | ||
ResizeObserverSPI.prototype.observe = function (target) { | ||
if (!arguments.length) { | ||
throw new TypeError('1 argument required, but only 0 present.'); | ||
} | ||
// Do nothing if current environment doesn't have the Element interface. | ||
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_; | ||
// Do nothing if element is already being observed. | ||
if (observations.has(target)) { | ||
return; | ||
} | ||
observations.set(target, new ResizeObservation(target)); | ||
this.controller_.addObserver(this); | ||
// Force the update of observations. | ||
this.controller_.refresh(); | ||
}; | ||
/** | ||
* Stops observing provided element. | ||
* | ||
* @param {Element} target - Element to stop observing. | ||
* @returns {void} | ||
*/ | ||
ResizeObserverSPI.prototype.unobserve = function (target) { | ||
if (!arguments.length) { | ||
throw new TypeError('1 argument required, but only 0 present.'); | ||
} | ||
// Do nothing if current environment doesn't have the Element interface. | ||
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_; | ||
// Do nothing if element is not being observed. | ||
if (!observations.has(target)) { | ||
return; | ||
} | ||
observations.delete(target); | ||
if (!observations.size) { | ||
this.controller_.removeObserver(this); | ||
} | ||
}; | ||
/** | ||
* Stops observing all elements. | ||
* | ||
* @returns {void} | ||
*/ | ||
ResizeObserverSPI.prototype.disconnect = function () { | ||
this.clearActive(); | ||
this.observations_.clear(); | ||
this.controller_.removeObserver(this); | ||
}; | ||
/** | ||
* Collects observation instances the associated element of which has changed | ||
* it's content rectangle. | ||
* | ||
* @returns {void} | ||
*/ | ||
ResizeObserverSPI.prototype.gatherActive = function () { | ||
var _this = this; | ||
this.clearActive(); | ||
this.observations_.forEach(function (observation) { | ||
if (observation.isActive()) { | ||
_this.activeObservations_.push(observation); | ||
} | ||
}); | ||
}; | ||
/** | ||
* Invokes initial callback function with a list of ResizeObserverEntry | ||
* instances collected from active resize observations. | ||
* | ||
* @returns {void} | ||
*/ | ||
ResizeObserverSPI.prototype.broadcastActive = function () { | ||
// Do nothing if observer doesn't have active observations. | ||
if (!this.hasActive()) { | ||
return; | ||
} | ||
var ctx = this.callbackCtx_; | ||
// Create ResizeObserverEntry instance for every active observation. | ||
var entries = this.activeObservations_.map(function (observation) { | ||
return new ResizeObserverEntry(observation.target, observation.broadcastRect()); | ||
}); | ||
this.callback_.call(ctx, entries, ctx); | ||
this.clearActive(); | ||
}; | ||
/** | ||
* Clears the collection of active observations. | ||
* | ||
* @returns {void} | ||
*/ | ||
ResizeObserverSPI.prototype.clearActive = function () { | ||
this.activeObservations_.splice(0); | ||
}; | ||
/** | ||
* Tells whether observer has active observations. | ||
* | ||
* @returns {boolean} | ||
*/ | ||
ResizeObserverSPI.prototype.hasActive = function () { | ||
return this.activeObservations_.length > 0; | ||
}; | ||
return ResizeObserverSPI; | ||
}()); | ||
if (Math.abs(horizScrollbar) !== 1) { | ||
height -= horizScrollbar; | ||
// Registry of internal observers. If WeakMap is not available use current shim | ||
// for the Map collection as it has all required methods and because WeakMap | ||
// can't be fully polyfilled anyway. | ||
var observers = typeof WeakMap !== 'undefined' ? new WeakMap() : new MapShim(); | ||
/** | ||
* ResizeObserver API. Encapsulates the ResizeObserver SPI implementation | ||
* exposing only those methods and properties that are defined in the spec. | ||
*/ | ||
var ResizeObserver = /** @class */ (function () { | ||
/** | ||
* Creates a new instance of ResizeObserver. | ||
* | ||
* @param {ResizeObserverCallback} callback - Callback that is invoked when | ||
* dimensions of the observed elements change. | ||
*/ | ||
function ResizeObserver(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); | ||
} | ||
} | ||
return createRectInit(paddings.left, paddings.top, width, height); | ||
} | ||
/** | ||
* Checks whether provided element is an instance of the SVGGraphicsElement. | ||
* | ||
* @param {Element} target - Element to be checked. | ||
* @returns {boolean} | ||
*/ | ||
var isSVGGraphicsElement = (function () { | ||
// Some browsers, namely IE and Edge, don't have the SVGGraphicsElement | ||
// interface. | ||
if (typeof SVGGraphicsElement !== 'undefined') { | ||
return function (target) { return target instanceof getWindowOf(target).SVGGraphicsElement; }; | ||
} | ||
// If it's so, then check that element is at least an instance of the | ||
// SVGElement and that it has the "getBBox" method. | ||
// eslint-disable-next-line no-extra-parens | ||
return function (target) { return target instanceof getWindowOf(target).SVGElement && typeof target.getBBox === 'function'; }; | ||
})(); | ||
/** | ||
* Checks whether provided element is a document element (<html>). | ||
* | ||
* @param {Element} target - Element to be checked. | ||
* @returns {boolean} | ||
*/ | ||
function isDocumentElement(target) { | ||
return target === getWindowOf(target).document.documentElement; | ||
} | ||
/** | ||
* Calculates an appropriate content rectangle for provided html or svg element. | ||
* | ||
* @param {Element} target - Element content rectangle of which needs to be calculated. | ||
* @returns {DOMRectInit} | ||
*/ | ||
function getContentRect(target) { | ||
if (!isBrowser) { | ||
return emptyRect; | ||
} | ||
if (isSVGGraphicsElement(target)) { | ||
return getSVGContentRect(target); | ||
} | ||
return getHTMLElementContentRect(target); | ||
} | ||
/** | ||
* Creates rectangle with an interface of the DOMRectReadOnly. | ||
* Spec: https://drafts.fxtf.org/geometry/#domrectreadonly | ||
* | ||
* @param {DOMRectInit} rectInit - Object with rectangle's x/y coordinates and dimensions. | ||
* @returns {DOMRectReadOnly} | ||
*/ | ||
function createReadOnlyRect(ref) { | ||
var x = ref.x; | ||
var y = ref.y; | ||
var width = ref.width; | ||
var height = ref.height; | ||
// If DOMRectReadOnly is available use it as a prototype for the rectangle. | ||
var Constr = typeof DOMRectReadOnly !== 'undefined' ? DOMRectReadOnly : Object; | ||
var rect = Object.create(Constr.prototype); | ||
// Rectangle's properties are not writable and non-enumerable. | ||
defineConfigurable(rect, { | ||
x: x, y: y, width: width, height: height, | ||
top: y, | ||
right: x + width, | ||
bottom: height + y, | ||
left: x | ||
return ResizeObserver; | ||
}()); | ||
// Expose public methods of ResizeObserver. | ||
[ | ||
'observe', | ||
'unobserve', | ||
'disconnect' | ||
].forEach(function (method) { | ||
ResizeObserver.prototype[method] = function () { | ||
var _a; | ||
return (_a = observers.get(this))[method].apply(_a, arguments); | ||
}; | ||
}); | ||
return rect; | ||
} | ||
/** | ||
* Creates DOMRectInit object based on the provided dimensions and the x/y coordinates. | ||
* Spec: https://drafts.fxtf.org/geometry/#dictdef-domrectinit | ||
* | ||
* @param {number} x - X coordinate. | ||
* @param {number} y - Y coordinate. | ||
* @param {number} width - Rectangle's width. | ||
* @param {number} height - Rectangle's height. | ||
* @returns {DOMRectInit} | ||
*/ | ||
function createRectInit(x, y, width, height) { | ||
return { x: x, y: y, width: width, height: height }; | ||
} | ||
/** | ||
* Class that is responsible for computations of the content rectangle of | ||
* provided DOM element and for keeping track of it's changes. | ||
*/ | ||
var ResizeObservation = function(target) { | ||
this.broadcastWidth = 0; | ||
this.broadcastHeight = 0; | ||
this.contentRect_ = createRectInit(0, 0, 0, 0); | ||
this.target = target; | ||
}; | ||
/** | ||
* Updates content rectangle and tells whether it's width or height properties | ||
* have changed since the last broadcast. | ||
* | ||
* @returns {boolean} | ||
*/ | ||
/** | ||
* Reference to the last observed content rectangle. | ||
* | ||
* @private {DOMRectInit} | ||
*/ | ||
/** | ||
* Broadcasted width of content rectangle. | ||
* | ||
* @type {number} | ||
*/ | ||
ResizeObservation.prototype.isActive = function () { | ||
var rect = getContentRect(this.target); | ||
this.contentRect_ = rect; | ||
return rect.width !== this.broadcastWidth || rect.height !== this.broadcastHeight; | ||
}; | ||
/** | ||
* Updates 'broadcastWidth' and 'broadcastHeight' properties with a data | ||
* from the corresponding properties of the last observed content rectangle. | ||
* | ||
* @returns {DOMRectInit} Last observed content rectangle. | ||
*/ | ||
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); | ||
// According to the specification following properties are not writable | ||
// and are also not enumerable in the native implementation. | ||
// | ||
// Property accessors are not being used as they'd require to define a | ||
// private WeakMap storage which may cause memory leaks in browsers that | ||
// don't support this type of collections. | ||
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; | ||
}; | ||
/** | ||
* Starts observing provided element. | ||
* | ||
* @param {Element} target - Element to be observed. | ||
* @returns {void} | ||
*/ | ||
/** | ||
* Registry of the ResizeObservation instances. | ||
* | ||
* @private {Map<Element, ResizeObservation>} | ||
*/ | ||
/** | ||
* Public ResizeObserver instance which will be passed to the callback | ||
* function and used as a value of it's "this" binding. | ||
* | ||
* @private {ResizeObserver} | ||
*/ | ||
/** | ||
* Collection of resize observations that have detected changes in dimensions | ||
* of elements. | ||
* | ||
* @private {Array<ResizeObservation>} | ||
*/ | ||
ResizeObserverSPI.prototype.observe = function (target) { | ||
if (!arguments.length) { | ||
throw new TypeError('1 argument required, but only 0 present.'); | ||
} | ||
// Do nothing if current environment doesn't have the Element interface. | ||
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_; | ||
// Do nothing if element is already being observed. | ||
if (observations.has(target)) { | ||
return; | ||
} | ||
observations.set(target, new ResizeObservation(target)); | ||
this.controller_.addObserver(this); | ||
// Force the update of observations. | ||
this.controller_.refresh(); | ||
}; | ||
/** | ||
* Stops observing provided element. | ||
* | ||
* @param {Element} target - Element to stop observing. | ||
* @returns {void} | ||
*/ | ||
ResizeObserverSPI.prototype.unobserve = function (target) { | ||
if (!arguments.length) { | ||
throw new TypeError('1 argument required, but only 0 present.'); | ||
} | ||
// Do nothing if current environment doesn't have the Element interface. | ||
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_; | ||
// Do nothing if element is not being observed. | ||
if (!observations.has(target)) { | ||
return; | ||
} | ||
observations.delete(target); | ||
if (!observations.size) { | ||
this.controller_.removeObserver(this); | ||
} | ||
}; | ||
/** | ||
* Stops observing all elements. | ||
* | ||
* @returns {void} | ||
*/ | ||
ResizeObserverSPI.prototype.disconnect = function () { | ||
this.clearActive(); | ||
this.observations_.clear(); | ||
this.controller_.removeObserver(this); | ||
}; | ||
/** | ||
* Collects observation instances the associated element of which has changed | ||
* it's content rectangle. | ||
* | ||
* @returns {void} | ||
*/ | ||
ResizeObserverSPI.prototype.gatherActive = function () { | ||
var this$1 = this; | ||
this.clearActive(); | ||
this.observations_.forEach(function (observation) { | ||
if (observation.isActive()) { | ||
this$1.activeObservations_.push(observation); | ||
var index = (function () { | ||
// Export existing implementation if available. | ||
if (typeof global$1.ResizeObserver !== 'undefined') { | ||
return global$1.ResizeObserver; | ||
} | ||
}); | ||
}; | ||
return ResizeObserver; | ||
})(); | ||
/** | ||
* Invokes initial callback function with a list of ResizeObserverEntry | ||
* instances collected from active resize observations. | ||
* | ||
* @returns {void} | ||
*/ | ||
ResizeObserverSPI.prototype.broadcastActive = function () { | ||
// Do nothing if observer doesn't have active observations. | ||
if (!this.hasActive()) { | ||
return; | ||
} | ||
return index; | ||
var ctx = this.callbackCtx_; | ||
// Create ResizeObserverEntry instance for every active observation. | ||
var entries = this.activeObservations_.map(function (observation) { | ||
return new ResizeObserverEntry(observation.target, observation.broadcastRect()); | ||
}); | ||
this.callback_.call(ctx, entries, ctx); | ||
this.clearActive(); | ||
}; | ||
/** | ||
* Clears the collection of active observations. | ||
* | ||
* @returns {void} | ||
*/ | ||
ResizeObserverSPI.prototype.clearActive = function () { | ||
this.activeObservations_.splice(0); | ||
}; | ||
/** | ||
* Tells whether observer has active observations. | ||
* | ||
* @returns {boolean} | ||
*/ | ||
ResizeObserverSPI.prototype.hasActive = function () { | ||
return this.activeObservations_.length > 0; | ||
}; | ||
// Registry of internal observers. If WeakMap is not available use current shim | ||
// for the Map collection as it has all required methods and because WeakMap | ||
// can't be fully polyfilled anyway. | ||
var observers = typeof WeakMap !== 'undefined' ? new WeakMap() : new MapShim(); | ||
/** | ||
* ResizeObserver API. Encapsulates the ResizeObserver SPI implementation | ||
* exposing only those methods and properties that are defined in the spec. | ||
*/ | ||
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); | ||
}; | ||
// Expose public methods of ResizeObserver. | ||
['observe', 'unobserve', 'disconnect'].forEach(function (method) { | ||
ResizeObserver.prototype[method] = function () { | ||
return (ref = observers.get(this))[method].apply(ref, arguments); | ||
var ref; | ||
}; | ||
}); | ||
var index = (function () { | ||
// Export existing implementation if available. | ||
if (typeof global$1.ResizeObserver !== 'undefined') { | ||
return global$1.ResizeObserver; | ||
} | ||
return ResizeObserver; | ||
})(); | ||
return index; | ||
}))); |
{ | ||
"name": "resize-observer-polyfill", | ||
"author": "Denis Rul <que.etc@gmail.com>", | ||
"version": "1.5.0", | ||
"version": "1.5.1", | ||
"description": "A polyfill for the Resize Observer API", | ||
@@ -15,3 +15,3 @@ "main": "dist/ResizeObserver.js", | ||
"test:spec": "karma start --browsers Chrome && npm run test:spec:node", | ||
"test:spec:sauce": "karma start --sauce=windows && karma start --sauce=linux && karma start --sauce=osx && karma start --sauce=ios && karma start --sauce=android", | ||
"test:spec:sauce": "karma start --sauce=windows && karma start --sauce=linux && karma start --sauce=osx", | ||
"test:spec:node": "npm run build && node tests/node/index.js", | ||
@@ -46,26 +46,21 @@ "test:spec:custom": "karma start --no-browsers", | ||
"devDependencies": { | ||
"babel-core": "^6.26.0", | ||
"babel-eslint": "^8.0.2", | ||
"babel-plugin-transform-async-to-generator": "^6.24.1", | ||
"babel-plugin-transform-class-properties": "^6.24.1", | ||
"babel-plugin-transform-regenerator": "^6.26.0", | ||
"cpy-cli": "^1.0.1", | ||
"eslint": "^4.11.0", | ||
"jasmine": "^2.8.0", | ||
"jasmine-core": "^2.8.0", | ||
"karma": "^1.7.1", | ||
"karma-chrome-launcher": "^2.2.0", | ||
"karma-firefox-launcher": "^1.0.1", | ||
"karma-jasmine": "^1.1.0", | ||
"karma-jasmine-html-reporter": "^0.2.2", | ||
"karma-rollup-preprocessor": "^5.0.2", | ||
"karma-sauce-launcher": "^1.2.0", | ||
"karma-sourcemap-loader": "^0.3.7", | ||
"karma-spec-reporter": "0.0.31", | ||
"promise-polyfill": "^6.0.2", | ||
"regenerator-runtime": "^0.11.0", | ||
"rollup": "^0.51.6", | ||
"rollup-plugin-babel": "^3.0.2", | ||
"rollup-plugin-buble": "^0.16.0" | ||
"babel-eslint": "10.0.1", | ||
"cpy-cli": "2.0.0", | ||
"eslint": "5.10.0", | ||
"jasmine": "2.8.0", | ||
"jasmine-core": "2.8.0", | ||
"karma": "3.1.3", | ||
"karma-chrome-launcher": "2.2.0", | ||
"karma-firefox-launcher": "1.1.0", | ||
"karma-jasmine": "1.1.2", | ||
"karma-jasmine-html-reporter": "0.2.2", | ||
"karma-rollup-preprocessor": "6.1.1", | ||
"karma-sauce-launcher": "1.2.0", | ||
"karma-sourcemap-loader": "0.3.7", | ||
"karma-spec-reporter": "0.0.32", | ||
"promise-polyfill": "8.1.0", | ||
"rollup": "0.67.4", | ||
"rollup-plugin-typescript": "1.0.0", | ||
"typescript": "3.2.2" | ||
} | ||
} |
@@ -34,2 +34,8 @@ interface DOMRectReadOnly { | ||
interface ResizeObserver { | ||
observe(target: Element): void; | ||
unobserve(target: Element): void; | ||
disconnect(): void; | ||
} | ||
export default ResizeObserver; |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
147320
18
3689