You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
Vestride_Shuffle/dist/shuffle.js.map

1 line
78 KiB
Plaintext

{"version":3,"file":"shuffle.js","sources":["../node_modules/custom-event-polyfill/custom-event-polyfill.js","../node_modules/matches-selector/index.js","../node_modules/array-uniq/index.js","../node_modules/xtend/immutable.js","../node_modules/throttleit/index.js","../node_modules/array-parallel/index.js","../src/get-number.js","../src/point.js","../src/classes.js","../src/shuffle-item.js","../src/computed-size.js","../src/get-number-style.js","../src/sorter.js","../src/on-transition-end.js","../src/array-max.js","../src/array-min.js","../src/layout.js","../src/shuffle.js"],"sourcesContent":["// Polyfill for creating CustomEvents on IE9/10/11\n\n// code pulled from:\n// https://github.com/d4tocchini/customevent-polyfill\n// https://developer.mozilla.org/en-US/docs/Web/API/CustomEvent#Polyfill\n\ntry {\n var ce = new window.CustomEvent('test');\n ce.preventDefault();\n if (ce.defaultPrevented !== true) {\n // IE has problems with .preventDefault() on custom events\n // http://stackoverflow.com/questions/23349191\n throw new Error('Could not prevent default');\n }\n} catch(e) {\n var CustomEvent = function(event, params) {\n var evt, origPrevent;\n params = params || {\n bubbles: false,\n cancelable: false,\n detail: undefined\n };\n\n evt = document.createEvent(\"CustomEvent\");\n evt.initCustomEvent(event, params.bubbles, params.cancelable, params.detail);\n origPrevent = evt.preventDefault;\n evt.preventDefault = function () {\n origPrevent.call(this);\n try {\n Object.defineProperty(this, 'defaultPrevented', {\n get: function () {\n return true;\n }\n });\n } catch(e) {\n this.defaultPrevented = true;\n }\n };\n return evt;\n };\n\n CustomEvent.prototype = window.Event.prototype;\n window.CustomEvent = CustomEvent; // expose definition to window\n}\n","'use strict';\n\nvar proto = Element.prototype;\nvar vendor = proto.matches\n || proto.matchesSelector\n || proto.webkitMatchesSelector\n || proto.mozMatchesSelector\n || proto.msMatchesSelector\n || proto.oMatchesSelector;\n\nmodule.exports = match;\n\n/**\n * Match `el` to `selector`.\n *\n * @param {Element} el\n * @param {String} selector\n * @return {Boolean}\n * @api public\n */\n\nfunction match(el, selector) {\n if (vendor) return vendor.call(el, selector);\n var nodes = el.parentNode.querySelectorAll(selector);\n for (var i = 0; i < nodes.length; i++) {\n if (nodes[i] == el) return true;\n }\n return false;\n}","'use strict';\n\n// there's 3 implementations written in increasing order of efficiency\n\n// 1 - no Set type is defined\nfunction uniqNoSet(arr) {\n\tvar ret = [];\n\n\tfor (var i = 0; i < arr.length; i++) {\n\t\tif (ret.indexOf(arr[i]) === -1) {\n\t\t\tret.push(arr[i]);\n\t\t}\n\t}\n\n\treturn ret;\n}\n\n// 2 - a simple Set type is defined\nfunction uniqSet(arr) {\n\tvar seen = new Set();\n\treturn arr.filter(function (el) {\n\t\tif (!seen.has(el)) {\n\t\t\tseen.add(el);\n\t\t\treturn true;\n\t\t}\n\n\t\treturn false;\n\t});\n}\n\n// 3 - a standard Set type is defined and it has a forEach method\nfunction uniqSetWithForEach(arr) {\n\tvar ret = [];\n\n\t(new Set(arr)).forEach(function (el) {\n\t\tret.push(el);\n\t});\n\n\treturn ret;\n}\n\n// V8 currently has a broken implementation\n// https://github.com/joyent/node/issues/8449\nfunction doesForEachActuallyWork() {\n\tvar ret = false;\n\n\t(new Set([true])).forEach(function (el) {\n\t\tret = el;\n\t});\n\n\treturn ret === true;\n}\n\nif ('Set' in global) {\n\tif (typeof Set.prototype.forEach === 'function' && doesForEachActuallyWork()) {\n\t\tmodule.exports = uniqSetWithForEach;\n\t} else {\n\t\tmodule.exports = uniqSet;\n\t}\n} else {\n\tmodule.exports = uniqNoSet;\n}\n","module.exports = extend\n\nvar hasOwnProperty = Object.prototype.hasOwnProperty;\n\nfunction extend() {\n var target = {}\n\n for (var i = 0; i < arguments.length; i++) {\n var source = arguments[i]\n\n for (var key in source) {\n if (hasOwnProperty.call(source, key)) {\n target[key] = source[key]\n }\n }\n }\n\n return target\n}\n","module.exports = throttle;\n\n/**\n * Returns a new function that, when invoked, invokes `func` at most once per `wait` milliseconds.\n *\n * @param {Function} func Function to wrap.\n * @param {Number} wait Number of milliseconds that must elapse between `func` invocations.\n * @return {Function} A new function that wraps the `func` function passed in.\n */\n\nfunction throttle (func, wait) {\n var ctx, args, rtn, timeoutID; // caching\n var last = 0;\n\n return function throttled () {\n ctx = this;\n args = arguments;\n var delta = new Date() - last;\n if (!timeoutID)\n if (delta >= wait) call();\n else timeoutID = setTimeout(call, wait - delta);\n return rtn;\n };\n\n function call () {\n timeoutID = 0;\n last = +new Date();\n rtn = func.apply(ctx, args);\n ctx = null;\n args = null;\n }\n}\n","module.exports = function parallel(fns, context, callback) {\n if (!callback) {\n if (typeof context === 'function') {\n callback = context\n context = null\n } else {\n callback = noop\n }\n }\n\n var pending = fns && fns.length\n if (!pending) return callback(null, []);\n\n var finished = false\n var results = new Array(pending)\n\n fns.forEach(context ? function (fn, i) {\n fn.call(context, maybeDone(i))\n } : function (fn, i) {\n fn(maybeDone(i))\n })\n\n function maybeDone(i) {\n return function (err, result) {\n if (finished) return;\n\n if (err) {\n callback(err, results)\n finished = true\n return\n }\n\n results[i] = result\n\n if (!--pending) callback(null, results);\n }\n }\n}\n\nfunction noop() {}\n","/**\n * Always returns a numeric value, given a value. Logic from jQuery's `isNumeric`.\n * @param {*} value Possibly numeric value.\n * @return {number} `value` or zero if `value` isn't numeric.\n */\nexport default function getNumber(value) {\n return parseFloat(value) || 0;\n}\n","import getNumber from './get-number';\n\nclass Point {\n\n /**\n * Represents a coordinate pair.\n * @param {number} [x=0] X.\n * @param {number} [y=0] Y.\n */\n constructor(x, y) {\n this.x = getNumber(x);\n this.y = getNumber(y);\n }\n\n /**\n * Whether two points are equal.\n * @param {Point} a Point A.\n * @param {Point} b Point B.\n * @return {boolean}\n */\n static equals(a, b) {\n return a.x === b.x && a.y === b.y;\n }\n}\n\nexport default Point;\n","export default {\n BASE: 'shuffle',\n SHUFFLE_ITEM: 'shuffle-item',\n VISIBLE: 'shuffle-item--visible',\n HIDDEN: 'shuffle-item--hidden',\n};\n","import Point from './point';\nimport Classes from './classes';\n\nlet id = 0;\n\nclass ShuffleItem {\n constructor(element) {\n id += 1;\n this.id = id;\n this.element = element;\n this.isVisible = true;\n }\n\n show() {\n this.isVisible = true;\n this.element.classList.remove(Classes.HIDDEN);\n this.element.classList.add(Classes.VISIBLE);\n }\n\n hide() {\n this.isVisible = false;\n this.element.classList.remove(Classes.VISIBLE);\n this.element.classList.add(Classes.HIDDEN);\n }\n\n init() {\n this.addClasses([Classes.SHUFFLE_ITEM, Classes.VISIBLE]);\n this.applyCss(ShuffleItem.Css.INITIAL);\n this.scale = ShuffleItem.Scale.VISIBLE;\n this.point = new Point();\n }\n\n addClasses(classes) {\n classes.forEach((className) => {\n this.element.classList.add(className);\n });\n }\n\n removeClasses(classes) {\n classes.forEach((className) => {\n this.element.classList.remove(className);\n });\n }\n\n applyCss(obj) {\n Object.keys(obj).forEach((key) => {\n this.element.style[key] = obj[key];\n });\n }\n\n dispose() {\n this.removeClasses([\n Classes.HIDDEN,\n Classes.VISIBLE,\n Classes.SHUFFLE_ITEM,\n ]);\n\n this.element.removeAttribute('style');\n this.element = null;\n }\n}\n\nShuffleItem.Css = {\n INITIAL: {\n position: 'absolute',\n top: 0,\n left: 0,\n visibility: 'visible',\n 'will-change': 'transform',\n },\n VISIBLE: {\n before: {\n opacity: 1,\n visibility: 'visible',\n },\n after: {},\n },\n HIDDEN: {\n before: {\n opacity: 0,\n },\n after: {\n visibility: 'hidden',\n },\n },\n};\n\nShuffleItem.Scale = {\n VISIBLE: 1,\n HIDDEN: 0.001,\n};\n\nexport default ShuffleItem;\n","const element = document.body || document.documentElement;\nconst e = document.createElement('div');\ne.style.cssText = 'width:10px;padding:2px;box-sizing:border-box;';\nelement.appendChild(e);\n\nconst width = window.getComputedStyle(e, null).width;\nconst ret = width === '10px';\n\nelement.removeChild(e);\n\nexport default ret;\n","import getNumber from './get-number';\nimport COMPUTED_SIZE_INCLUDES_PADDING from './computed-size';\n\n/**\n * Retrieve the computed style for an element, parsed as a float.\n * @param {Element} element Element to get style for.\n * @param {string} style Style property.\n * @param {CSSStyleDeclaration} [styles] Optionally include clean styles to\n * use instead of asking for them again.\n * @return {number} The parsed computed value or zero if that fails because IE\n * will return 'auto' when the element doesn't have margins instead of\n * the computed style.\n */\nexport default function getNumberStyle(element, style,\n styles = window.getComputedStyle(element, null)) {\n let value = getNumber(styles[style]);\n\n // Support IE<=11 and W3C spec.\n if (!COMPUTED_SIZE_INCLUDES_PADDING && style === 'width') {\n value += getNumber(styles.paddingLeft) +\n getNumber(styles.paddingRight) +\n getNumber(styles.borderLeftWidth) +\n getNumber(styles.borderRightWidth);\n } else if (!COMPUTED_SIZE_INCLUDES_PADDING && style === 'height') {\n value += getNumber(styles.paddingTop) +\n getNumber(styles.paddingBottom) +\n getNumber(styles.borderTopWidth) +\n getNumber(styles.borderBottomWidth);\n }\n\n return value;\n}\n","import xtend from 'xtend';\n\n/**\n * Fisher-Yates shuffle.\n * http://stackoverflow.com/a/962890/373422\n * https://bost.ocks.org/mike/shuffle/\n * @param {Array} array Array to shuffle.\n * @return {Array} Randomly sorted array.\n */\nfunction randomize(array) {\n let n = array.length;\n\n while (n) {\n n -= 1;\n const i = Math.floor(Math.random() * (n + 1));\n const temp = array[i];\n array[i] = array[n];\n array[n] = temp;\n }\n\n return array;\n}\n\nconst defaults = {\n // Use array.reverse() to reverse the results\n reverse: false,\n\n // Sorting function\n by: null,\n\n // If true, this will skip the sorting and return a randomized order in the array\n randomize: false,\n\n // Determines which property of each item in the array is passed to the\n // sorting method.\n key: 'element',\n};\n\n// You can return `undefined` from the `by` function to revert to DOM order.\nexport default function sorter(arr, options) {\n const opts = xtend(defaults, options);\n const original = [].slice.call(arr);\n let revert = false;\n\n if (!arr.length) {\n return [];\n }\n\n if (opts.randomize) {\n return randomize(arr);\n }\n\n // Sort the elements by the opts.by function.\n // If we don't have opts.by, default to DOM order\n if (typeof opts.by === 'function') {\n arr.sort((a, b) => {\n // Exit early if we already know we want to revert\n if (revert) {\n return 0;\n }\n\n const valA = opts.by(a[opts.key]);\n const valB = opts.by(b[opts.key]);\n\n // If both values are undefined, use the DOM order\n if (valA === undefined && valB === undefined) {\n revert = true;\n return 0;\n }\n\n if (valA < valB || valA === 'sortFirst' || valB === 'sortLast') {\n return -1;\n }\n\n if (valA > valB || valA === 'sortLast' || valB === 'sortFirst') {\n return 1;\n }\n\n return 0;\n });\n }\n\n // Revert to the original array if necessary\n if (revert) {\n return original;\n }\n\n if (opts.reverse) {\n arr.reverse();\n }\n\n return arr;\n}\n","const transitions = {};\nconst eventName = 'transitionend';\nlet count = 0;\n\nfunction uniqueId() {\n count += 1;\n return eventName + count;\n}\n\nexport function cancelTransitionEnd(id) {\n if (transitions[id]) {\n transitions[id].element.removeEventListener(eventName, transitions[id].listener);\n transitions[id] = null;\n return true;\n }\n\n return false;\n}\n\nexport function onTransitionEnd(element, callback) {\n const id = uniqueId();\n const listener = (evt) => {\n if (evt.currentTarget === evt.target) {\n cancelTransitionEnd(id);\n callback(evt);\n }\n };\n\n element.addEventListener(eventName, listener);\n\n transitions[id] = { element, listener };\n\n return id;\n}\n","export default function arrayMax(array) {\n return Math.max.apply(Math, array); // eslint-disable-line prefer-spread\n}\n","export default function arrayMin(array) {\n return Math.min.apply(Math, array); // eslint-disable-line prefer-spread\n}\n","import Point from './point';\nimport arrayMax from './array-max';\nimport arrayMin from './array-min';\n\n/**\n * Determine the number of columns an items spans.\n * @param {number} itemWidth Width of the item.\n * @param {number} columnWidth Width of the column (includes gutter).\n * @param {number} columns Total number of columns\n * @param {number} threshold A buffer value for the size of the column to fit.\n * @return {number}\n */\nexport function getColumnSpan(itemWidth, columnWidth, columns, threshold) {\n let columnSpan = itemWidth / columnWidth;\n\n // If the difference between the rounded column span number and the\n // calculated column span number is really small, round the number to\n // make it fit.\n if (Math.abs(Math.round(columnSpan) - columnSpan) < threshold) {\n // e.g. columnSpan = 4.0089945390298745\n columnSpan = Math.round(columnSpan);\n }\n\n // Ensure the column span is not more than the amount of columns in the whole layout.\n return Math.min(Math.ceil(columnSpan), columns);\n}\n\n/**\n * Retrieves the column set to use for placement.\n * @param {number} columnSpan The number of columns this current item spans.\n * @param {number} columns The total columns in the grid.\n * @return {Array.<number>} An array of numbers represeting the column set.\n */\nexport function getAvailablePositions(positions, columnSpan, columns) {\n // The item spans only one column.\n if (columnSpan === 1) {\n return positions;\n }\n\n // The item spans more than one column, figure out how many different\n // places it could fit horizontally.\n // The group count is the number of places within the positions this block\n // could fit, ignoring the current positions of items.\n // Imagine a 2 column brick as the second item in a 4 column grid with\n // 10px height each. Find the places it would fit:\n // [20, 10, 10, 0]\n // | | |\n // * * *\n //\n // Then take the places which fit and get the bigger of the two:\n // max([20, 10]), max([10, 10]), max([10, 0]) = [20, 10, 0]\n //\n // Next, find the first smallest number (the short column).\n // [20, 10, 0]\n // |\n // *\n //\n // And that's where it should be placed!\n //\n // Another example where the second column's item extends past the first:\n // [10, 20, 10, 0] => [20, 20, 10] => 10\n const available = [];\n\n // For how many possible positions for this item there are.\n for (let i = 0; i <= columns - columnSpan; i++) {\n // Find the bigger value for each place it could fit.\n available.push(arrayMax(positions.slice(i, i + columnSpan)));\n }\n\n return available;\n}\n\n/**\n * Find index of short column, the first from the left where this item will go.\n *\n * @param {Array.<number>} positions The array to search for the smallest number.\n * @param {number} buffer Optional buffer which is very useful when the height\n * is a percentage of the width.\n * @return {number} Index of the short column.\n */\nexport function getShortColumn(positions, buffer) {\n const minPosition = arrayMin(positions);\n for (let i = 0, len = positions.length; i < len; i++) {\n if (positions[i] >= minPosition - buffer && positions[i] <= minPosition + buffer) {\n return i;\n }\n }\n\n return 0;\n}\n\n/**\n * Determine the location of the next item, based on its size.\n * @param {Object} itemSize Object with width and height.\n * @param {Array.<number>} positions Positions of the other current items.\n * @param {number} gridSize The column width or row height.\n * @param {number} total The total number of columns or rows.\n * @param {number} threshold Buffer value for the column to fit.\n * @param {number} buffer Vertical buffer for the height of items.\n * @return {Point}\n */\nexport function getItemPosition({ itemSize, positions, gridSize, total, threshold, buffer }) {\n const span = getColumnSpan(itemSize.width, gridSize, total, threshold);\n const setY = getAvailablePositions(positions, span, total);\n const shortColumnIndex = getShortColumn(setY, buffer);\n\n // Position the item\n const point = new Point(\n Math.round(gridSize * shortColumnIndex),\n Math.round(setY[shortColumnIndex]));\n\n // Update the columns array with the new values for each column.\n // e.g. before the update the columns could be [250, 0, 0, 0] for an item\n // which spans 2 columns. After it would be [250, itemHeight, itemHeight, 0].\n const setHeight = setY[shortColumnIndex] + itemSize.height;\n for (let i = 0; i < span; i++) {\n positions[shortColumnIndex + i] = setHeight;\n }\n\n return point;\n}\n","import 'custom-event-polyfill';\nimport matches from 'matches-selector';\nimport arrayUnique from 'array-uniq';\nimport xtend from 'xtend';\nimport throttle from 'throttleit';\nimport parallel from 'array-parallel';\nimport Point from './point';\nimport ShuffleItem from './shuffle-item';\nimport Classes from './classes';\nimport getNumberStyle from './get-number-style';\nimport sorter from './sorter';\nimport { onTransitionEnd, cancelTransitionEnd } from './on-transition-end';\nimport { getItemPosition, getColumnSpan, getAvailablePositions, getShortColumn } from './layout';\nimport arrayMax from './array-max';\n\nfunction toArray(arrayLike) {\n return Array.prototype.slice.call(arrayLike);\n}\n\nfunction arrayIncludes(array, obj) {\n return array.indexOf(obj) > -1;\n}\n\n// Used for unique instance variables\nlet id = 0;\n\nclass Shuffle {\n\n /**\n * Categorize, sort, and filter a responsive grid of items.\n *\n * @param {Element} element An element which is the parent container for the grid items.\n * @param {Object} [options=Shuffle.options] Options object.\n * @constructor\n */\n constructor(element, options = {}) {\n this.options = xtend(Shuffle.options, options);\n\n this.useSizer = false;\n this.lastSort = {};\n this.group = Shuffle.ALL_ITEMS;\n this.lastFilter = Shuffle.ALL_ITEMS;\n this.isEnabled = true;\n this.isDestroyed = false;\n this.isInitialized = false;\n this._transitions = [];\n this.isTransitioning = false;\n this._queue = [];\n\n const el = this._getElementOption(element);\n\n if (!el) {\n throw new TypeError('Shuffle needs to be initialized with an element.');\n }\n\n this.element = el;\n this.id = 'shuffle_' + id;\n id += 1;\n\n this._init();\n this.isInitialized = true;\n }\n\n _init() {\n this.items = this._getItems();\n\n this.options.sizer = this._getElementOption(this.options.sizer);\n\n if (this.options.sizer) {\n this.useSizer = true;\n }\n\n // Add class and invalidate styles\n this.element.classList.add(Shuffle.Classes.BASE);\n\n // Set initial css for each item\n this._initItems();\n\n // Bind resize events\n this._onResize = this._getResizeFunction();\n window.addEventListener('resize', this._onResize);\n\n // Get container css all in one request. Causes reflow\n const containerCss = window.getComputedStyle(this.element, null);\n const containerWidth = Shuffle.getSize(this.element).width;\n\n // Add styles to the container if it doesn't have them.\n this._validateStyles(containerCss);\n\n // We already got the container's width above, no need to cause another\n // reflow getting it again... Calculate the number of columns there will be\n this._setColumns(containerWidth);\n\n // Kick off!\n this.filter(this.options.group, this.options.initialSort);\n\n // The shuffle items haven't had transitions set on them yet so the user\n // doesn't see the first layout. Set them now that the first layout is done.\n // First, however, a synchronous layout must be caused for the previous\n // styles to be applied without transitions.\n this.element.offsetWidth; // eslint-disable-line no-unused-expressions\n this._setTransitions();\n this.element.style.transition = 'height ' + this.options.speed + 'ms ' + this.options.easing;\n }\n\n /**\n * Returns a throttled and proxied function for the resize handler.\n * @return {Function}\n * @private\n */\n _getResizeFunction() {\n const resizeFunction = this._handleResize.bind(this);\n return this.options.throttle ?\n this.options.throttle(resizeFunction, this.options.throttleTime) :\n resizeFunction;\n }\n\n /**\n * Retrieve an element from an option.\n * @param {string|jQuery|Element} option The option to check.\n * @return {?Element} The plain element or null.\n * @private\n */\n _getElementOption(option) {\n // If column width is a string, treat is as a selector and search for the\n // sizer element within the outermost container\n if (typeof option === 'string') {\n return this.element.querySelector(option);\n\n // Check for an element\n } else if (option && option.nodeType && option.nodeType === 1) {\n return option;\n\n // Check for jQuery object\n } else if (option && option.jquery) {\n return option[0];\n }\n\n return null;\n }\n\n /**\n * Ensures the shuffle container has the css styles it needs applied to it.\n * @param {Object} styles Key value pairs for position and overflow.\n * @private\n */\n _validateStyles(styles) {\n // Position cannot be static.\n if (styles.position === 'static') {\n this.element.style.position = 'relative';\n }\n\n // Overflow has to be hidden.\n if (styles.overflow !== 'hidden') {\n this.element.style.overflow = 'hidden';\n }\n }\n\n /**\n * Filter the elements by a category.\n * @param {string} [category] Category to filter by. If it's given, the last\n * category will be used to filter the items.\n * @param {Array} [collection] Optionally filter a collection. Defaults to\n * all the items.\n * @return {!{visible: Array, hidden: Array}}\n * @private\n */\n _filter(category = this.lastFilter, collection = this.items) {\n const set = this._getFilteredSets(category, collection);\n\n // Individually add/remove hidden/visible classes\n this._toggleFilterClasses(set);\n\n // Save the last filter in case elements are appended.\n this.lastFilter = category;\n\n // This is saved mainly because providing a filter function (like searching)\n // will overwrite the `lastFilter` property every time its called.\n if (typeof category === 'string') {\n this.group = category;\n }\n\n return set;\n }\n\n /**\n * Returns an object containing the visible and hidden elements.\n * @param {string|Function} category Category or function to filter by.\n * @param {Array.<Element>} items A collection of items to filter.\n * @return {!{visible: Array, hidden: Array}}\n * @private\n */\n _getFilteredSets(category, items) {\n let visible = [];\n const hidden = [];\n\n // category === 'all', add visible class to everything\n if (category === Shuffle.ALL_ITEMS) {\n visible = items;\n\n // Loop through each item and use provided function to determine\n // whether to hide it or not.\n } else {\n items.forEach((item) => {\n if (this._doesPassFilter(category, item.element)) {\n visible.push(item);\n } else {\n hidden.push(item);\n }\n });\n }\n\n return {\n visible,\n hidden,\n };\n }\n\n /**\n * Test an item to see if it passes a category.\n * @param {string|Function} category Category or function to filter by.\n * @param {Element} element An element to test.\n * @return {boolean} Whether it passes the category/filter.\n * @private\n */\n _doesPassFilter(category, element) {\n if (typeof category === 'function') {\n return category.call(element, element, this);\n }\n\n // Check each element's data-groups attribute against the given category.\n const attr = element.getAttribute('data-' + Shuffle.FILTER_ATTRIBUTE_KEY);\n const keys = this.options.delimeter ?\n attr.split(this.options.delimeter) :\n JSON.parse(attr);\n\n function testCategory(category) {\n return arrayIncludes(keys, category);\n }\n\n if (Array.isArray(category)) {\n if (this.options.filterMode === Shuffle.FilterMode.ANY) {\n return category.some(testCategory);\n }\n return category.every(testCategory);\n }\n\n return arrayIncludes(keys, category);\n }\n\n /**\n * Toggles the visible and hidden class names.\n * @param {{visible, hidden}} Object with visible and hidden arrays.\n * @private\n */\n _toggleFilterClasses({ visible, hidden }) {\n visible.forEach((item) => {\n item.show();\n });\n\n hidden.forEach((item) => {\n item.hide();\n });\n }\n\n /**\n * Set the initial css for each item\n * @param {Array.<ShuffleItem>} [items] Optionally specifiy at set to initialize.\n * @private\n */\n _initItems(items = this.items) {\n items.forEach((item) => {\n item.init();\n });\n }\n\n /**\n * Remove element reference and styles.\n * @private\n */\n _disposeItems(items = this.items) {\n items.forEach((item) => {\n item.dispose();\n });\n }\n\n /**\n * Updates the visible item count.\n * @private\n */\n _updateItemCount() {\n this.visibleItems = this._getFilteredItems().length;\n }\n\n /**\n * Sets css transform transition on a group of elements. This is not executed\n * at the same time as `item.init` so that transitions don't occur upon\n * initialization of Shuffle.\n * @param {Array.<ShuffleItem>} items Shuffle items to set transitions on.\n * @private\n */\n _setTransitions(items = this.items) {\n const speed = this.options.speed;\n const easing = this.options.easing;\n\n const str = this.options.useTransforms ?\n `transform ${speed}ms ${easing}, opacity ${speed}ms ${easing}` :\n `top ${speed}ms ${easing}, left ${speed}ms ${easing}, opacity ${speed}ms ${easing}`;\n\n items.forEach((item) => {\n item.element.style.transition = str;\n });\n }\n\n _getItems() {\n return toArray(this.element.children)\n .filter(el => matches(el, this.options.itemSelector))\n .map(el => new ShuffleItem(el));\n }\n\n /**\n * When new elements are added to the shuffle container, update the array of\n * items because that is the order `_layout` calls them.\n */\n _updateItemsOrder() {\n const children = this.element.children;\n this.items = sorter(this.items, {\n by(element) {\n return Array.prototype.indexOf.call(children, element);\n },\n });\n }\n\n _getFilteredItems() {\n return this.items.filter(item => item.isVisible);\n }\n\n _getConcealedItems() {\n return this.items.filter(item => !item.isVisible);\n }\n\n /**\n * Returns the column size, based on column width and sizer options.\n * @param {number} containerWidth Size of the parent container.\n * @param {number} gutterSize Size of the gutters.\n * @return {number}\n * @private\n */\n _getColumnSize(containerWidth, gutterSize) {\n let size;\n\n // If the columnWidth property is a function, then the grid is fluid\n if (typeof this.options.columnWidth === 'function') {\n size = this.options.columnWidth(containerWidth);\n\n // columnWidth option isn't a function, are they using a sizing element?\n } else if (this.useSizer) {\n size = Shuffle.getSize(this.options.sizer).width;\n\n // if not, how about the explicitly set option?\n } else if (this.options.columnWidth) {\n size = this.options.columnWidth;\n\n // or use the size of the first item\n } else if (this.items.length > 0) {\n size = Shuffle.getSize(this.items[0].element, true).width;\n\n // if there's no items, use size of container\n } else {\n size = containerWidth;\n }\n\n // Don't let them set a column width of zero.\n if (size === 0) {\n size = containerWidth;\n }\n\n return size + gutterSize;\n }\n\n /**\n * Returns the gutter size, based on gutter width and sizer options.\n * @param {number} containerWidth Size of the parent container.\n * @return {number}\n * @private\n */\n _getGutterSize(containerWidth) {\n let size;\n if (typeof this.options.gutterWidth === 'function') {\n size = this.options.gutterWidth(containerWidth);\n } else if (this.useSizer) {\n size = getNumberStyle(this.options.sizer, 'marginLeft');\n } else {\n size = this.options.gutterWidth;\n }\n\n return size;\n }\n\n /**\n * Calculate the number of columns to be used. Gets css if using sizer element.\n * @param {number} [containerWidth] Optionally specify a container width if\n * it's already available.\n */\n _setColumns(containerWidth = Shuffle.getSize(this.element).width) {\n const gutter = this._getGutterSize(containerWidth);\n const columnWidth = this._getColumnSize(containerWidth, gutter);\n let calculatedColumns = (containerWidth + gutter) / columnWidth;\n\n // Widths given from getStyles are not precise enough...\n if (Math.abs(Math.round(calculatedColumns) - calculatedColumns) <\n this.options.columnThreshold) {\n // e.g. calculatedColumns = 11.998876\n calculatedColumns = Math.round(calculatedColumns);\n }\n\n this.cols = Math.max(Math.floor(calculatedColumns), 1);\n this.containerWidth = containerWidth;\n this.colWidth = columnWidth;\n }\n\n /**\n * Adjust the height of the grid\n */\n _setContainerSize() {\n this.element.style.height = this._getContainerSize() + 'px';\n }\n\n /**\n * Based on the column heights, it returns the biggest one.\n * @return {number}\n * @private\n */\n _getContainerSize() {\n return arrayMax(this.positions);\n }\n\n /**\n * Get the clamped stagger amount.\n * @param {number} index Index of the item to be staggered.\n * @return {number}\n */\n _getStaggerAmount(index) {\n return Math.min(index * this.options.staggerAmount, this.options.staggerAmountMax);\n }\n\n /**\n * @return {boolean} Whether the event was prevented or not.\n */\n _dispatch(name, details = {}) {\n if (this.isDestroyed) {\n return false;\n }\n\n details.shuffle = this;\n return !this.element.dispatchEvent(new CustomEvent(name, {\n bubbles: true,\n cancelable: false,\n detail: details,\n }));\n }\n\n /**\n * Zeros out the y columns array, which is used to determine item placement.\n * @private\n */\n _resetCols() {\n let i = this.cols;\n this.positions = [];\n while (i) {\n i -= 1;\n this.positions.push(0);\n }\n }\n\n /**\n * Loops through each item that should be shown and calculates the x, y position.\n * @param {Array.<ShuffleItem>} items Array of items that will be shown/layed\n * out in order in their array.\n */\n _layout(items) {\n let count = 0;\n items.forEach((item) => {\n const currPos = item.point;\n const currScale = item.scale;\n const itemSize = Shuffle.getSize(item.element, true);\n const pos = this._getItemPosition(itemSize);\n\n function callback() {\n item.element.style.transitionDelay = '';\n item.applyCss(ShuffleItem.Css.VISIBLE.after);\n }\n\n // If the item will not change its position, do not add it to the render\n // queue. Transitions don't fire when setting a property to the same value.\n if (Point.equals(currPos, pos) && currScale === ShuffleItem.Scale.VISIBLE) {\n item.applyCss(ShuffleItem.Css.VISIBLE.before);\n callback();\n return;\n }\n\n item.point = pos;\n item.scale = ShuffleItem.Scale.VISIBLE;\n\n // Use xtend here to clone the object so that the `before` object isn't\n // modified when the transition delay is added.\n const styles = xtend(ShuffleItem.Css.VISIBLE.before);\n styles.transitionDelay = this._getStaggerAmount(count) + 'ms';\n\n this._queue.push({\n item,\n styles,\n callback,\n });\n\n count += 1;\n });\n }\n\n /**\n * Determine the location of the next item, based on its size.\n * @param {{width: number, height: number}} itemSize Object with width and height.\n * @return {Point}\n * @private\n */\n _getItemPosition(itemSize) {\n return getItemPosition({\n itemSize,\n positions: this.positions,\n gridSize: this.colWidth,\n total: this.cols,\n threshold: this.options.columnThreshold,\n buffer: this.options.buffer,\n });\n }\n\n /**\n * Hides the elements that don't match our filter.\n * @param {Array.<ShuffleItem>} collection Collection to shrink.\n * @private\n */\n _shrink(collection = this._getConcealedItems()) {\n let count = 0;\n collection.forEach((item) => {\n function callback() {\n item.applyCss(ShuffleItem.Css.HIDDEN.after);\n }\n\n // Continuing would add a transitionend event listener to the element, but\n // that listener would not execute because the transform and opacity would\n // stay the same.\n // The callback is executed here because it is not guaranteed to be called\n // after the transitionend event because the transitionend could be\n // canceled if another animation starts.\n if (item.scale === ShuffleItem.Scale.HIDDEN) {\n item.applyCss(ShuffleItem.Css.HIDDEN.before);\n callback();\n return;\n }\n\n item.scale = ShuffleItem.Scale.HIDDEN;\n\n const styles = xtend(ShuffleItem.Css.HIDDEN.before);\n styles.transitionDelay = this._getStaggerAmount(count) + 'ms';\n\n this._queue.push({\n item,\n styles,\n callback,\n });\n\n count += 1;\n });\n }\n\n /**\n * Resize handler.\n * @private\n */\n _handleResize() {\n // If shuffle is disabled, destroyed, don't do anything\n if (!this.isEnabled || this.isDestroyed) {\n return;\n }\n\n // Will need to check height in the future if it's layed out horizontaly\n const containerWidth = Shuffle.getSize(this.element).width;\n\n // containerWidth hasn't changed, don't do anything\n if (containerWidth === this.containerWidth) {\n return;\n }\n\n this.update();\n }\n\n /**\n * Returns styles which will be applied to the an item for a transition.\n * @param {Object} obj Transition options.\n * @return {!Object} Transforms for transitions, left/top for animate.\n * @private\n */\n _getStylesForTransition({ item, styles }) {\n if (!styles.transitionDelay) {\n styles.transitionDelay = '0ms';\n }\n\n const x = item.point.x;\n const y = item.point.y;\n\n if (this.options.useTransforms) {\n styles.transform = `translate(${x}px, ${y}px) scale(${item.scale})`;\n } else {\n styles.left = x + 'px';\n styles.top = y + 'px';\n }\n\n return styles;\n }\n\n /**\n * Listen for the transition end on an element and execute the itemCallback\n * when it finishes.\n * @param {Element} element Element to listen on.\n * @param {Function} itemCallback Callback for the item.\n * @param {Function} done Callback to notify `parallel` that this one is done.\n */\n _whenTransitionDone(element, itemCallback, done) {\n const id = onTransitionEnd(element, (evt) => {\n itemCallback();\n done(null, evt);\n });\n\n this._transitions.push(id);\n }\n\n /**\n * Return a function which will set CSS styles and call the `done` function\n * when (if) the transition finishes.\n * @param {Object} opts Transition object.\n * @return {Function} A function to be called with a `done` function.\n */\n _getTransitionFunction(opts) {\n return (done) => {\n opts.item.applyCss(this._getStylesForTransition(opts));\n this._whenTransitionDone(opts.item.element, opts.callback, done);\n };\n }\n\n /**\n * Execute the styles gathered in the style queue. This applies styles to elements,\n * triggering transitions.\n * @private\n */\n _processQueue() {\n if (this.isTransitioning) {\n this._cancelMovement();\n }\n\n const hasSpeed = this.options.speed > 0;\n const hasQueue = this._queue.length > 0;\n\n if (hasQueue && hasSpeed && this.isInitialized) {\n this._startTransitions(this._queue);\n } else if (hasQueue) {\n this._styleImmediately(this._queue);\n this._dispatchLayout();\n\n // A call to layout happened, but none of the newly visible items will\n // change position or the transition duration is zero, which will not trigger\n // the transitionend event.\n } else {\n this._dispatchLayout();\n }\n\n // Remove everything in the style queue\n this._queue.length = 0;\n }\n\n /**\n * Wait for each transition to finish, the emit the layout event.\n * @param {Array.<Object>} transitions Array of transition objects.\n */\n _startTransitions(transitions) {\n // Set flag that shuffle is currently in motion.\n this.isTransitioning = true;\n\n // Create an array of functions to be called.\n const callbacks = transitions.map(obj => this._getTransitionFunction(obj));\n\n parallel(callbacks, this._movementFinished.bind(this));\n }\n\n _cancelMovement() {\n // Remove the transition end event for each listener.\n this._transitions.forEach(cancelTransitionEnd);\n\n // Reset the array.\n this._transitions.length = 0;\n\n // Show it's no longer active.\n this.isTransitioning = false;\n }\n\n /**\n * Apply styles without a transition.\n * @param {Array.<Object>} objects Array of transition objects.\n * @private\n */\n _styleImmediately(objects) {\n if (objects.length) {\n const elements = objects.map(obj => obj.item.element);\n\n Shuffle._skipTransitions(elements, () => {\n objects.forEach((obj) => {\n obj.item.applyCss(this._getStylesForTransition(obj));\n obj.callback();\n });\n });\n }\n }\n\n _movementFinished() {\n this._transitions.length = 0;\n this.isTransitioning = false;\n this._dispatchLayout();\n }\n\n _dispatchLayout() {\n this._dispatch(Shuffle.EventType.LAYOUT);\n }\n\n /**\n * The magic. This is what makes the plugin 'shuffle'\n * @param {string|Function|Array.<string>} [category] Category to filter by.\n * Can be a function, string, or array of strings.\n * @param {Object} [sortObj] A sort object which can sort the visible set\n */\n filter(category, sortObj) {\n if (!this.isEnabled) {\n return;\n }\n\n if (!category || (category && category.length === 0)) {\n category = Shuffle.ALL_ITEMS; // eslint-disable-line no-param-reassign\n }\n\n this._filter(category);\n\n // Shrink each hidden item\n this._shrink();\n\n // How many visible elements?\n this._updateItemCount();\n\n // Update transforms on visible elements so they will animate to their new positions.\n this.sort(sortObj);\n }\n\n /**\n * Gets the visible elements, sorts them, and passes them to layout.\n * @param {Object} opts the options object for the sorted plugin\n */\n sort(opts = this.lastSort) {\n if (!this.isEnabled) {\n return;\n }\n\n this._resetCols();\n\n let items = this._getFilteredItems();\n items = sorter(items, opts);\n\n this._layout(items);\n\n // `_layout` always happens after `_shrink`, so it's safe to process the style\n // queue here with styles from the shrink method.\n this._processQueue();\n\n // Adjust the height of the container.\n this._setContainerSize();\n\n this.lastSort = opts;\n }\n\n /**\n * Reposition everything.\n * @param {boolean} isOnlyLayout If true, column and gutter widths won't be\n * recalculated.\n */\n update(isOnlyLayout) {\n if (this.isEnabled) {\n if (!isOnlyLayout) {\n // Get updated colCount\n this._setColumns();\n }\n\n // Layout items\n this.sort();\n }\n }\n\n /**\n * Use this instead of `update()` if you don't need the columns and gutters updated\n * Maybe an image inside `shuffle` loaded (and now has a height), which means calculations\n * could be off.\n */\n layout() {\n this.update(true);\n }\n\n /**\n * New items have been appended to shuffle. Mix them in with the current\n * filter or sort status.\n * @param {Array.<Element>} newItems Collection of new items.\n */\n add(newItems) {\n const items = arrayUnique(newItems).map(el => new ShuffleItem(el));\n\n // Add classes and set initial positions.\n this._initItems(items);\n\n // Add transition to each item.\n this._setTransitions(items);\n\n // Update the list of items.\n this.items = this.items.concat(items);\n this._updateItemsOrder();\n this.filter(this.lastFilter);\n }\n\n /**\n * Disables shuffle from updating dimensions and layout on resize\n */\n disable() {\n this.isEnabled = false;\n }\n\n /**\n * Enables shuffle again\n * @param {boolean} [isUpdateLayout=true] if undefined, shuffle will update columns and gutters\n */\n enable(isUpdateLayout) {\n this.isEnabled = true;\n if (isUpdateLayout !== false) {\n this.update();\n }\n }\n\n /**\n * Remove 1 or more shuffle items\n * @param {Array.<Element>} elements An array containing one or more\n * elements in shuffle\n * @return {Shuffle} The shuffle object\n */\n remove(elements) {\n if (!elements.length) {\n return;\n }\n\n const collection = arrayUnique(elements);\n\n const oldItems = collection\n .map(element => this.getItemByElement(element))\n .filter(item => !!item);\n\n const handleLayout = () => {\n this.element.removeEventListener(Shuffle.EventType.LAYOUT, handleLayout);\n this._disposeItems(oldItems);\n\n // Remove the collection in the callback\n collection.forEach((element) => {\n element.parentNode.removeChild(element);\n });\n\n this._dispatch(Shuffle.EventType.REMOVED, { collection });\n };\n\n // Hide collection first.\n this._toggleFilterClasses({\n visible: [],\n hidden: oldItems,\n });\n\n this._shrink(oldItems);\n\n this.sort();\n\n // Update the list of items here because `remove` could be called again\n // with an item that is in the process of being removed.\n this.items = this.items.filter(item => !arrayIncludes(oldItems, item));\n this._updateItemCount();\n\n this.element.addEventListener(Shuffle.EventType.LAYOUT, handleLayout);\n }\n\n /**\n * Retrieve a shuffle item by its element.\n * @param {Element} element Element to look for.\n * @return {?ShuffleItem} A shuffle item or null if it's not found.\n */\n getItemByElement(element) {\n for (let i = this.items.length - 1; i >= 0; i--) {\n if (this.items[i].element === element) {\n return this.items[i];\n }\n }\n\n return null;\n }\n\n /**\n * Destroys shuffle, removes events, styles, and classes\n */\n destroy() {\n this._cancelMovement();\n window.removeEventListener('resize', this._onResize);\n\n // Reset container styles\n this.element.classList.remove('shuffle');\n this.element.removeAttribute('style');\n\n // Reset individual item styles\n this._disposeItems();\n\n // Null DOM references\n this.items = null;\n this.options.sizer = null;\n this.element = null;\n this._transitions = null;\n\n // Set a flag so if a debounced resize has been triggered,\n // it can first check if it is actually isDestroyed and not doing anything\n this.isDestroyed = true;\n }\n\n /**\n * Returns the outer width of an element, optionally including its margins.\n *\n * There are a few different methods for getting the width of an element, none of\n * which work perfectly for all Shuffle's use cases.\n *\n * 1. getBoundingClientRect() `left` and `right` properties.\n * - Accounts for transform scaled elements, making it useless for Shuffle\n * elements which have shrunk.\n * 2. The `offsetWidth` property.\n * - This value stays the same regardless of the elements transform property,\n * however, it does not return subpixel values.\n * 3. getComputedStyle()\n * - This works great Chrome, Firefox, Safari, but IE<=11 does not include\n * padding and border when box-sizing: border-box is set, requiring a feature\n * test and extra work to add the padding back for IE and other browsers which\n * follow the W3C spec here.\n *\n * @param {Element} element The element.\n * @param {boolean} [includeMargins] Whether to include margins. Default is false.\n * @return {{width: number, height: number}} The width and height.\n */\n static getSize(element, includeMargins) {\n // Store the styles so that they can be used by others without asking for it again.\n const styles = window.getComputedStyle(element, null);\n let width = getNumberStyle(element, 'width', styles);\n let height = getNumberStyle(element, 'height', styles);\n\n if (includeMargins) {\n const marginLeft = getNumberStyle(element, 'marginLeft', styles);\n const marginRight = getNumberStyle(element, 'marginRight', styles);\n const marginTop = getNumberStyle(element, 'marginTop', styles);\n const marginBottom = getNumberStyle(element, 'marginBottom', styles);\n width += marginLeft + marginRight;\n height += marginTop + marginBottom;\n }\n\n return {\n width,\n height,\n };\n }\n\n /**\n * Change a property or execute a function which will not have a transition\n * @param {Array.<Element>} elements DOM elements that won't be transitioned.\n * @param {Function} callback A function which will be called while transition\n * is set to 0ms.\n * @private\n */\n static _skipTransitions(elements, callback) {\n const zero = '0ms';\n\n // Save current duration and delay.\n const data = elements.map((element) => {\n const style = element.style;\n const duration = style.transitionDuration;\n const delay = style.transitionDelay;\n\n // Set the duration to zero so it happens immediately\n style.transitionDuration = zero;\n style.transitionDelay = zero;\n\n return {\n duration,\n delay,\n };\n });\n\n callback();\n\n // Cause reflow.\n elements[0].offsetWidth; // eslint-disable-line no-unused-expressions\n\n // Put the duration back\n elements.forEach((element, i) => {\n element.style.transitionDuration = data[i].duration;\n element.style.transitionDelay = data[i].delay;\n });\n }\n}\n\nShuffle.ShuffleItem = ShuffleItem;\n\nShuffle.ALL_ITEMS = 'all';\nShuffle.FILTER_ATTRIBUTE_KEY = 'groups';\n\n/**\n * @enum {string}\n */\nShuffle.EventType = {\n LAYOUT: 'shuffle:layout',\n REMOVED: 'shuffle:removed',\n};\n\n/** @enum {string} */\nShuffle.Classes = Classes;\n\n/**\n * @enum {string}\n */\nShuffle.FilterMode = {\n ANY: 'any',\n ALL: 'all',\n};\n\n// Overrideable options\nShuffle.options = {\n // Initial filter group.\n group: Shuffle.ALL_ITEMS,\n\n // Transition/animation speed (milliseconds).\n speed: 250,\n\n // CSS easing function to use.\n easing: 'ease',\n\n // e.g. '.picture-item'.\n itemSelector: '*',\n\n // Element or selector string. Use an element to determine the size of columns\n // and gutters.\n sizer: null,\n\n // A static number or function that tells the plugin how wide the gutters\n // between columns are (in pixels).\n gutterWidth: 0,\n\n // A static number or function that returns a number which tells the plugin\n // how wide the columns are (in pixels).\n columnWidth: 0,\n\n // If your group is not json, and is comma delimeted, you could set delimeter\n // to ','.\n delimeter: null,\n\n // Useful for percentage based heights when they might not always be exactly\n // the same (in pixels).\n buffer: 0,\n\n // Reading the width of elements isn't precise enough and can cause columns to\n // jump between values.\n columnThreshold: 0.01,\n\n // Shuffle can be isInitialized with a sort object. It is the same object\n // given to the sort method.\n initialSort: null,\n\n // By default, shuffle will throttle resize events. This can be changed or\n // removed.\n throttle,\n\n // How often shuffle can be called on resize (in milliseconds).\n throttleTime: 300,\n\n // Transition delay offset for each item in milliseconds.\n staggerAmount: 15,\n\n // Maximum stagger delay in milliseconds.\n staggerAmountMax: 250,\n\n // Whether to use transforms or absolute positioning.\n useTransforms: true,\n\n // Affects using an array with filter. e.g. `filter(['one', 'two'])`. With \"any\",\n // the element passes the test if any of its groups are in the array. With \"all\",\n // the element only passes if all groups are in the array.\n filterMode: Shuffle.FilterMode.ANY,\n};\n\n// Expose for testing. Hack at your own risk.\nShuffle.__Point = Point;\nShuffle.__sorter = sorter;\nShuffle.__getColumnSpan = getColumnSpan;\nShuffle.__getAvailablePositions = getAvailablePositions;\nShuffle.__getShortColumn = getShortColumn;\n\nexport default Shuffle;\n"],"names":["CustomEvent","global","getNumber","value","parseFloat","Point","x","y","a","b","id","ShuffleItem","element","isVisible","classList","remove","Classes","HIDDEN","add","VISIBLE","addClasses","SHUFFLE_ITEM","applyCss","Css","INITIAL","scale","Scale","point","classes","forEach","className","obj","keys","key","style","removeClasses","removeAttribute","document","body","documentElement","e","createElement","cssText","appendChild","width","window","getComputedStyle","ret","removeChild","getNumberStyle","styles","COMPUTED_SIZE_INCLUDES_PADDING","paddingLeft","paddingRight","borderLeftWidth","borderRightWidth","paddingTop","paddingBottom","borderTopWidth","borderBottomWidth","randomize","array","n","length","i","Math","floor","random","temp","defaults","sorter","arr","options","opts","xtend","original","slice","call","revert","by","sort","valA","valB","undefined","reverse","transitions","eventName","count","uniqueId","cancelTransitionEnd","removeEventListener","listener","onTransitionEnd","callback","evt","currentTarget","target","addEventListener","arrayMax","max","apply","arrayMin","min","getColumnSpan","itemWidth","columnWidth","columns","threshold","columnSpan","abs","round","ceil","getAvailablePositions","positions","available","push","getShortColumn","buffer","minPosition","len","getItemPosition","itemSize","gridSize","total","span","setY","shortColumnIndex","setHeight","height","toArray","arrayLike","Array","prototype","arrayIncludes","indexOf","Shuffle","useSizer","lastSort","group","ALL_ITEMS","lastFilter","isEnabled","isDestroyed","isInitialized","_transitions","isTransitioning","_queue","el","_getElementOption","TypeError","_init","items","_getItems","sizer","BASE","_initItems","_onResize","_getResizeFunction","containerCss","containerWidth","getSize","_validateStyles","_setColumns","filter","initialSort","offsetWidth","_setTransitions","transition","speed","easing","resizeFunction","_handleResize","bind","throttle","throttleTime","option","querySelector","nodeType","jquery","position","overflow","category","collection","set","_getFilteredSets","_toggleFilterClasses","visible","hidden","item","_doesPassFilter","attr","getAttribute","FILTER_ATTRIBUTE_KEY","delimeter","split","JSON","parse","testCategory","isArray","filterMode","FilterMode","ANY","some","every","show","hide","init","dispose","visibleItems","_getFilteredItems","str","useTransforms","children","matches","itemSelector","map","gutterSize","size","gutterWidth","gutter","_getGutterSize","_getColumnSize","calculatedColumns","columnThreshold","cols","colWidth","_getContainerSize","index","staggerAmount","staggerAmountMax","name","details","shuffle","dispatchEvent","currPos","currScale","pos","_getItemPosition","transitionDelay","after","equals","before","_getStaggerAmount","_getConcealedItems","update","transform","left","top","itemCallback","done","_getStylesForTransition","_whenTransitionDone","_cancelMovement","hasSpeed","hasQueue","_startTransitions","_styleImmediately","_dispatchLayout","callbacks","_getTransitionFunction","_movementFinished","objects","elements","_skipTransitions","_dispatch","EventType","LAYOUT","sortObj","_filter","_shrink","_updateItemCount","_resetCols","_layout","_processQueue","_setContainerSize","isOnlyLayout","newItems","arrayUnique","concat","_updateItemsOrder","isUpdateLayout","oldItems","getItemByElement","handleLayout","_disposeItems","parentNode","REMOVED","includeMargins","marginLeft","marginRight","marginTop","marginBottom","zero","data","duration","transitionDuration","delay","__Point","__sorter","__getColumnSpan","__getAvailablePositions","__getShortColumn"],"mappings":"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"}