{"version":3,"file":"alpine-turbo-drive-adapter.esm-F85flHt0.js","sources":["../../../node_modules/alpine-turbo-drive-adapter/dist/alpine-turbo-drive-adapter.esm.js"],"sourcesContent":["function isValidVersion(required, current) {\n var requiredArray = required.split('.');\n var currentArray = current.split('.');\n\n for (var i = 0; i < requiredArray.length; i++) {\n if (!currentArray[i] || currentArray[i] < requiredArray[i]) {\n return false;\n }\n }\n\n return true;\n}\nfunction beforeDomReady(callback) {\n if (document.readyState === 'loading') {\n document.addEventListener('readystatechange', () => {\n if (document.readyState === 'interactive') {\n callback();\n }\n });\n } else {\n callback();\n }\n}\n\nclass Bridge {\n init() {\n // Tag all cloaked elements on first page load.\n document.body.querySelectorAll('[x-cloak]').forEach(el => {\n var _el$getAttribute;\n\n el.setAttribute('data-alpine-was-cloaked', (_el$getAttribute = el.getAttribute('x-cloak')) !== null && _el$getAttribute !== void 0 ? _el$getAttribute : '');\n });\n this.configureEventHandlers();\n }\n\n setMutationObserverState(state) {\n if (!window.Alpine.version || !isValidVersion('2.4.0', window.Alpine.version)) {\n throw new Error('Invalid Alpine version. Please use Alpine 2.4.0 or above');\n }\n\n window.Alpine.pauseMutationObserver = !state;\n }\n\n configureEventHandlers() {\n // Once Turbolinks finished is magic, we initialise Alpine on the new page\n // and resume the observer\n var renderCallback = () => {\n // turbo:render fires twice in cached views but we don't want to\n // try to restore Alpine on the preview.\n if (document.documentElement.hasAttribute('data-turbo-preview')) {\n return;\n }\n\n window.Alpine.discoverUninitializedComponents(el => {\n window.Alpine.initializeComponent(el);\n });\n requestAnimationFrame(() => {\n this.setMutationObserverState(true);\n });\n }; // Before swapping the body, clean up any element with x-turbolinks-cached\n // which do not have any Alpine properties.\n // Note, at this point all html fragments marked as data-turbolinks-permanent\n // are already copied over from the previous page so they retain their listener\n // and custom properties and we don't want to reset them.\n\n\n var beforeRenderCallback = event => {\n var newBody = event.data ? event.data.newBody : event.detail.newBody;\n newBody.querySelectorAll('[data-alpine-generated-me],[x-cloak]').forEach(el => {\n if (el.hasAttribute('x-cloak')) {\n var _el$getAttribute2;\n\n // When we get a new document body tag any cloaked elements so we can cloak\n // them again before caching.\n el.setAttribute('data-alpine-was-cloaked', (_el$getAttribute2 = el.getAttribute('x-cloak')) !== null && _el$getAttribute2 !== void 0 ? _el$getAttribute2 : '');\n }\n\n if (el.hasAttribute('data-alpine-generated-me')) {\n el.removeAttribute('data-alpine-generated-me');\n\n if (typeof el.__x_for_key === 'undefined' && typeof el.__x_inserted_me === 'undefined') {\n el.remove();\n }\n }\n });\n }; // Pause the the mutation observer to avoid data races, it will be resumed by the turbolinks:load event.\n // We mark as `data-alpine-generated-m` all elements that are crated by an Alpine templating directives.\n // The reason is that turbolinks caches pages using cloneNode which removes listeners and custom properties\n // So we need to propagate this infomation using a HTML attribute. I know, not ideal but I could not think\n // of a better option.\n // Note, we can't remove any Alpine generated element as yet because if they live inside an element\n // marked as data-turbolinks-permanent they need to be copied into the next page.\n // The coping process happens somewhere between before-cache and before-render.\n\n\n var beforeCacheCallback = () => {\n this.setMutationObserverState(false);\n document.body.querySelectorAll('[x-for],[x-if],[data-alpine-was-cloaked]').forEach(el => {\n // Cloak any elements again that were tagged when the page was loaded\n if (el.hasAttribute('data-alpine-was-cloaked')) {\n var _el$getAttribute3;\n\n el.setAttribute('x-cloak', (_el$getAttribute3 = el.getAttribute('data-alpine-was-cloaked')) !== null && _el$getAttribute3 !== void 0 ? _el$getAttribute3 : '');\n el.removeAttribute('data-alpine-was-cloaked');\n }\n\n if (el.hasAttribute('x-for')) {\n var nextEl = el.nextElementSibling;\n\n while (nextEl && typeof nextEl.__x_for_key !== 'undefined') {\n var currEl = nextEl;\n nextEl = nextEl.nextElementSibling;\n currEl.setAttribute('data-alpine-generated-me', true);\n }\n } else if (el.hasAttribute('x-if')) {\n var ifEl = el.nextElementSibling;\n\n if (ifEl && typeof ifEl.__x_inserted_me !== 'undefined') {\n ifEl.setAttribute('data-alpine-generated-me', true);\n }\n }\n });\n }; // Streams do not trigger a render event and there is no\n // turbo:after-stream-render so we use turbo:before-stream-render\n // and we delay 2 ticks to simulate the after-stream-render event\n\n\n var beforeStreamFormRenderCallback = () => {\n requestAnimationFrame(() => {\n requestAnimationFrame(() => {\n renderCallback();\n });\n });\n };\n\n document.addEventListener('turbo:render', renderCallback);\n document.addEventListener('turbolinks:load', renderCallback);\n document.addEventListener('turbo:before-render', beforeRenderCallback);\n document.addEventListener('turbolinks:before-render', beforeRenderCallback);\n document.addEventListener('turbo:before-cache', beforeCacheCallback);\n document.addEventListener('turbolinks:before-cache', beforeCacheCallback);\n document.addEventListener('turbo:before-stream-render', beforeStreamFormRenderCallback);\n }\n\n}\n\nif (window.Alpine) {\n console.error('Alpine-turbo-drive-adapter must be included before AlpineJs');\n} // Polyfill for legacy browsers\n\n\nif (!Object.getOwnPropertyDescriptor(NodeList.prototype, 'forEach')) {\n Object.defineProperty(NodeList.prototype, 'forEach', Object.getOwnPropertyDescriptor(Array.prototype, 'forEach'));\n} // To better suport x-cloak, we need to init the library when the DOM\n// has been downloaded but before Alpine kicks in\n\n\nbeforeDomReady(() => {\n var bridge = new Bridge();\n bridge.init();\n});\n"],"names":["isValidVersion","required","current","requiredArray","currentArray","beforeDomReady","callback","Bridge","el","_el$getAttribute","state","renderCallback","beforeRenderCallback","event","newBody","_el$getAttribute2","beforeCacheCallback","_el$getAttribute3","nextEl","currEl","ifEl","beforeStreamFormRenderCallback","bridge"],"mappings":"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","x_google_ignoreList":[0]}