{ "version": 3, "sources": ["../../node_modules/throttle-debounce/throttle.js", "../../node_modules/throttle-debounce/debounce.js", "../../src/scripts/lib/intersection-observed.js", "../../src/scripts/gallery-grid.js"], "sourcesContent": ["/* eslint-disable no-undefined,no-param-reassign,no-shadow */\n\n/**\n * Throttle execution of a function. Especially useful for rate limiting\n * execution of handlers on events like resize and scroll.\n *\n * @param {number} delay - A zero-or-greater delay in milliseconds. For event callbacks, values around 100 or 250 (or even higher)\n * are most useful.\n * @param {Function} callback - A function to be executed after delay milliseconds. The `this` context and all arguments are passed through,\n * as-is, to `callback` when the throttled-function is executed.\n * @param {object} [options] - An object to configure options.\n * @param {boolean} [options.noTrailing] - Optional, defaults to false. If noTrailing is true, callback will only execute every `delay` milliseconds\n * while the throttled-function is being called. If noTrailing is false or unspecified, callback will be executed\n * one final time after the last throttled-function call. (After the throttled-function has not been called for\n * `delay` milliseconds, the internal counter is reset).\n * @param {boolean} [options.noLeading] - Optional, defaults to false. If noLeading is false, the first throttled-function call will execute callback\n * immediately. If noLeading is true, the first the callback execution will be skipped. It should be noted that\n * callback will never executed if both noLeading = true and noTrailing = true.\n * @param {boolean} [options.debounceMode] - If `debounceMode` is true (at begin), schedule `clear` to execute after `delay` ms. If `debounceMode` is\n * false (at end), schedule `callback` to execute after `delay` ms.\n *\n * @returns {Function} A new, throttled, function.\n */\nexport default function (delay, callback, options) {\n\tconst {\n\t\tnoTrailing = false,\n\t\tnoLeading = false,\n\t\tdebounceMode = undefined\n\t} = options || {};\n\t/*\n\t * After wrapper has stopped being called, this timeout ensures that\n\t * `callback` is executed at the proper times in `throttle` and `end`\n\t * debounce modes.\n\t */\n\tlet timeoutID;\n\tlet cancelled = false;\n\n\t// Keep track of the last time `callback` was executed.\n\tlet lastExec = 0;\n\n\t// Function to clear existing timeout\n\tfunction clearExistingTimeout() {\n\t\tif (timeoutID) {\n\t\t\tclearTimeout(timeoutID);\n\t\t}\n\t}\n\n\t// Function to cancel next exec\n\tfunction cancel(options) {\n\t\tconst { upcomingOnly = false } = options || {};\n\t\tclearExistingTimeout();\n\t\tcancelled = !upcomingOnly;\n\t}\n\n\t/*\n\t * The `wrapper` function encapsulates all of the throttling / debouncing\n\t * functionality and when executed will limit the rate at which `callback`\n\t * is executed.\n\t */\n\tfunction wrapper(...arguments_) {\n\t\tlet self = this;\n\t\tlet elapsed = Date.now() - lastExec;\n\n\t\tif (cancelled) {\n\t\t\treturn;\n\t\t}\n\n\t\t// Execute `callback` and update the `lastExec` timestamp.\n\t\tfunction exec() {\n\t\t\tlastExec = Date.now();\n\t\t\tcallback.apply(self, arguments_);\n\t\t}\n\n\t\t/*\n\t\t * If `debounceMode` is true (at begin) this is used to clear the flag\n\t\t * to allow future `callback` executions.\n\t\t */\n\t\tfunction clear() {\n\t\t\ttimeoutID = undefined;\n\t\t}\n\n\t\tif (!noLeading && debounceMode && !timeoutID) {\n\t\t\t/*\n\t\t\t * Since `wrapper` is being called for the first time and\n\t\t\t * `debounceMode` is true (at begin), execute `callback`\n\t\t\t * and noLeading != true.\n\t\t\t */\n\t\t\texec();\n\t\t}\n\n\t\tclearExistingTimeout();\n\n\t\tif (debounceMode === undefined && elapsed > delay) {\n\t\t\tif (noLeading) {\n\t\t\t\t/*\n\t\t\t\t * In throttle mode with noLeading, if `delay` time has\n\t\t\t\t * been exceeded, update `lastExec` and schedule `callback`\n\t\t\t\t * to execute after `delay` ms.\n\t\t\t\t */\n\t\t\t\tlastExec = Date.now();\n\t\t\t\tif (!noTrailing) {\n\t\t\t\t\ttimeoutID = setTimeout(debounceMode ? clear : exec, delay);\n\t\t\t\t}\n\t\t\t} else {\n\t\t\t\t/*\n\t\t\t\t * In throttle mode without noLeading, if `delay` time has been exceeded, execute\n\t\t\t\t * `callback`.\n\t\t\t\t */\n\t\t\t\texec();\n\t\t\t}\n\t\t} else if (noTrailing !== true) {\n\t\t\t/*\n\t\t\t * In trailing throttle mode, since `delay` time has not been\n\t\t\t * exceeded, schedule `callback` to execute `delay` ms after most\n\t\t\t * recent execution.\n\t\t\t *\n\t\t\t * If `debounceMode` is true (at begin), schedule `clear` to execute\n\t\t\t * after `delay` ms.\n\t\t\t *\n\t\t\t * If `debounceMode` is false (at end), schedule `callback` to\n\t\t\t * execute after `delay` ms.\n\t\t\t */\n\t\t\ttimeoutID = setTimeout(\n\t\t\t\tdebounceMode ? clear : exec,\n\t\t\t\tdebounceMode === undefined ? delay - elapsed : delay\n\t\t\t);\n\t\t}\n\t}\n\n\twrapper.cancel = cancel;\n\n\t// Return the wrapper function.\n\treturn wrapper;\n}\n", "/* eslint-disable no-undefined */\n\nimport throttle from './throttle.js';\n\n/**\n * Debounce execution of a function. Debouncing, unlike throttling,\n * guarantees that a function is only executed a single time, either at the\n * very beginning of a series of calls, or at the very end.\n *\n * @param {number} delay - A zero-or-greater delay in milliseconds. For event callbacks, values around 100 or 250 (or even higher) are most useful.\n * @param {Function} callback - A function to be executed after delay milliseconds. The `this` context and all arguments are passed through, as-is,\n * to `callback` when the debounced-function is executed.\n * @param {object} [options] - An object to configure options.\n * @param {boolean} [options.atBegin] - Optional, defaults to false. If atBegin is false or unspecified, callback will only be executed `delay` milliseconds\n * after the last debounced-function call. If atBegin is true, callback will be executed only at the first debounced-function call.\n * (After the throttled-function has not been called for `delay` milliseconds, the internal counter is reset).\n *\n * @returns {Function} A new, debounced function.\n */\nexport default function (delay, callback, options) {\n\tconst { atBegin = false } = options || {};\n\treturn throttle(delay, callback, { debounceMode: atBegin !== false });\n}\n", "import { throttle } from \"throttle-debounce\";\n\nconst INTERSECTION_OPTS = {\n\trootMargin: \"-50% 0% -50% 0%\",\n\tthreshold: [0.0],\n};\n\n/**\n * abstract class to hold listeners for element visibility\n * implements IntersectionObserver API when available\n * falls back to scroll, resize, and orientationChange listeners if not\n */\nexport default class IntersectionObserved {\n\tconstructor(el) {\n\t\tthis.el = el;\n\t\tthis.imageObserver = null;\n\t\tthis.hasBecomeVisible = false;\n\t}\n\n\t/**\n\t * Add event handlers to determine element visibility\n\t * use either IntersectionObserver API if available\n\t * fallback to use scroll, resize, and orientationChange\n\t */\n\tinitVisibilityCheck(opts) {\n\t\tconst intops = Object.assign(INTERSECTION_OPTS, opts);\n\t\t// console.log(\"intops\", intops);\n\t\tif (\"IntersectionObserver\" in window) {\n\t\t\tthis.imageObserver = new IntersectionObserver(this.intersectionCallback.bind(this), intops);\n\t\t\tthis.imageObserver.observe(this.el);\n\t\t} else {\n\t\t\tthis.throttledIntersectionDelegate = throttle(100, this.insersectionFallback.bind(this));\n\t\t\tdocument.addEventListener(\"scroll\", this.throttledIntersectionDelegate);\n\t\t\twindow.addEventListener(\"resize\", this.throttledIntersectionDelegate);\n\t\t\twindow.addEventListener(\"orientationChange\", this.throttledIntersectionDelegate);\n\t\t\tthis.insersectionFallback();\n\t\t}\n\t}\n\n\t/**\n\t * IntersectionObserver API intersection handler\n\t */\n\tintersectionCallback(entries) {\n\t\t//console.log('intersectionCallback', entries[0]);\n\n\t\tif (entries[0].isIntersecting) {\n\t\t\tthis.imageObserver.unobserve(this.el);\n\t\t\tthis.onBecomeVisible();\n\t\t\treturn;\n\t\t}\n\t}\n\n\t/**\n\t * Fallback visibility events handler\n\t */\n\tinsersectionFallback() {\n\t\tconst scrollTop = window.pageYOffset;\n\t\tif (this.el.offsetTop < window.innerHeight + scrollTop) {\n\t\t\tdocument.removeEventListener(\"scroll\", this.throttledIntersectionDelegate);\n\t\t\twindow.removeEventListener(\"resize\", this.throttledIntersectionDelegate);\n\t\t\twindow.removeEventListener(\"orientationChange\", this.throttledIntersectionDelegate);\n\t\t\tthis.onBecomeVisible();\n\t\t}\n\t}\n\n\t/**\n\t * Init slideshow and non slideshow before after event handlers, timeout, video\n\t */\n\tonBecomeVisible() {\n\t\tthis.hasBecomeVisible = true;\n\t}\n}\n", "/*globals jQuery:false */\n/*globals gsap */\nimport { throttle } from \"throttle-debounce\";\n//import gsap from 'gsap';\nimport IntersectionObserved from \"./lib/intersection-observed.js\";\n\nconst OPEN_ANIME_DURATION = 2;\nconst SELECT_ANIME_DURATION = 0.8;\nconst SELECTED_BG_SCALE_FACTOR = 12;\n\nclass GalleryGridComponent extends IntersectionObserved {\n\tconstructor(el) {\n\t\t// console.log(\"GalleryGridComponent::constructor\");\n\t\tsuper(el);\n\n\t\tconst mobileTest = window.matchMedia(\"(max-width: 767px)\");\n\n\t\tthis.isMobile = mobileTest.matches;\n\n\t\t// if at mobile size on js init\n\t\t// add open class in case browser grows to desktop\n\t\t// add another class just for this special case\n\t\t// abort. no need to do any more js (no animations)\n\t\tif (this.isMobile && \"ontouchstart\" in window) {\n\t\t\tel.classList.add(\"gallery-grid-section--is-open\");\n\t\t\tel.classList.add(\"gallery-grid-section--mobile-init\");\n\t\t\treturn;\n\t\t}\n\n\t\t// store references to our dom elements\n\t\tthis.dom = {\n\t\t\tel,\n\t\t\tbounds: el.getBoundingClientRect(),\n\t\t\titems: el.querySelectorAll(\".gallery-grid__element\"),\n\t\t\t//ctas: el.querySelectorAll('.gallery-grid__cta > a'),\n\t\t\tbackgrounds: el.querySelectorAll(\".gallery-grid__background > div\"),\n\t\t\tback: el.querySelector(\".gallery-grid__back-cta\"),\n\t\t};\n\n\t\t// console.log(this.dom);\n\n\t\t// store grid items and their updated positions\n\t\tthis.items = [];\n\n\t\t// store temporary item clones\n\t\tthis.clones = [];\n\n\t\t// the initial animation to the grid layout\n\t\tthis.gridTl = gsap.timeline({ paused: true });\n\n\t\t// the animation to a single item from the grid\n\t\tthis.selectTl = gsap.timeline({ paused: true });\n\n\t\t// the animation from a single item back to the grid\n\t\tthis.deselectTl = gsap.timeline({ paused: true });\n\n\t\tthis.lastSelectedIndex = null;\n\n\t\t// event listeners\n\t\tmobileTest.addListener(this.mobileTestUpdate.bind(this));\n\n\t\tthis.addListeners();\n\n\t\t// start visibility listener\n\t\tthis.initVisibilityCheck({\n\t\t\t//rootMargin: '-50%',\n\t\t});\n\t}\n\n\t// if we have inited our animation js but the browser goes mobile\n\t// set a flag so the animations dont run at mobile\n\tmobileTestUpdate(test) {\n\t\tthis.isMobile = test.matches;\n\n\t\t// complete any active animation\n\t\tif (this.isMobile) {\n\t\t\tif (this.gridTl.isActive()) {\n\t\t\t\tthis.gridTl.progress(1);\n\t\t\t} else if (this.selectTl.isActive()) {\n\t\t\t\tthis.selectTl.progress(1);\n\t\t\t} else if (this.deselectTl.isActive()) {\n\t\t\t\tthis.deselectTl.progress(1);\n\t\t\t}\n\t\t}\n\t}\n\n\t/**\n\t * callback from intersection listener(s)\n\t * start initial \"to grid\" anime\n\t */\n\tonBecomeVisible() {\n\t\t// console.log(\"GalleryGridComponent::onBecomeVisible\");\n\n\t\tif (this.hasBecomeVisible) return;\n\n\t\t// set inited flag\n\t\tthis.hasBecomeVisible = true;\n\n\t\t// if our items' bg images aren't loaded\n\t\t// check them again on an interval\n\t\t// if not loaded after x number checks, run anime anyway\n\t\tif (this.bgsLoaded) {\n\t\t\tthis.runToGridAnime();\n\t\t} else {\n\t\t\tthis.bgChecks = 0;\n\t\t\tthis.bgCheckID = setInterval(() => {\n\t\t\t\t// console.log(\"bgs loaded check\", this.bgsLoaded, this.bgChecks);\n\n\t\t\t\tthis.bgChecks++;\n\n\t\t\t\tif (this.allBgsLoaded || this.bgChecks > 5) {\n\t\t\t\t\tclearInterval(this.bgCheckID);\n\t\t\t\t\tthis.runToGridAnime();\n\t\t\t\t}\n\t\t\t}, 200);\n\t\t}\n\t}\n\n\t/**\n\t * To Grid Animation\n\t *\n\t */\n\trunToGridAnime() {\n\t\t// console.log(\"runToGridAnime\");\n\n\t\t// jump to end if in mobile view\n\t\tif (this.isMobile) {\n\t\t\tthis.el.classList.add(\"gallery-grid-section--is-open\");\n\t\t\tfor (let i = 0; i < this.dom.items.length; i++) {\n\t\t\t\tthis.dom.items[i].style.opacity = 1;\n\t\t\t}\n\t\t\tthis.addItemListeners();\n\t\t\treturn;\n\t\t}\n\n\t\tthis.setItemsCache();\n\t\tthis.addGridClones();\n\t\tthis.el.classList.add(\"gallery-grid-section--is-open\");\n\t\tthis.setItemsCache();\n\n\t\tthis.setGridTweensCallbacks();\n\n\t\tthis.gridTl.play();\n\t}\n\n\t// store item bounds and computed top vals\n\t// this function used by all three animations\n\tsetItemsCache() {\n\t\t// console.log(\"setItemsCache\");\n\n\t\tconst containerBounds = this.el.getBoundingClientRect();\n\n\t\tlet bounds;\n\n\t\tthis.dom.bounds = containerBounds;\n\n\t\tthis.items = [];\n\n\t\t[...this.dom.items].forEach((el) => {\n\t\t\tbounds = el.getBoundingClientRect();\n\n\t\t\tthis.items.push({\n\t\t\t\tel,\n\t\t\t\tbounds,\n\t\t\t\ty: bounds.top - containerBounds.top,\n\t\t\t});\n\t\t});\n\t}\n\n\t// add destination props and complete callback to grid anime\n\tsetGridTweensCallbacks() {\n\t\tlet item, clone, left, top, width, height;\n\n\t\tthis.gridTl.addLabel(\"start\");\n\n\t\tfor (let i = 0; i < this.items.length; i++) {\n\t\t\titem = this.items[i];\n\t\t\tclone = this.clones[i];\n\n\t\t\tleft = item.bounds.left + \"px\";\n\t\t\ttop = item.y + \"px\";\n\t\t\twidth = item.bounds.width + \"px\";\n\t\t\theight = item.bounds.height + \"px\";\n\n\t\t\tthis.gridTl.to(\n\t\t\t\tclone.el,\n\t\t\t\t{ duration: OPEN_ANIME_DURATION, left, top, width, height, ease: \"sine.inOut\" },\n\t\t\t\t\"start\",\n\t\t\t);\n\t\t}\n\n\t\t// anime onComplete\n\t\t// show the real grid items\n\t\t// remove our clone items\n\t\t// add click handler to grid items\n\t\tthis.gridTl.eventCallback(\"onComplete\", () => {\n\t\t\t// console.log(\"grid anime complete\");\n\t\t\tfor (let i = 0; i < this.items.length; i++) {\n\t\t\t\tthis.items[i].el.style.opacity = 1;\n\t\t\t\tthis.el.removeChild(this.clones[i].el);\n\t\t\t}\n\t\t\tthis.addItemListeners();\n\t\t});\n\t}\n\n\t// place absolutely positioned clone items above grid items\n\t// hide grid items\n\taddGridClones() {\n\t\t// console.log(\"GalleryGrid::addClones\");\n\n\t\tlet item, clone;\n\n\t\tthis.clones = [];\n\n\t\tfor (let i = 0; i < this.items.length; i++) {\n\t\t\titem = this.items[i];\n\n\t\t\tclone = item.el.cloneNode(true);\n\t\t\tclone.classList.add(\"is-clone\");\n\t\t\tclone.style.width = item.bounds.width + \"px\";\n\t\t\tclone.style.height = item.bounds.height + \"px\";\n\n\t\t\tclone.style.left = item.bounds.left + \"px\";\n\t\t\tclone.style.top = item.y + \"px\";\n\n\t\t\tif (i == 0) {\n\t\t\t\tclone.style.left = -item.bounds.width + \"px\";\n\t\t\t} else if (i == 1) {\n\t\t\t\tclone.style.left = this.dom.bounds.width + \"px\";\n\t\t\t} else if (i == 2) {\n\t\t\t\tclone.style.left = this.dom.bounds.width + this.items[2].bounds.width + \"px\";\n\t\t\t}\n\n\t\t\titem.el.style.opacity = 0;\n\n\t\t\tthis.clones.push({\n\t\t\t\tel: clone,\n\t\t\t\tbounds: item.bounds,\n\t\t\t});\n\t\t}\n\n\t\tfor (let i = this.clones.length - 1; i > -1; i--) {\n\t\t\titem.el.after(this.clones[i].el);\n\t\t}\n\t}\n\n\t/**\n\t * Selected Item Animation\n\t *\n\t */\n\trunSelectAnime() {\n\t\t// console.log(\"runSelectAnime\");\n\n\t\tconst idx = this.lastSelectedIndex;\n\n\t\t// jump to end if in mobile view\n\t\tif (this.isMobile) {\n\t\t\tthis.el.classList.remove(\"gallery-grid-section--is-open\");\n\t\t\tthis.el.classList.add(\"selected-idx-\" + idx);\n\t\t\tif (this.dom.back) {\n\t\t\t\tthis.dom.back.style.opacity = 1;\n\t\t\t\tthis.dom.back.style.display = \"flex\";\n\t\t\t}\n\t\t\treturn;\n\t\t}\n\n\t\tthis.setItemsCache();\n\t\tthis.addSelectClone();\n\t\tthis.el.classList.remove(\"gallery-grid-section--is-open\");\n\t\tthis.el.classList.add(\"selected-idx-\" + idx);\n\t\tthis.setItemsCache();\n\n\t\tthis.setSelectTweensCallbacks();\n\n\t\tthis.selectTl.play();\n\t}\n\n\t// add destination props and complete callback to selected anime\n\tsetSelectTweensCallbacks() {\n\t\tconst idx = this.lastSelectedIndex;\n\n\t\tconst item = this.items[idx];\n\t\tconst clone = this.clones[0];\n\t\tconst bg = clone.el.querySelector(\".gallery-grid__background > div\");\n\t\tconst content = clone.el.querySelector(\".gallery-grid__content\");\n\n\t\tconst left = item.bounds.left + \"px\";\n\t\tconst top = item.y + \"px\";\n\t\tconst width = item.bounds.width + \"px\";\n\t\tconst height = item.bounds.height + \"px\";\n\n\t\t// console.log(\"selected bg\", bg);\n\n\t\tcontent.style.display = \"block\";\n\n\t\tthis.selectTl.addLabel(\"positions\");\n\t\tthis.selectTl.to(\n\t\t\tclone.el,\n\t\t\t{ duration: SELECT_ANIME_DURATION, left, top, width, height, ease: \"sine.inOut\" },\n\t\t\t\"positions\",\n\t\t);\n\t\tthis.selectTl.to(\n\t\t\tbg,\n\t\t\t{\n\t\t\t\tduration: 0.6,\n\t\t\t\tdelay: 0.2,\n\t\t\t\tleft: \"-\" + SELECTED_BG_SCALE_FACTOR / 2 + \"%\",\n\t\t\t\ttop: \"-\" + SELECTED_BG_SCALE_FACTOR / 2 + \"%\",\n\t\t\t\twidth: 100 + SELECTED_BG_SCALE_FACTOR + \"%\",\n\t\t\t\theight: 100 + SELECTED_BG_SCALE_FACTOR + \"%\",\n\t\t\t\tease: \"sine.inOut\",\n\t\t\t},\n\t\t\t\"positions\",\n\t\t);\n\t\tthis.selectTl.addLabel(\"contents\");\n\t\tthis.selectTl.to(content, { duration: 0.8, opacity: 1, ease: \"sine.inOut\" }, \"contents\");\n\t\tif (this.dom.back) {\n\t\t\tthis.selectTl.fromTo(\n\t\t\t\tthis.dom.back,\n\t\t\t\t{ opacity: 0, display: \"flex\" },\n\t\t\t\t{ duration: 0.8, opacity: 1, ease: \"sine.inOut\" },\n\t\t\t\t\"contents\",\n\t\t\t);\n\t\t}\n\n\t\t// anime onComplete\n\t\t// show the real grid item\n\t\t// remove our clone item\n\t\tthis.selectTl.eventCallback(\"onComplete\", () => {\n\t\t\t// console.log(\"select anime complete\");\n\n\t\t\tthis.items[idx].el.style.opacity = 1;\n\t\t\tthis.el.removeChild(clone.el);\n\n\t\t\t/*if (!this.isMobile) {\n // add bg image click handler\n let background = this.items[idx].el.querySelector('.gallery-grid__background');\n console.debug('background', background)\n background.addEventListener( 'click', this.handleBackButtonClick.bind(this) );\n }*/\n\t\t});\n\t}\n\n\t// place absolutely positioned clone item above selected grid items\n\t// hide selected grid item\n\t// add class on item to set background zoom (as clone will animate bg to zoomed state)\n\t// this function shared with deselected anime\n\taddSelectClone() {\n\t\t// console.log(\"addSelectClone\");\n\n\t\tconst idx = this.lastSelectedIndex;\n\t\tconst item = this.items[idx];\n\t\tconst clone = item.el.cloneNode(true);\n\n\t\tclone.classList.add(\"is-clone\");\n\t\tclone.style.width = item.bounds.width + \"px\";\n\t\tclone.style.height = item.bounds.height + \"px\";\n\n\t\tclone.style.left = item.bounds.left + \"px\";\n\t\tclone.style.top = item.y + \"px\";\n\n\t\tclone.style.zIndex = 8;\n\n\t\titem.el.style.opacity = 0;\n\t\titem.el.classList.add(\"gallery-grid__element--bg-zoomed\");\n\n\t\tthis.clones = [\n\t\t\t{\n\t\t\t\tel: clone,\n\t\t\t\tbounds: item.bounds,\n\t\t\t},\n\t\t];\n\n\t\tthis.items[3].el.after(clone);\n\t}\n\n\t/**\n\t * Deselected Item Animation\n\t *\n\t */\n\trunDeselectAnime() {\n\t\t// console.log(\"runDeselectAnime\");\n\n\t\tconst idx = this.lastSelectedIndex;\n\n\t\t// jump to end if in mobile view\n\t\tif (this.isMobile) {\n\t\t\tthis.el.classList.remove(\"selected-idx-\" + idx);\n\t\t\tthis.el.classList.add(\"gallery-grid-section--is-open\");\n\t\t\tif (this.dom.back) {\n\t\t\t\tthis.dom.back.style.opacity = 0;\n\t\t\t\tthis.dom.back.style.display = \"none\";\n\t\t\t}\n\t\t\tthis.lastSelectedIndex = null;\n\t\t\treturn;\n\t\t}\n\n\t\tthis.setItemsCache();\n\t\tthis.addSelectClone();\n\t\tthis.el.classList.remove(\"selected-idx-\" + idx);\n\t\tthis.el.classList.add(\"gallery-grid-section--is-open\");\n\t\tthis.setItemsCache();\n\n\t\tthis.deselectTl.clear();\n\t\tthis.setDeselectTweensCallbacks();\n\t\tthis.deselectTl.play();\n\t}\n\n\t// add destination vals and complete callback to deselected anime\n\tsetDeselectTweensCallbacks() {\n\t\t// console.log(\"setDeselectTweensCallbacks\");\n\n\t\tconst idx = this.lastSelectedIndex;\n\n\t\tconst item = this.items[idx];\n\t\tconst clone = this.clones[0];\n\t\tconst bg = clone.el.querySelector(\".gallery-grid__background > div\");\n\t\tconst content = clone.el.querySelector(\".gallery-grid__content\");\n\n\t\tconst left = item.bounds.left + \"px\";\n\t\tconst top = item.y + \"px\";\n\t\tconst width = item.bounds.width + \"px\";\n\t\tconst height = item.bounds.height + \"px\";\n\n\t\t// console.log(\"selected bg\", bg);\n\n\t\tcontent.style.display = \"block\";\n\n\t\tthis.deselectTl.addLabel(\"contents\");\n\t\tif (this.dom.back) {\n\t\t\tthis.deselectTl.fromTo(\n\t\t\t\tthis.dom.back,\n\t\t\t\t{ opacity: 1 },\n\t\t\t\t{ duration: 0.8, opacity: 0, display: \"none\", ease: \"sine.inOut\" },\n\t\t\t\t\"contents\",\n\t\t\t);\n\t\t}\n\t\tthis.deselectTl.fromTo(content, { opacity: 1 }, { duration: 0.8, opacity: 0, ease: \"sine.inOut\" }, \"contents\");\n\t\tthis.deselectTl.addLabel(\"positions\");\n\t\tthis.deselectTl.to(\n\t\t\tbg,\n\t\t\t{\n\t\t\t\tduration: 0.6,\n\t\t\t\tdelay: 0,\n\t\t\t\tleft: 0,\n\t\t\t\ttop: 0,\n\t\t\t\twidth: \"100%\",\n\t\t\t\theight: \"100%\",\n\t\t\t\tease: \"sine.inOut\",\n\t\t\t},\n\t\t\t\"positions\",\n\t\t);\n\t\tthis.deselectTl.to(\n\t\t\tclone.el,\n\t\t\t{ duration: SELECT_ANIME_DURATION, delay: 0.2, left, top, width, height, ease: \"sine.inOut\" },\n\t\t\t\"positions\",\n\t\t);\n\n\t\t// anime onComplete\n\t\t// remove zoomed class from selected item (clone has de-zoomed its bg)\n\t\t// show the real grid item\n\t\t// remove our clone item\n\t\t// unset selected item prop\n\t\tthis.deselectTl.eventCallback(\"onComplete\", () => {\n\t\t\t// console.log(\"deselect anime complete\");\n\n\t\t\tthis.items[idx].el.classList.remove(\"gallery-grid__element--bg-zoomed\");\n\t\t\tthis.items[idx].el.style.opacity = 1;\n\t\t\tthis.el.removeChild(clone.el);\n\t\t\tthis.lastSelectedIndex = null;\n\t\t});\n\t}\n\n\t/**\n\t * add throttled resize handler to pause and reset animations\n\t * add handler for \"back to grid\" button; initialized deselect anime\n\t */\n\taddListeners() {\n\t\tthis.addBgLoadedListeners();\n\n\t\tthis.throttledResize = throttle(250, this.handleResize.bind(this));\n\n\t\twindow.addEventListener(\"resize\", this.throttledResize);\n\t\t//window.addEventListener(\"orientationChange\", this.throttledResize);\n\n\t\tif (this.dom.back) {\n\t\t\tthis.dom.back.addEventListener(\"click\", this.handleBackButtonClick.bind(this));\n\t\t\t/*this.dom.back.addEventListener('click', (evt) => {\n evt.stopImmediatePropagation();\n evt.preventDefault();\n \n console.log('back to grid btn click');\n \n if ( this.lastSelectedIndex !== null && !this.selectTl.isActive() && !this.deselectTl.isActive() ) {\n this.runDeselectAnime();\n }\n \n return false;\n });*/\n\t\t}\n\t}\n\n\thandleBackButtonClick(evt) {\n\t\t//evt.stopImmediatePropagation();\n\t\t//evt.preventDefault();\n\n\t\t// console.log(\"back to grid btn click\");\n\n\t\tif (this.lastSelectedIndex !== null && !this.selectTl.isActive() && !this.deselectTl.isActive()) {\n\t\t\tthis.runDeselectAnime();\n\t\t}\n\n\t\treturn false;\n\t}\n\n\t// attempt to determine when our items' background images are loaded\n\t// ideally, the initial \"to grid\" anime won't run until all images are loaded\n\taddBgLoadedListeners() {\n\t\tlet bg;\n\n\t\tconst home = this;\n\n\t\t// flags\n\t\tthis.allBgsLoaded = false;\n\t\tthis.bgsToLoad = 0;\n\t\tthis.bgsLoaded = 0;\n\n\t\t// loop the background elements and extract the image url\n\t\t// then add as src to new img el with load listener\n\t\t[...this.dom.backgrounds].forEach((el) => {\n\t\t\tbg = el.style.backgroundImage.slice(4, -1).replace(/['\"]/g, \"\");\n\n\t\t\tif (bg) {\n\t\t\t\tthis.bgsToLoad++;\n\n\t\t\t\tjQuery(\"\")\n\t\t\t\t\t.attr(\"src\", bg)\n\t\t\t\t\t.on(\"load\", function () {\n\t\t\t\t\t\tjQuery(this).remove();\n\n\t\t\t\t\t\thome.bgsLoaded++;\n\n\t\t\t\t\t\t// console.log(\"bg \" + home.bgsLoaded + \" of \" + home.bgsToLoad + \" loaded\");\n\n\t\t\t\t\t\tif (home.bgsLoaded >= home.bgsToLoad) {\n\t\t\t\t\t\t\thome.allBgsLoaded = true;\n\t\t\t\t\t\t}\n\t\t\t\t\t});\n\t\t\t}\n\t\t});\n\n\t\tif (this.bgsLoaded >= this.bgsToLoad) {\n\t\t\tthis.allBgsLoaded = true;\n\t\t}\n\t}\n\n\t// check if an anime is active and reset its destination props before playing\n\t// TODO: make sure this is not being called concurrently, or handle if so\n\thandleResize() {\n\t\t// console.log(\"GalleryGrid::handleResize\", this);\n\n\t\tif (this.gridTl.isActive()) {\n\t\t\tthis.setItemsCache();\n\t\t\tthis.gridTl.pause();\n\t\t\tthis.gridTl.clear();\n\t\t\tthis.setGridTweensCallbacks();\n\t\t\tthis.gridTl.play();\n\t\t} else if (this.selectTl.isActive()) {\n\t\t\tthis.setItemsCache();\n\t\t\tthis.selectTl.pause();\n\t\t\tthis.selectTl.clear();\n\t\t\tthis.setSelectTweensCallbacks();\n\t\t\tthis.selectTl.play();\n\t\t} else if (this.deselectTl.isActive()) {\n\t\t\tthis.setItemsCache();\n\t\t\tthis.deselectTl.pause();\n\t\t\tthis.deselectTl.clear();\n\t\t\tthis.setDeselectTweensCallbacks();\n\t\t\tthis.deselectTl.play();\n\t\t}\n\t}\n\n\t/**\n\t * add click handler to grid items\n\t * only effective in grid view\n\t * initializes select anime\n\t */\n\taddItemListeners() {\n\t\tlet item;\n\n\t\tfor (let i = 0; i < this.dom.items.length; i++) {\n\t\t\titem = this.dom.items[i];\n\n\t\t\titem.addEventListener(\"click\", (evt) => {\n\t\t\t\t// console.log(\"grid item \" + i + \" clicked\");\n\n\t\t\t\t// set selected item property\n\t\t\t\t// start selected anime\n\t\t\t\tif (this.lastSelectedIndex === null) {\n\t\t\t\t\tthis.lastSelectedIndex = i;\n\t\t\t\t\tthis.runSelectAnime();\n\t\t\t\t} else {\n\t\t\t\t\tthis.handleBackButtonClick(evt);\n\t\t\t\t}\n\t\t\t});\n\t\t}\n\t}\n}\n\njQuery(document).ready(function () {\n\tlet i;\n\n\tlet gallerySections = document.querySelectorAll(\".gallery-grid-section\");\n\n\tfor (i = 0; i < gallerySections.length; i++) {\n\t\tnew GalleryGridComponent(gallerySections[i]);\n\t}\n});\n"], "mappings": "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", "names": ["throttle", "delay", "callback", "options", "_ref$noTrailing", "_ref", "noTrailing", "_ref$noLeading", "noLeading", "_ref$debounceMode", "debounceMode", "undefined", "timeoutID", "cancelled", "lastExec", "clearExistingTimeout", "clearTimeout", "cancel", "_ref2$upcomingOnly", "_ref2", "upcomingOnly", "wrapper", "_len", "arguments_", "_key", "self", "elapsed", "Date", "now", "exec", "apply", "clear", "setTimeout", "INTERSECTION_OPTS", "IntersectionObserved", "el", "opts", "intops", "throttle", "entries", "scrollTop", "OPEN_ANIME_DURATION", "SELECT_ANIME_DURATION", "SELECTED_BG_SCALE_FACTOR", "GalleryGridComponent", "IntersectionObserved", "el", "mobileTest", "test", "i", "containerBounds", "bounds", "item", "clone", "left", "top", "width", "height", "idx", "bg", "content", "throttle", "evt", "home", "gallerySections"] }