{"version":3,"file":"main.2955f8213c054ce660e2.js","mappings":"iCAAAA,SAASC,iBAAiB,oBAAoB,KAM1C,SAASC,EAAWC,GAClBA,EAAIC,UAAUC,OAAO,YACvB,EASCL,SAASM,iBAAiB,sBAAwB,IAAIC,SAASC,IAC9D,MAAMC,EAAQD,EAASE,QAAQC,OACzBC,EAAUZ,SAASa,eAAeJ,GAExCD,EAASP,iBAAiB,SAAS,KACvBW,EAnBRR,UAAUU,IAAI,YAmBE,GAClB,KAIHd,SAASM,iBAAiB,uGAAyG,IAAIC,SAASQ,IAC/I,MAAMH,EAAUG,EAAOC,QAAQ,UAE/BD,EAAOd,iBAAiB,SAAS,KAC/BC,EAAWU,EAAQ,GACnB,IAIJZ,SAASC,iBAAiB,WAAYgB,IACnB,WAAdA,EAAMC,MA1BRlB,SAASM,iBAAiB,WAAa,IAAIC,SAASY,IACnDjB,EAAWiB,EAAO,GA2BpB,GACA,G,WCxCNnB,SAASC,iBAAiB,oBAAoB,KAC1CD,SAASM,iBAAiB,gBAAgBC,SAAQa,IAC9C,MAAMC,EAAWrB,SAASa,eAAeO,EAAME,aAAa,gBAC5DF,EAAMG,YAAcF,EAASD,MAE7BC,EAASpB,iBAAiB,SAAS,KAC/BmB,EAAMG,YAAcF,EAASD,KAAK,GACpC,GACJ,G,WCRNpB,SAASC,iBAAiB,oBAAoB,KAE1C,SAASuB,EAAQC,EAAOC,GACpB,IAAIC,EAAOF,EAAMT,QAAQ,YACzB,GAAGW,EAAM,CACL,IAAIC,EAAOD,EAAKE,cAAc,SAC3BD,IACCA,EAAKL,YAAcG,EAE3B,CACJ,CASA1B,SAASM,iBAAiB,SAASC,SAASkB,IACxCA,EAAMxB,iBAAiB,WAAW,KAC9BwB,EAAMrB,UAAUU,IAAI,aACpBU,EAAQC,EAAOA,EAAMK,mBAV7B,SAA8BL,GAC1BA,EAAMxB,iBAAiB,SAAS,KAC5BwB,EAAMrB,UAAUC,OAAO,aACvBmB,EAAQC,EAAO,GAAG,GAE1B,CAMQM,CAAqBN,EAAM,GAC7B,IAGNzB,SAASM,iBAAiB,QAAQC,SAASyB,IACvCA,EAAK/B,iBAAiB,UAAWgB,IACzBe,EAAKC,iBACLhB,EAAMiB,gBACV,GACF,GACJ,G,GChCFC,EAA2B,CAAC,EAGhC,SAASC,EAAoBC,GAE5B,IAAIC,EAAeH,EAAyBE,GAC5C,QAAqBE,IAAjBD,EACH,OAAOA,EAAaE,QAGrB,IAAIC,EAASN,EAAyBE,GAAY,CAGjDG,QAAS,CAAC,GAOX,OAHAE,EAAoBL,GAAUI,EAAQA,EAAOD,QAASJ,GAG/CK,EAAOD,OACf,CCtBAJ,EAAoBO,EAAI,gB","sources":["webpack://braise/./frontend/src/js/lib/_modals.js","webpack://braise/./frontend/src/js/lib/_range.js","webpack://braise/./frontend/src/js/lib/_validation.js","webpack://braise/webpack/bootstrap","webpack://braise/webpack/runtime/publicPath"],"sourcesContent":["document.addEventListener('DOMContentLoaded', () => {\n // Functions to open and close a modal\n function openModal($el) {\n $el.classList.add('is-active');\n }\n\n function closeModal($el) {\n $el.classList.remove('is-active');\n }\n\n function closeAllModals() {\n (document.querySelectorAll('.modal') || []).forEach(($modal) => {\n closeModal($modal);\n });\n }\n\n // Add a click event on buttons to open a specific modal\n (document.querySelectorAll('.js-modal-trigger') || []).forEach(($trigger) => {\n const modal = $trigger.dataset.target;\n const $target = document.getElementById(modal);\n\n $trigger.addEventListener('click', () => {\n openModal($target);\n });\n });\n\n // Add a click event on various child elements to close the parent modal\n (document.querySelectorAll('.modal-background, .modal-close, .modal-card-head .delete, .modal-card-foot .button, .modal-cancel') || []).forEach(($close) => {\n const $target = $close.closest('.modal');\n\n $close.addEventListener('click', () => {\n closeModal($target);\n });\n });\n\n // Add a keyboard event to close all modals\n document.addEventListener('keydown', (event) => {\n if(event.key === \"Escape\") {\n closeAllModals();\n }\n });\n });\n","document.addEventListener('DOMContentLoaded', () => {\n document.querySelectorAll('.range-value').forEach(value => {\n const forRange = document.getElementById(value.getAttribute('data-target'));\n value.textContent = forRange.value;\n\n forRange.addEventListener('input', () => {\n value.textContent = forRange.value;\n });\n });\n\n});\n","document.addEventListener('DOMContentLoaded', () => {\n\n function setHelp(input, message) {\n let ctrl = input.closest('.control');\n if(ctrl) {\n let help = ctrl.querySelector('.help');\n if(help) {\n help.textContent = message;\n }\n }\n }\n\n function clearDangerAfterEdit(input) {\n input.addEventListener('input', () => {\n input.classList.remove('is-danger');\n setHelp(input, '');\n });\n }\n\n document.querySelectorAll('input').forEach((input) => {\n input.addEventListener('invalid', () => {\n input.classList.add('is-danger');\n setHelp(input, input.validationMessage);\n clearDangerAfterEdit(input);\n });\n });\n\n document.querySelectorAll('form').forEach((form) => {\n form.addEventListener('submit', (event) => {\n if(!form.checkValidity()) {\n event.preventDefault();\n }\n });\n });\n\n});\n","// The module cache\nvar __webpack_module_cache__ = {};\n\n// The require function\nfunction __webpack_require__(moduleId) {\n\t// Check if module is in cache\n\tvar cachedModule = __webpack_module_cache__[moduleId];\n\tif (cachedModule !== undefined) {\n\t\treturn cachedModule.exports;\n\t}\n\t// Create a new module (and put it into the cache)\n\tvar module = __webpack_module_cache__[moduleId] = {\n\t\t// no module.id needed\n\t\t// no module.loaded needed\n\t\texports: {}\n\t};\n\n\t// Execute the module function\n\t__webpack_modules__[moduleId](module, module.exports, __webpack_require__);\n\n\t// Return the exports of the module\n\treturn module.exports;\n}\n\n","__webpack_require__.p = \"/static/dist/\";"],"names":["document","addEventListener","closeModal","$el","classList","remove","querySelectorAll","forEach","$trigger","modal","dataset","target","$target","getElementById","add","$close","closest","event","key","$modal","value","forRange","getAttribute","textContent","setHelp","input","message","ctrl","help","querySelector","validationMessage","clearDangerAfterEdit","form","checkValidity","preventDefault","__webpack_module_cache__","__webpack_require__","moduleId","cachedModule","undefined","exports","module","__webpack_modules__","p"],"sourceRoot":""}