{"version":3,"file":"foundation.util.mediaQuery.min.js","sources":["foundation.util.mediaQuery.min.js"],"sourcesContent":["(function webpackUniversalModuleDefinition(root, factory) {\n\tif(typeof exports === 'object' && typeof module === 'object')\n\t\tmodule.exports = factory(require(\"./foundation.core\"), require(\"jquery\"));\n\telse if(typeof define === 'function' && define.amd)\n\t\tdefine([\"./foundation.core\", \"jquery\"], factory);\n\telse if(typeof exports === 'object')\n\t\texports[\"__FOUNDATION_EXTERNAL__\"] = factory(require(\"./foundation.core\"), require(\"jquery\"));\n\telse\n\t\troot[\"__FOUNDATION_EXTERNAL__\"] = root[\"__FOUNDATION_EXTERNAL__\"] || {}, root[\"__FOUNDATION_EXTERNAL__\"][\"foundation.util.mediaQuery\"] = factory(root[\"__FOUNDATION_EXTERNAL__\"][\"foundation.core\"], root[\"jQuery\"]);\n})(self, function(__WEBPACK_EXTERNAL_MODULE__foundation_core__, __WEBPACK_EXTERNAL_MODULE_jquery__) {\nreturn /******/ (function() { // webpackBootstrap\n/******/ \t\"use strict\";\n/******/ \tvar __webpack_modules__ = ({\n\n/***/ \"./js/foundation.util.mediaQuery.js\":\n/*!******************************************!*\\\n !*** ./js/foundation.util.mediaQuery.js ***!\n \\******************************************/\n/***/ (function(__unused_webpack_module, __webpack_exports__, __webpack_require__) {\n\n__webpack_require__.r(__webpack_exports__);\n/* harmony export */ __webpack_require__.d(__webpack_exports__, {\n/* harmony export */ MediaQuery: function() { return /* binding */ MediaQuery; }\n/* harmony export */ });\n/* harmony import */ var jquery__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! jquery */ \"jquery\");\n/* harmony import */ var jquery__WEBPACK_IMPORTED_MODULE_0___default = /*#__PURE__*/__webpack_require__.n(jquery__WEBPACK_IMPORTED_MODULE_0__);\nfunction _typeof(o) { \"@babel/helpers - typeof\"; return _typeof = \"function\" == typeof Symbol && \"symbol\" == typeof Symbol.iterator ? function (o) { return typeof o; } : function (o) { return o && \"function\" == typeof Symbol && o.constructor === Symbol && o !== Symbol.prototype ? \"symbol\" : typeof o; }, _typeof(o); }\nfunction _slicedToArray(r, e) { return _arrayWithHoles(r) || _iterableToArrayLimit(r, e) || _unsupportedIterableToArray(r, e) || _nonIterableRest(); }\nfunction _nonIterableRest() { throw new TypeError(\"Invalid attempt to destructure non-iterable instance.\\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.\"); }\nfunction _unsupportedIterableToArray(r, a) { if (r) { if (\"string\" == typeof r) return _arrayLikeToArray(r, a); var t = {}.toString.call(r).slice(8, -1); return \"Object\" === t && r.constructor && (t = r.constructor.name), \"Map\" === t || \"Set\" === t ? Array.from(r) : \"Arguments\" === t || /^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(t) ? _arrayLikeToArray(r, a) : void 0; } }\nfunction _arrayLikeToArray(r, a) { (null == a || a > r.length) && (a = r.length); for (var e = 0, n = Array(a); e < a; e++) n[e] = r[e]; return n; }\nfunction _iterableToArrayLimit(r, l) { var t = null == r ? null : \"undefined\" != typeof Symbol && r[Symbol.iterator] || r[\"@@iterator\"]; if (null != t) { var e, n, i, u, a = [], f = !0, o = !1; try { if (i = (t = t.call(r)).next, 0 === l) { if (Object(t) !== t) return; f = !1; } else for (; !(f = (e = i.call(t)).done) && (a.push(e.value), a.length !== l); f = !0); } catch (r) { o = !0, n = r; } finally { try { if (!f && null != t.return && (u = t.return(), Object(u) !== u)) return; } finally { if (o) throw n; } } return a; } }\nfunction _arrayWithHoles(r) { if (Array.isArray(r)) return r; }\n\n\n// Default set of media queries\n// const defaultQueries = {\n// 'default' : 'only screen',\n// landscape : 'only screen and (orientation: landscape)',\n// portrait : 'only screen and (orientation: portrait)',\n// retina : 'only screen and (-webkit-min-device-pixel-ratio: 2),' +\n// 'only screen and (min--moz-device-pixel-ratio: 2),' +\n// 'only screen and (-o-min-device-pixel-ratio: 2/1),' +\n// 'only screen and (min-device-pixel-ratio: 2),' +\n// 'only screen and (min-resolution: 192dpi),' +\n// 'only screen and (min-resolution: 2dppx)'\n// };\n\n// matchMedia() polyfill - Test a CSS media type/query in JS.\n// Authors & copyright © 2012: Scott Jehl, Paul Irish, Nicholas Zakas, David Knight. MIT license\n/* eslint-disable */\nwindow.matchMedia || (window.matchMedia = function () {\n \"use strict\";\n\n // For browsers that support matchMedium api such as IE 9 and webkit\n var styleMedia = window.styleMedia || window.media;\n\n // For those that don't support matchMedium\n if (!styleMedia) {\n var style = document.createElement('style'),\n script = document.getElementsByTagName('script')[0],\n info = null;\n style.type = 'text/css';\n style.id = 'matchmediajs-test';\n if (!script) {\n document.head.appendChild(style);\n } else {\n script.parentNode.insertBefore(style, script);\n }\n\n // 'style.currentStyle' is used by IE <= 8 and 'window.getComputedStyle' for all other browsers\n info = 'getComputedStyle' in window && window.getComputedStyle(style, null) || style.currentStyle;\n styleMedia = {\n matchMedium: function matchMedium(media) {\n var text = '@media ' + media + '{ #matchmediajs-test { width: 1px; } }';\n\n // 'style.styleSheet' is used by IE <= 8 and 'style.textContent' for all other browsers\n if (style.styleSheet) {\n style.styleSheet.cssText = text;\n } else {\n style.textContent = text;\n }\n\n // Test if media query is true or false\n return info.width === '1px';\n }\n };\n }\n return function (media) {\n return {\n matches: styleMedia.matchMedium(media || 'all'),\n media: media || 'all'\n };\n };\n}());\n/* eslint-enable */\n\nvar MediaQuery = {\n queries: [],\n current: '',\n /**\n * Initializes the media query helper, by extracting the breakpoint list from the CSS and activating the breakpoint watcher.\n * @function\n * @private\n */\n _init: function _init() {\n // make sure the initialization is only done once when calling _init() several times\n if (this.isInitialized === true) {\n return this;\n } else {\n this.isInitialized = true;\n }\n var self = this;\n var $meta = jquery__WEBPACK_IMPORTED_MODULE_0___default()('meta.foundation-mq');\n if (!$meta.length) {\n jquery__WEBPACK_IMPORTED_MODULE_0___default()('').appendTo(document.head);\n }\n var extractedStyles = jquery__WEBPACK_IMPORTED_MODULE_0___default()('.foundation-mq').css('font-family');\n var namedQueries;\n namedQueries = parseStyleToObject(extractedStyles);\n self.queries = []; // reset\n\n for (var key in namedQueries) {\n if (namedQueries.hasOwnProperty(key)) {\n self.queries.push({\n name: key,\n value: \"only screen and (min-width: \".concat(namedQueries[key], \")\")\n });\n }\n }\n this.current = this._getCurrentSize();\n this._watcher();\n },\n /**\n * Reinitializes the media query helper.\n * Useful if your CSS breakpoint configuration has just been loaded or has changed since the initialization.\n * @function\n * @private\n */\n _reInit: function _reInit() {\n this.isInitialized = false;\n this._init();\n },\n /**\n * Checks if the screen is at least as wide as a breakpoint.\n * @function\n * @param {String} size - Name of the breakpoint to check.\n * @returns {Boolean} `true` if the breakpoint matches, `false` if it's smaller.\n */\n atLeast: function atLeast(size) {\n var query = this.get(size);\n if (query) {\n return window.matchMedia(query).matches;\n }\n return false;\n },\n /**\n * Checks if the screen is within the given breakpoint.\n * If smaller than the breakpoint of larger than its upper limit it returns false.\n * @function\n * @param {String} size - Name of the breakpoint to check.\n * @returns {Boolean} `true` if the breakpoint matches, `false` otherwise.\n */\n only: function only(size) {\n return size === this._getCurrentSize();\n },\n /**\n * Checks if the screen is within a breakpoint or smaller.\n * @function\n * @param {String} size - Name of the breakpoint to check.\n * @returns {Boolean} `true` if the breakpoint matches, `false` if it's larger.\n */\n upTo: function upTo(size) {\n var nextSize = this.next(size);\n\n // If the next breakpoint does not match, the screen is smaller than\n // the upper limit of this breakpoint.\n if (nextSize) {\n return !this.atLeast(nextSize);\n }\n\n // If there is no next breakpoint, the \"size\" breakpoint does not have\n // an upper limit and the screen will always be within it or smaller.\n return true;\n },\n /**\n * Checks if the screen matches to a breakpoint.\n * @function\n * @param {String} size - Name of the breakpoint to check, either 'small only' or 'small'. Omitting 'only' falls back to using atLeast() method.\n * @returns {Boolean} `true` if the breakpoint matches, `false` if it does not.\n */\n is: function is(size) {\n var parts = size.trim().split(' ').filter(function (p) {\n return !!p.length;\n });\n var _parts = _slicedToArray(parts, 2),\n bpSize = _parts[0],\n _parts$ = _parts[1],\n bpModifier = _parts$ === void 0 ? '' : _parts$;\n\n // Only the breakpont\n if (bpModifier === 'only') {\n return this.only(bpSize);\n }\n // At least the breakpoint (included)\n if (!bpModifier || bpModifier === 'up') {\n return this.atLeast(bpSize);\n }\n // Up to the breakpoint (included)\n if (bpModifier === 'down') {\n return this.upTo(bpSize);\n }\n throw new Error(\"\\n Invalid breakpoint passed to MediaQuery.is().\\n Expected a breakpoint name formatted like \\\" \\\", got \\\"\".concat(size, \"\\\".\\n \"));\n },\n /**\n * Gets the media query of a breakpoint.\n * @function\n * @param {String} size - Name of the breakpoint to get.\n * @returns {String|null} - The media query of the breakpoint, or `null` if the breakpoint doesn't exist.\n */\n get: function get(size) {\n for (var i in this.queries) {\n if (this.queries.hasOwnProperty(i)) {\n var query = this.queries[i];\n if (size === query.name) return query.value;\n }\n }\n return null;\n },\n /**\n * Get the breakpoint following the given breakpoint.\n * @function\n * @param {String} size - Name of the breakpoint.\n * @returns {String|null} - The name of the following breakpoint, or `null` if the passed breakpoint was the last one.\n */\n next: function next(size) {\n var _this = this;\n var queryIndex = this.queries.findIndex(function (q) {\n return _this._getQueryName(q) === size;\n });\n if (queryIndex === -1) {\n throw new Error(\"\\n Unknown breakpoint \\\"\".concat(size, \"\\\" passed to MediaQuery.next().\\n Ensure it is present in your Sass \\\"$breakpoints\\\" setting.\\n \"));\n }\n var nextQuery = this.queries[queryIndex + 1];\n return nextQuery ? nextQuery.name : null;\n },\n /**\n * Returns the name of the breakpoint related to the given value.\n * @function\n * @private\n * @param {String|Object} value - Breakpoint name or query object.\n * @returns {String} Name of the breakpoint.\n */\n _getQueryName: function _getQueryName(value) {\n if (typeof value === 'string') return value;\n if (_typeof(value) === 'object') return value.name;\n throw new TypeError(\"\\n Invalid value passed to MediaQuery._getQueryName().\\n Expected a breakpoint name (String) or a breakpoint query (Object), got \\\"\".concat(value, \"\\\" (\").concat(_typeof(value), \")\\n \"));\n },\n /**\n * Gets the current breakpoint name by testing every breakpoint and returning the last one to match (the biggest one).\n * @function\n * @private\n * @returns {String} Name of the current breakpoint.\n */\n _getCurrentSize: function _getCurrentSize() {\n var matched;\n for (var i = 0; i < this.queries.length; i++) {\n var query = this.queries[i];\n if (window.matchMedia(query.value).matches) {\n matched = query;\n }\n }\n return matched && this._getQueryName(matched);\n },\n /**\n * Activates the breakpoint watcher, which fires an event on the window whenever the breakpoint changes.\n * @function\n * @private\n */\n _watcher: function _watcher() {\n var _this2 = this;\n jquery__WEBPACK_IMPORTED_MODULE_0___default()(window).on('resize.zf.trigger', function () {\n var newSize = _this2._getCurrentSize(),\n currentSize = _this2.current;\n if (newSize !== currentSize) {\n // Change the current media query\n _this2.current = newSize;\n\n // Broadcast the media query change on the window\n jquery__WEBPACK_IMPORTED_MODULE_0___default()(window).trigger('changed.zf.mediaquery', [newSize, currentSize]);\n }\n });\n }\n};\n\n// Thank you: https://github.com/sindresorhus/query-string\nfunction parseStyleToObject(str) {\n var styleObject = {};\n if (typeof str !== 'string') {\n return styleObject;\n }\n str = str.trim().slice(1, -1); // browsers re-quote string style values\n\n if (!str) {\n return styleObject;\n }\n styleObject = str.split('&').reduce(function (ret, param) {\n var parts = param.replace(/\\+/g, ' ').split('=');\n var key = parts[0];\n var val = parts[1];\n key = decodeURIComponent(key);\n\n // missing `=` should be `null`:\n // http://w3.org/TR/2012/WD-url-20120524/#collect-url-parameters\n val = typeof val === 'undefined' ? null : decodeURIComponent(val);\n if (!ret.hasOwnProperty(key)) {\n ret[key] = val;\n } else if (Array.isArray(ret[key])) {\n ret[key].push(val);\n } else {\n ret[key] = [ret[key], val];\n }\n return ret;\n }, {});\n return styleObject;\n}\n\n\n/***/ }),\n\n/***/ \"./foundation.core\":\n/*!****************************************************************************************************************************************************************!*\\\n !*** external {\"root\":[\"__FOUNDATION_EXTERNAL__\",\"foundation.core\"],\"amd\":\"./foundation.core\",\"commonjs\":\"./foundation.core\",\"commonjs2\":\"./foundation.core\"} ***!\n \\****************************************************************************************************************************************************************/\n/***/ (function(module) {\n\nmodule.exports = __WEBPACK_EXTERNAL_MODULE__foundation_core__;\n\n/***/ }),\n\n/***/ \"jquery\":\n/*!********************************************************************************************!*\\\n !*** external {\"root\":[\"jQuery\"],\"amd\":\"jquery\",\"commonjs\":\"jquery\",\"commonjs2\":\"jquery\"} ***!\n \\********************************************************************************************/\n/***/ (function(module) {\n\nmodule.exports = __WEBPACK_EXTERNAL_MODULE_jquery__;\n\n/***/ })\n\n/******/ \t});\n/************************************************************************/\n/******/ \t// The module cache\n/******/ \tvar __webpack_module_cache__ = {};\n/******/ \t\n/******/ \t// The require function\n/******/ \tfunction __webpack_require__(moduleId) {\n/******/ \t\t// Check if module is in cache\n/******/ \t\tvar cachedModule = __webpack_module_cache__[moduleId];\n/******/ \t\tif (cachedModule !== undefined) {\n/******/ \t\t\treturn cachedModule.exports;\n/******/ \t\t}\n/******/ \t\t// Create a new module (and put it into the cache)\n/******/ \t\tvar module = __webpack_module_cache__[moduleId] = {\n/******/ \t\t\t// no module.id needed\n/******/ \t\t\t// no module.loaded needed\n/******/ \t\t\texports: {}\n/******/ \t\t};\n/******/ \t\n/******/ \t\t// Execute the module function\n/******/ \t\t__webpack_modules__[moduleId](module, module.exports, __webpack_require__);\n/******/ \t\n/******/ \t\t// Return the exports of the module\n/******/ \t\treturn module.exports;\n/******/ \t}\n/******/ \t\n/************************************************************************/\n/******/ \t/* webpack/runtime/compat get default export */\n/******/ \t!function() {\n/******/ \t\t// getDefaultExport function for compatibility with non-harmony modules\n/******/ \t\t__webpack_require__.n = function(module) {\n/******/ \t\t\tvar getter = module && module.__esModule ?\n/******/ \t\t\t\tfunction() { return module['default']; } :\n/******/ \t\t\t\tfunction() { return module; };\n/******/ \t\t\t__webpack_require__.d(getter, { a: getter });\n/******/ \t\t\treturn getter;\n/******/ \t\t};\n/******/ \t}();\n/******/ \t\n/******/ \t/* webpack/runtime/define property getters */\n/******/ \t!function() {\n/******/ \t\t// define getter functions for harmony exports\n/******/ \t\t__webpack_require__.d = function(exports, definition) {\n/******/ \t\t\tfor(var key in definition) {\n/******/ \t\t\t\tif(__webpack_require__.o(definition, key) && !__webpack_require__.o(exports, key)) {\n/******/ \t\t\t\t\tObject.defineProperty(exports, key, { enumerable: true, get: definition[key] });\n/******/ \t\t\t\t}\n/******/ \t\t\t}\n/******/ \t\t};\n/******/ \t}();\n/******/ \t\n/******/ \t/* webpack/runtime/hasOwnProperty shorthand */\n/******/ \t!function() {\n/******/ \t\t__webpack_require__.o = function(obj, prop) { return Object.prototype.hasOwnProperty.call(obj, prop); }\n/******/ \t}();\n/******/ \t\n/******/ \t/* webpack/runtime/make namespace object */\n/******/ \t!function() {\n/******/ \t\t// define __esModule on exports\n/******/ \t\t__webpack_require__.r = function(exports) {\n/******/ \t\t\tif(typeof Symbol !== 'undefined' && Symbol.toStringTag) {\n/******/ \t\t\t\tObject.defineProperty(exports, Symbol.toStringTag, { value: 'Module' });\n/******/ \t\t\t}\n/******/ \t\t\tObject.defineProperty(exports, '__esModule', { value: true });\n/******/ \t\t};\n/******/ \t}();\n/******/ \t\n/************************************************************************/\nvar __webpack_exports__ = {};\n// This entry need to be wrapped in an IIFE because it need to be isolated against other modules in the chunk.\n!function() {\n/*!**********************************************************!*\\\n !*** ./js/entries/plugins/foundation.util.mediaQuery.js ***!\n \\**********************************************************/\n__webpack_require__.r(__webpack_exports__);\n/* harmony export */ __webpack_require__.d(__webpack_exports__, {\n/* harmony export */ Foundation: function() { return /* reexport safe */ _foundation_core__WEBPACK_IMPORTED_MODULE_0__.Foundation; },\n/* harmony export */ MediaQuery: function() { return /* reexport safe */ _foundation_util_mediaQuery__WEBPACK_IMPORTED_MODULE_1__.MediaQuery; }\n/* harmony export */ });\n/* harmony import */ var _foundation_core__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./foundation.core */ \"./foundation.core\");\n/* harmony import */ var _foundation_core__WEBPACK_IMPORTED_MODULE_0___default = /*#__PURE__*/__webpack_require__.n(_foundation_core__WEBPACK_IMPORTED_MODULE_0__);\n/* harmony import */ var _foundation_util_mediaQuery__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../../foundation.util.mediaQuery */ \"./js/foundation.util.mediaQuery.js\");\n\n\n_foundation_core__WEBPACK_IMPORTED_MODULE_0__.Foundation.MediaQuery = _foundation_util_mediaQuery__WEBPACK_IMPORTED_MODULE_1__.MediaQuery;\n_foundation_core__WEBPACK_IMPORTED_MODULE_0__.Foundation.MediaQuery._init();\n\n}();\n/******/ \treturn __webpack_exports__;\n/******/ })()\n;\n});\n//# sourceMappingURL=foundation.util.mediaQuery.js.map"],"names":["root","factory","exports","module","require","define","amd","self","__WEBPACK_EXTERNAL_MODULE__foundation_core__","__WEBPACK_EXTERNAL_MODULE_jquery__","__webpack_modules__","./js/foundation.util.mediaQuery.js","__unused_webpack_module","__webpack_exports__","__webpack_require__","r","d","MediaQuery","style","info","styleMedia","jquery__WEBPACK_IMPORTED_MODULE_0__","jquery__WEBPACK_IMPORTED_MODULE_0___default","n","_typeof","o","Symbol","iterator","constructor","prototype","_slicedToArray","e","Array","isArray","l","t","i","u","a","f","call","next","Object","done","push","value","length","return","_arrayLikeToArray","toString","slice","name","from","test","TypeError","window","matchMedia","media","document","createElement","script","getElementsByTagName","type","id","parentNode","insertBefore","head","appendChild","getComputedStyle","currentStyle","matchMedium","text","styleSheet","cssText","textContent","width","matches","queries","current","_init","this","isInitialized","appendTo","namedQueries","styleObject","key","extractedStyles","css","str","trim","split","reduce","ret","param","parts","replace","val","decodeURIComponent","hasOwnProperty","concat","_getCurrentSize","_watcher","_reInit","atLeast","size","query","get","only","upTo","nextSize","is","_parts","filter","p","bpSize","_parts$","bpModifier","Error","_this","queryIndex","findIndex","q","_getQueryName","nextQuery","matched","_this2","on","newSize","currentSize","trigger","./foundation.core","jquery","__webpack_module_cache__","getter","__esModule","definition","defineProperty","enumerable","obj","prop","toStringTag","Foundation","_foundation_core__WEBPACK_IMPORTED_MODULE_0__","_foundation_util_mediaQuery__WEBPACK_IMPORTED_MODULE_1__","moduleId","cachedModule","undefined"],"mappings":"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"}