{"version":3,"file":"asset-loader.min.js","sources":["../../../../src/utils/asset-loader-utils.ts","../../../../src/utils/common-utils.ts","../../../../src/core/js/asset-loader.ts"],"sourcesContent":["/* This script is created and maintained by The Global Chat Team at The Estee Lauder Companies. It is part of a larger ecosystem, so please raise any issues, change or feature requests with our team directly. */\n\nexport async function loadScript(url: string, callback?: () => {}): Promise {\n const script = document.createElement(\"script\");\n script.src = url;\n script.type = \"text/javascript\";\n script.dataset.sourceMap = url + '.map';\n if (callback) script.onload = callback;\n document.head.appendChild(script);\n}\n\nexport async function loadCookieGatedScript(url: string): Promise {\n const functionalCookieCategory = '3';\n\n if (window.OneTrust?.InsertScript) {\n window.OneTrust.InsertScript(url, 'head', null, null, functionalCookieCategory);\n return;\n }\n\n const timeout = setTimeout(() => {\n if (!window.OneTrust) {\n loadCookieGatedScriptFallback(url);\n }\n clearInterval(interval);\n }, 10000);\n\n const interval = setInterval(() => {\n if (window.OneTrust?.InsertScript) {\n window.OneTrust.InsertScript(url, 'head', null, null, '3');\n clearTimeout(timeout);\n clearInterval(interval);\n }\n }, 100)\n}\n\nfunction loadCookieGatedScriptFallback(url: string): void {\n const script = document.createElement('script');\n script.src = url;\n script.className = 'optanon-category-3';\n script.type = 'text/plain';\n document.head.appendChild(script);\n}\n\nexport async function loadScriptMap(mapUrl: string): Promise {\n const script = document.querySelector(`script[src=\"${mapUrl}\"]`) as HTMLScriptElement;\n if (script?.dataset?.sourceMap) {\n script.dataset.sourceMap = mapUrl;\n }\n}\n\nexport async function loadCss(url: string): Promise {\n const link = document.createElement(\"link\");\n link.rel = \"stylesheet\";\n link.href = url;\n link.dataset.sourceMap = url + '.map';\n document.head.appendChild(link);\n}\n\nexport async function loadBrandAssets(resources: Resources, brandAssetsManifest: Manifest, bucketPath: string) {\n if (brandAssetsManifest === undefined) {\n throw new Error(\"LiveChat Error: Brand Asset Manifest is missing\");\n }\n\n for (const key in resources) {\n if (resources[key].enabled) {\n await loadBrandAsset(key, brandAssetsManifest, bucketPath);\n }\n }\n}\n\nexport async function loadBrandAsset(resourceKey: string, brandAssetsManifest: Manifest, bucketPath: string) {\n if (resourceKey === undefined) {\n throw new Error(\"Assets are missing from the manifest: \",);\n }\n\n const r = brandAssetsManifest[resourceKey];\n\n if (!r) return;\n\n for (const assetPath of r) {\n const url = `${bucketPath}${assetPath}`;\n if (assetPath.endsWith(\".js\")) {\n await loadCookieGatedScript(url);\n if (assetPath.endsWith(\".map\")) {\n const mapUrl = url + \".map\";\n await loadScriptMap(mapUrl);\n }\n } else if (assetPath.endsWith(\".css\")) {\n await loadCss(url);\n }\n }\n}\n\nexport async function loadLivePersonAssets(resourceArray: string[], bucketPath: string) {\n if (resourceArray === undefined) {\n throw new Error(\"Assets are missing from the manifest: \",);\n }\n for (const assetPath of resourceArray) {\n const url = `${bucketPath}${assetPath}`;\n if (assetPath.endsWith(\".js\")) {\n await loadCookieGatedScript(url);\n if (assetPath.endsWith(\".map\")) {\n const mapUrl = url + \".map\";\n await loadScriptMap(mapUrl);\n }\n } else if (assetPath.endsWith(\".css\")) {\n await loadCss(url);\n }\n }\n}\n\nexport async function loadCookieGatedCoreAssets(resourceArray: string[], bucketPath: string) {\n // Ignores Asset Loader, fires health check when done\n if (resourceArray === undefined) {\n throw new Error(\"Core Assets are missing from the manifest: \",);\n }\n const coreAssetpath = resourceArray.filter(assetPath => !assetPath.includes('asset-loader'));\n\n for (const assetPath of coreAssetpath) {\n const url = `${bucketPath}${assetPath}`;\n if (assetPath.endsWith(\".js\")) {\n await loadScript(url);\n if (assetPath.endsWith(\".map\")) {\n const mapUrl = url + \".map\";\n await loadScriptMap(mapUrl);\n }\n }\n }\n // Ensure everything (including other potential LP scripts) have loaded before dispatching the event\n\n // Ignoring health check for now...\n\n // window.addEventListener(\"load\", () => {\n // window.LiveChat = window.LiveChat || {};\n // window.LiveChat.health = window.LiveChat.health || {};\n // window.LiveChat.health.liveperson = window.LiveChat.health.liveperson || {};\n\n // window.LiveChat.health.liveperson.assetsLoaded = true;\n // document.dispatchEvent(new Event(\"liveperson_assets_loaded\"));\n // });\n}\n\nexport async function loadChatUiAssets(resourceArray: string[], bucketPath: string) {\n if (resourceArray === undefined) {\n throw new Error(\"Chat UI Assets are missing from the manifest: \",);\n }\n for (const assetPath of resourceArray) {\n const url = `${bucketPath}${assetPath}`;\n if (assetPath.endsWith(\".js\")) {\n await loadScript(url);\n if (assetPath.endsWith(\".map\")) {\n const mapUrl = url + \".map\";\n await loadScriptMap(mapUrl);\n }\n } else if (assetPath.endsWith(\".css\")) {\n await loadCss(url);\n }\n }\n}\n\n// Called last in the asset loader pipeline\nexport function performLocalSetup() {\n console.log(\"LIVECHAT >> Local system initializing...\");\n setupLocalLivePerson();\n}\n\nfunction setupLocalLivePerson() {\n console.log(\"LIVECHAT >> Setting up local LivePerson environment...\");\n // Set up the minimum mock necessary for the LiveChat UI to work with a locally-mocked LivePerson Engagement\n const beautyDrawer = document.getElementById(\"livechat_lp_drawer_beauty\");\n if (!beautyDrawer) throw new Error(\"Beauty Drawer not found\");\n const beautyEngagement = beautyDrawer.appendChild(document.createElement(\"div\")).appendChild(document.createElement(\"div\"));\n beautyEngagement.setAttribute('data-lp-engagement-id', '1234567890');\n\n const customerSupportDrawer = document.getElementById(\"livechat_lp_drawer_customer_support\");\n if (!customerSupportDrawer) throw new Error(\"Customer Support Drawer not found\");\n const customerSupportEngagement = customerSupportDrawer.appendChild(document.createElement(\"div\")).appendChild(document.createElement(\"div\"));\n customerSupportEngagement.setAttribute('data-lp-engagement-id', '0987654321');\n\n window.lpTag = window.lpTag || {\n taglets: {\n rendererStub: {\n click: (engagementId: string) => {\n if (!document.querySelector(`[data-lp-engagement-id=\"${engagementId}\"]`)) return false;\n renderMockLpWindow();\n return true;\n }\n }\n }\n };\n}\n\nfunction renderMockLpWindow() {\n const mockLpWindow = document.createElement(\"div\");\n mockLpWindow.id = \"lp-window-mock\";\n mockLpWindow.setAttribute(\"style\", \"position: sticky; bottom: 0; left: 0; width: 350px; height: 500px; background-color: white; z-index: 9999; padding: 10px; border: 1px solid black;\");\n const closeButton = document.createElement(\"button\");\n closeButton.textContent = \"X\";\n closeButton.setAttribute(\"style\", \"font: bold; position: absolute; top: 0; right: 0; padding: 5px; font-size: 1.5rem;\");\n closeButton.onclick = () => mockLpWindow.remove();\n mockLpWindow.appendChild(closeButton);\n mockLpWindow.appendChild(document.createElement(\"h2\")).textContent = \"Mock LivePerson Window\";\n\n document.body.appendChild(mockLpWindow);\n}\n","export class LiveChatError extends Error {\n constructor(message: any) {\n if (message instanceof Error || message instanceof LiveChatError) {\n super(message.message); // Extract the message if an Error is passed\n } else {\n super(message);\n }\n\n this.name = \"LiveChatError\";\n Object.setPrototypeOf(this, LiveChatError.prototype);\n }\n}\n","// This script is created and maintained by The Global Chat Team at The Estee Lauder Companies. Please raise any issues or feature requests with our team directly.\n\nimport {\n loadLivePersonAssets,\n loadCookieGatedCoreAssets,\n loadBrandAssets,\n loadChatUiAssets,\n performLocalSetup,\n} from \"../../utils/asset-loader-utils\"\n\nimport {\n LiveChatError\n} from \"../../utils/common-utils\";\n\n(async function () {\n const bucketPath = `/livechat`;\n const config = window.LiveChat;\n const manifest = window.LiveChat!.manifest || null;\n const resources = window.LiveChat!.resources;\n\n if (!config || !manifest || !resources) {\n throw new LiveChatError(\n \"There are files missing from the window.LiveChat object. Cannot load LiveChat.\"\n );\n }\n\n try {\n // LiveChat UI\n if (resources.ui && resources.ui.enabled) {\n let excludedRoutes = resources.ui.excluded_routes || [];\n const globalExclusions = [\"/checkout*\", \"/cart*\", \"/iframe*\"];\n excludedRoutes.push(...globalExclusions);\n\n const currentPath = window.location.pathname;\n\n if (!isExcludedRoute(currentPath, excludedRoutes)) {\n const liveChatContainer = document.createElement('div');\n liveChatContainer.id = 'live-chat-ui-container';\n document.body.appendChild(liveChatContainer);\n\n const beautyDrawer = document.createElement(\"div\");\n beautyDrawer.id = \"livechat_lp_drawer_beauty\";\n liveChatContainer.appendChild(beautyDrawer);\n\n const customerSupportDrawer = document.createElement(\"div\");\n customerSupportDrawer.id = \"livechat_lp_drawer_customer_support\";\n liveChatContainer.appendChild(customerSupportDrawer);\n\n await loadChatUiAssets(manifest.ui, bucketPath);\n }\n }\n } catch (error) {\n throw new LiveChatError(`There was a problem loading the LiveChat UI: ${(error as Error).message}`)\n }\n\n try {\n // LivePerson\n if (resources.liveperson && resources.liveperson.enabled) {\n await loadLivePersonAssets(manifest.liveperson, bucketPath);\n //core Assets\n loadCookieGatedCoreAssets(manifest.asset_loader, bucketPath);\n }\n\n } catch (error) {\n throw new LiveChatError(`There was a problem loading LiveChat's LivePerson assets: ${(error as Error).message}`)\n }\n\n try {\n // Brand Assets\n if (config.brand_assets_manifest_filename) {\n const brandAssetsManifest = await fetch(\n `${bucketPath}/brands/${config.brand_assets_manifest_filename}`\n ).then((response) => response.json());\n await loadBrandAssets(resources, brandAssetsManifest, bucketPath);\n }\n } catch (error) {\n throw new LiveChatError(`There was a problem loading the LiveChat brand-specific assets: ${(error as Error).message}`)\n }\n\n try {\n // Local-specific configurations\n if (config.is_local_config) {\n performLocalSetup();\n }\n } catch (error) {\n throw new LiveChatError(`There was a problem loading the LiveChat local configuration: ${(error as Error).message}`);\n }\n})();\n\nfunction isExcludedRoute(currentPath: string, excludedRoutes: string[]): boolean {\n if (!excludedRoutes || !Array.isArray(excludedRoutes)) {\n return false;\n }\n\n return excludedRoutes.some(pattern => {\n const regexPattern = pattern\n // Escape special regex characters except *\n .replace(/[.+?^${}()|[\\]\\\\]/g, '\\\\$&')\n // Replace * with regex pattern for any characters\n .replace(/\\*/g, '.*')\n // Anchor to start and end\n .replace(/^/, '^')\n .replace(/$/, '$');\n\n const regex = new RegExp(regexPattern);\n return regex.test(currentPath);\n });\n}\n"],"names":["async","loadScript","url","callback","script","document","createElement","src","type","dataset","sourceMap","head","appendChild","loadCookieGatedScript","window","OneTrust","_a","InsertScript","timeout","setTimeout","className","loadCookieGatedScriptFallback","clearInterval","interval","setInterval","clearTimeout","loadScriptMap","mapUrl","querySelector","loadCss","link","rel","href","loadBrandAsset","resourceKey","brandAssetsManifest","bucketPath","undefined","Error","r","assetPath","endsWith","performLocalSetup","console","log","beautyDrawer","getElementById","setAttribute","customerSupportDrawer","lpTag","taglets","rendererStub","click","engagementId","mockLpWindow","id","closeButton","textContent","onclick","remove","body","renderMockLpWindow","setupLocalLivePerson","LiveChatError","constructor","message","super","this","name","Object","setPrototypeOf","prototype","config","LiveChat","manifest","resources","ui","enabled","excludedRoutes","excluded_routes","globalExclusions","push","currentPath","Array","isArray","some","pattern","regexPattern","replace","RegExp","test","isExcludedRoute","location","pathname","liveChatContainer","resourceArray","loadChatUiAssets","error","liveperson","loadLivePersonAssets","coreAssetpath","filter","includes","loadCookieGatedCoreAssets","asset_loader","brand_assets_manifest_filename","fetch","then","response","json","key","loadBrandAssets","is_local_config"],"mappings":"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"}