{"version":3,"sources":["nhs/views/BuilderShowcaseRedesign/Sections/favoritesLoader.js","nhs/views/BuilderShowcaseRedesign/Sections/askQuestionLoader.js","nhs/views/BuilderShowcaseRedesign/Initializers/testimonialsInitializer.js","nhs/views/BuilderShowCaseRedesign/ShowTestimonials.js","../../../../../../../../../../module-insertRequire.js"],"names":["define","favoriteElements","document","querySelectorAll","eventName","Object","prototype","hasOwnProperty","call","window","initFavoritesComponent","event","currentTarget","stopPropagation","forEach","item","removeEventListener","buttonTarget","require","favoritesInit","init","eventToDispatch","Event","dispatchEvent","preventDefault","Init","addEventListener","pendingItems","cookie","match","arrayFavorites","JSON","parse","map","id","indexOf","dataset","parentElement","querySelector","style","display","updateStyleFavoriteAnchor","readyState","loadAskQuestionHandlerModule","moduleName","target","closest","askQuestionHandler","openModal"],"mappings":"AAAAA,OACA,kBAAA,IACA,KACA,aAEA,MAAAC,iBAAAC,SAAAC,iBAAA,2BAiBAC,UADAC,OAAAC,UAAAC,eAAAC,KAAAC,OAAA,gBACA,QAAA,YAOA,SAAAC,uBAAAC,OACA,IAAAA,QAAAA,MAAAC,cACA,OAGAD,MAAAE,kBAEAZ,iBAAAa,SAAAC,OACAA,KAAAC,oBAAAZ,UAAAM,2BAGA,MAAAO,aAAAN,MAAAC,cAEAM,QACA,CAAA,kBACAC,gBACAA,cAAAC,OAEA,MAAAC,gBAAA,IAAAC,MAAAlB,WACAa,aAAAM,cAAAF,oBAIAV,MAAAa,iBA4BA,SAAAC,OACAxB,iBAAAa,SAAAC,OACAA,KAAAW,iBAAAtB,UAAAM,2BAvBA,WACA,MAAAiB,aAAAzB,SAAA0B,OAAAC,MAAA,2BAEAC,gBADAH,aAAAI,KAAAC,MAAAL,aAAA,IAAA,IACAM,KAAAlB,MAAAgB,KAAAC,MAAAjB,MAAAmB,KACAjC,iBAAAa,SAAAC,OACAe,eAAAK,QAAApB,KAAAqB,QAAAF,KACA,IACAnB,KAAAsB,cAAAC,cAAA,iBACAC,MAAAC,QAAA,QAEAzB,KAAAsB,cAAAC,cAAA,kBACAC,MAAAC,QAAA,WAcAC,GAGA,aAAAvC,SAAAwC,WACAjB,OAEAhB,OAAAiB,iBAAA,OAAAD,SAKAzB,OAAA,oBAAA,IC9FA,KACA,aA6BAE,SAAAwB,iBAAA,SAvBA,SAAAiB,6BAAAhC,OACA,MAAAiC,WAAA1C,SAAAoC,cAAA,gCACA,2BACA,4BAIA3B,MAAAkC,OAAAC,QAAA,2BAMA5C,SAAAc,oBAAA,QAAA2B,8BAEAzB,QACA,CAAA0B,aACAG,qBACAA,mBAAAC,UAAArC,iBCvBAX,OACA,0BAAA,CACA,kBACA,sBAEA,SAKAkB,QCZA,CACA,4BAIAlB,OAAA,sDAAA,eCLAkB,QAAA,CAAA","file":"../showtestimonials-f64c1e72b0.js","sourceRoot":"..","sourcesContent":["define(\r\n 'favoritesLoader',[],\r\n () => {\r\n 'use strict';\r\n\r\n const favoriteElements = document.querySelectorAll('[data-favorite-trigger]');\r\n\r\n /*\r\n * We need to define the event name for mobile and desktop because we need to dispatch the event\r\n * after loading the favorites js resources, also favorites js works with mousedown for desktop and click\r\n * for mobile.\r\n *\r\n * Example desktop: user clicks on favorites button -> load the favorites js ->\r\n * we dispatch mousedown event -> favorites js working the event\r\n * Example mobile: user touch the favorites button -> load the favorites js ->\r\n * we dispatch click event -> favorites js working the event\r\n *\r\n * Notes: The reason to not use mouseover is that for mobile not working as expected because the\r\n * mouse over event needs to press the screen and this dispatch the touch start event first, and this\r\n * not working in the same way on desktop, desktop just needs to pass the pointer over the button.\r\n */\r\n const isTouchScreen = Object.prototype.hasOwnProperty.call(window, 'ontouchstart');\r\n const eventName = isTouchScreen ? 'click' : 'mousedown';\r\n\r\n /**\r\n * @private\r\n * initFavoritesComponent: inits the Favorites component on the title section\r\n */\r\n\r\n function initFavoritesComponent(event) {\r\n if (!event && !event.currentTarget) {\r\n return;\r\n }\r\n\r\n event.stopPropagation();\r\n\r\n favoriteElements.forEach((item) => {\r\n item.removeEventListener(eventName, initFavoritesComponent);\r\n });\r\n\r\n const buttonTarget = event.currentTarget;\r\n\r\n require(\r\n ['favoritesInit'],\r\n (favoritesInit) => {\r\n favoritesInit.init();\r\n\r\n const eventToDispatch = new Event(eventName);\r\n buttonTarget.dispatchEvent(eventToDispatch);\r\n }\r\n );\r\n\r\n event.preventDefault();\r\n }\r\n\r\n /**\r\n * @private\r\n * Init: update Styles\r\n */\r\n function updateStyleFavoriteAnchor() {\r\n const pendingItems = document.cookie.match(/pendingSaveItem=([^;]+)/);\r\n const cookieFavorites = pendingItems ? JSON.parse(pendingItems[1]) : [];\r\n const arrayFavorites = cookieFavorites.map((item) => JSON.parse(item).id);\r\n favoriteElements.forEach((item) => {\r\n const itemIndex = arrayFavorites.indexOf(item.dataset.id);\r\n if (itemIndex >= 0) {\r\n const anchorSaved = item.parentElement.querySelector('.nhs_favSaved');\r\n anchorSaved.style.display = 'block';\r\n\r\n const anchorUnSave = item.parentElement.querySelector('.nhs_favUnsave');\r\n anchorUnSave.style.display = 'none';\r\n }\r\n });\r\n }\r\n\r\n /**\r\n * @private\r\n * Init: Init the component\r\n */\r\n\r\n function Init() {\r\n favoriteElements.forEach((item) => {\r\n item.addEventListener(eventName, initFavoritesComponent);\r\n });\r\n updateStyleFavoriteAnchor();\r\n }\r\n\r\n if (document.readyState === 'complete') {\r\n Init();\r\n } else {\r\n window.addEventListener('load', Init);\r\n }\r\n }\r\n);\r\n\n","define('askQuestionLoader',[\r\n], () => {\r\n 'use strict';\r\n\r\n /**\r\n * Loads the ask question module.\r\n * @param {*} event Event object.\r\n */\r\n function loadAskQuestionHandlerModule(event) {\r\n const moduleName = document.querySelector('[data-ismobiledevice=\"true\"]')\r\n ? 'askQuestionMobileWrapper'\r\n : 'askQuestionDesktopWrapper';\r\n\r\n // since we're using event delegation for this event, only execute it if the target has a\r\n // data-askQuestionBtn attribute\r\n if (!event.target.closest('[data-askQuestionBtn]')) {\r\n return;\r\n }\r\n\r\n // remove the event listener so it doesn't fire again the load of the module\r\n // since the module adds another event listener and re-loading the module duplicates the event listener.\r\n document.removeEventListener('click', loadAskQuestionHandlerModule);\r\n\r\n require(\r\n [moduleName],\r\n (askQuestionHandler) => {\r\n askQuestionHandler.openModal(event);\r\n }\r\n );\r\n }\r\n\r\n document.addEventListener('click', loadAskQuestionHandlerModule);\r\n});\r\n\n","/*\r\n * Inits the builder showcase about page\r\n */\r\ndefine(\r\n 'testimonialsInitializer',[\r\n 'favoritesLoader',\r\n 'askQuestionLoader',\r\n ],\r\n () => {\r\n 'use strict';\r\n }\r\n);\r\n\n","require(\r\n [\r\n 'testimonialsInitializer',\r\n ]\r\n);\r\n\ndefine(\"nhs/views/BuilderShowCaseRedesign/ShowTestimonials\", function(){});\n\n","\nrequire([\"nhs/views/BuilderShowCaseRedesign/ShowTestimonials\"]);\n"]}