{"version":3,"file":"chat-ui.min.js","sources":["../../../../src/utils/asset-loader-utils.ts","../../../../src/utils/common-utils.ts","../../../../src/ui/js/chat-ui.ts","../../../../src/ui/js/lpOrchestrator.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","// @ts-nocheck\n\nimport {\n\tloadLivePersonAssets,\n} from \"../../utils/asset-loader-utils\";\n\nimport { LiveChatError } from \"../../utils/common-utils\";\n\n(function () {\n\tconst bucketPath = '/livechat';\n\tlet removeOutsideClickListener = null;\n\tconst otherSelectors = {\n\t\toneTrustPopUp: '#onetrust-consent-sdk',\n\t};\n\n\tconst uiSelectors = {\n\t\tfloatingButton: '.js-live-chat-button',\n\t\tfloatingButtonIcon: '.live-chat-button__icon',\n\t\tfloatingButtonLoading: '.js-live-chat-button-loading',\n\t\tchatDrawer: '.js-live-chat-drawer',\n\t\tcloseButton: '.js-live-chat-drawer-close',\n\t\tserviceButtons: {\n\t\t\tartistButton: '.js-live-chat-drawer-artist-button',\n\t\t\tsupportButton: '.js-live-chat-drawer-support-button'\n\t\t},\n\t\twarnings: {\n\t\t\tchatDrawerCookieWarning: '.js-live-chat-drawer-cookie-warning',\n\t\t\tchatDrawerWarning: '.js-live-chat-drawer-warning'\n\t\t},\n\t\tchatDrawerSuccess: '.js-live-chat-drawer-success',\n\t\theaderIcon: '.js-live-chat-header-icon',\n\t\tcookieButton: '.js-live-chat-drawer-cookie-button',\n\t\trefreshWindow: '.js-live-chat-drawer-refresh-window-button'\n\t};\n\n\tconst state = {\n\t\tchatContainer: document.getElementById('live-chat-ui-container'),\n\t\telements: {}\n\t};\n\n\t// Ensure the chat container exists before proceeding\n\tif (!state.chatContainer) {\n\t\tthrow new LiveChatError('LiveChat UI container not found');\n\t}\n\n\t// Dynamically cache UI elements using uiSelectors\n\tfunction cacheChatUiDOMElements() {\n\t\tconst cacheElement = (key, selector, parent) => {\n\t\t\tconst element = parent.querySelector(selector);\n\t\t\tif (!element) console.warn(`⚠️ Warning: Missing UI element for ${key}`);\n\t\t\treturn element;\n\t\t};\n\n\t\tObject.entries(uiSelectors).forEach(([key, selector]) => {\n\t\t\tif (typeof selector === 'object') {\n\t\t\t\tstate.elements[key] = {};\n\t\t\t\tObject.entries(selector).forEach(([nestedKey, nestedSelector]) => {\n\t\t\t\t\tstate.elements[key][nestedKey] = cacheElement(nestedKey, nestedSelector, state.chatContainer);\n\t\t\t\t});\n\t\t\t} else {\n\t\t\t\tstate.elements[key] = cacheElement(key, selector, state.chatContainer);\n\t\t\t}\n\t\t});\n\t}\n\n\tasync function loadTemplate(url, errorMessage) {\n\t\ttry {\n\t\t\tconst response = await fetch(url);\n\t\t\tif (!response.ok) throw new Error(errorMessage);\n\t\t\treturn await response.text();\n\t\t} catch (error) {\n\t\t\tthrow new Error(`${errorMessage}: ${error.message}`);\n\t\t}\n\t}\n\n\tasync function handleTemplateRender(url) {\n\t\tconst chatUiConfig = window.LiveChat.resources.ui || null;\n\t\tconst template = await loadTemplate(url, `Failed to fetch chat UI template from ${url}`);\n\t\treturn Mustache.render(template, chatUiConfig);\n\t}\n\n\tfunction chatUiHasClass(element, className) {\n\t\tif (!element) {\n\t\t\tconsole.warn(`chatUiHasClass: Element is missing when checking class \"${className}\"`);\n\t\t\treturn false;\n\t\t}\n\t\treturn element.classList.contains(className);\n\t}\n\n\tfunction chatUiHideElement(element) {\n\t\telement.classList.add('live-chat-hidden');\n\t}\n\n\tfunction chatUiShowElement(element) {\n\t\telement.classList.remove('live-chat-hidden');\n\t}\n\n\tfunction updateDrawerHeaderState() {\n\t\tconst hasVisibleWarnings =\n\t\t\t!chatUiHasClass(state.elements.warnings.chatDrawerWarning, 'live-chat-hidden') ||\n\t\t\t!chatUiHasClass(state.elements.warnings.chatDrawerCookieWarning, 'live-chat-hidden');\n\n\t\tstate.elements.headerIcon.classList.toggle(\n\t\t\t\"live-chat-drawer__header-icon--content\",\n\t\t\t!hasVisibleWarnings\n\t\t);\n\t\tstate.elements.headerIcon.classList.toggle(\n\t\t\t\"live-chat-drawer__header-icon--warning\",\n\t\t\thasVisibleWarnings\n\t\t);\n\n\t\treturn hasVisibleWarnings;\n\t}\n\n\tfunction getIsFunctionalCookieCategory() {\n\t\treturn window.OptanonActiveGroups && window.OptanonActiveGroups.indexOf('3') !== -1;\n\t}\n\n\tfunction getIsUserAwaitingChat() {\n\t\treturn (\n\t\t\t(window.LiveChat.lpBeautyChatOrcData && window.LiveChat.lpBeautyChatOrcData.isUserAwaitingChat) ||\n\t\t\t(window.LiveChat.lpSupportChatOrcData && window.LiveChat.lpSupportChatOrcData.isUserAwaitingChat) ||\n\t\t\tfalse\n\t\t);\n\t}\n\n\tfunction closeDrawerOnClickOut() {\n\t\tconst handleOutsideClick = (event) => {\n\t\t\tconst oneTrustPopUp = document.querySelector(otherSelectors.oneTrustPopUp);\n\t\t\tif (\n\t\t\t\t!state.elements.chatDrawer.contains(event.target) &&\n\t\t\t\t!state.elements.floatingButton.contains(event.target) &&\n\t\t\t\t(!oneTrustPopUp || !oneTrustPopUp.contains(event.target))\n\t\t\t) {\n\t\t\t\tchatUiHideElement(state.elements.chatDrawer);\n\t\t\t\tif (getIsUserAwaitingChat()) showFloatingButtonLoadingState();\n\t\t\t\tremoveOutsideClickListener();\n\t\t\t}\n\t\t}\n\t\tdocument.addEventListener(\"click\", handleOutsideClick);\n\t\tremoveOutsideClickListener = () => document.removeEventListener(\"click\", handleOutsideClick);\n\t}\n\n\tfunction closeDrawerOnX() {\n\t\tstate.elements.closeButton.addEventListener(\"click\", () => {\n\t\t\tchatUiHideElement(state.elements.chatDrawer);\n\t\t\t// Terminate intent loop if exists and loading states.\n\t\t\tconst isUserAwaitingChat = getIsUserAwaitingChat();\n\t\t\tif (!isUserAwaitingChat) return;\n\t\t\twindow.LiveChat.onCloseButtonClick();\n\t\t\tconst service = window.LiveChat.lpBeautyChatOrcData.isUserAwaitingChat ? 'artist' : 'support';\n\t\t\tconst button = service === 'artist' ? state.elements.serviceButtons.artistButton : state.elements.serviceButtons.supportButton;\n\t\t\ttoggleDrawerButton(button, service, false);\n\t\t\thideFloatingButtonLoadingState();\n\t\t});\n\t}\n\n\tfunction showFloatingButtonLoadingState() {\n\t\tif (!getIsUserAwaitingChat()) return;\n\t\tif (!chatUiHasClass(state.elements.chatDrawer, 'live-chat-hidden')) return;\n\n\t\tchatUiShowElement(state.elements.floatingButtonLoading);\n\t\tchatUiHideElement(state.elements.floatingButtonIcon);\n\t}\n\n\tfunction hideFloatingButtonLoadingState() {\n\t\tchatUiHideElement(state.elements.floatingButtonLoading);\n\t\tchatUiShowElement(state.elements.floatingButtonIcon);\n\t};\n\n\tfunction toggleDrawerTemplates(templateToShow) {\n\t\tconst templates = [state.elements.chatDrawerSuccess, state.elements.warnings.chatDrawerWarning, state.elements.warnings.chatDrawerCookieWarning];\n\n\t\ttemplates.forEach(template => {\n\t\t\tif (template !== templateToShow) {\n\t\t\t\tchatUiHideElement(template);\n\t\t\t} else {\n\t\t\t\tchatUiShowElement(template);\n\t\t\t}\n\t\t});\n\n\t\tupdateDrawerHeaderState();\n\t};\n\n\tfunction toggleDrawer() {\n\t\tstate.elements.chatDrawer.classList.toggle('live-chat-hidden');\n\t\tif (\n\t\t\tchatUiHasClass(state.elements.warnings.chatDrawerCookieWarning, 'live-chat-hidden')\n\t\t\t&& chatUiHasClass(state.elements.warnings.chatDrawerWarning, 'live-chat-hidden')\n\t\t) {\n\t\t\t(getIsUserAwaitingChat() && chatUiHasClass(state.elements.chatDrawer, 'live-chat-hidden')) // If the user is awaiting chat, drawer is closed, and then clicks the floating button\n\t\t\t\t? showFloatingButtonLoadingState()\n\t\t\t\t: hideFloatingButtonLoadingState();\n\t\t\ttoggleDrawerTemplates(state.elements.chatDrawerSuccess);\n\t\t}\n\n\t\tcloseDrawerOnClickOut();\n\t}\n\n\tfunction toggleDrawerButton(button, service, isLoading) {\n\t\tbutton.querySelector(`.js-${service}-text`).classList.toggle('live-chat-hidden', isLoading);\n\t\tbutton.querySelector(`.js-${service}-loading`).classList.toggle('live-chat-hidden', !isLoading);\n\t\tbutton.querySelector(`.js-${service}-loading-text`).classList.toggle('live-chat-hidden', !isLoading);\n\t}\n\n\tfunction getServiceButtonSelector(services) {\n\t\treturn services === 'artist'\n\t\t\t? uiSelectors.serviceButtons.supportButton\n\t\t\t: uiSelectors.serviceButtons.artistButton\n\t}\n\n\tfunction chatDrawerFinishedEvent(button, chatOrcData, service) {\n\t\tif (!chatOrcData) {\n\t\t\ttoggleDrawerTemplates(state.elements.warnings.chatDrawerWarning);\n\t\t\thideFloatingButtonLoadingState();\n\t\t\ttoggleDrawerButton(button, service, false);\n\t\t\tthrow new Error(`LiveChat: chatOrcData is undefined for service: ${service}`);\n\t\t}\n\n\t\tdocument.addEventListener(chatOrcData.intentLoopFinishedEventName, function () {\n\t\t\tif (!chatOrcData.isUserAwaitingChat) return;\n\t\t\tconst buttonSelector = getServiceButtonSelector(service);\n\t\t\tconst buttonEnabled = state.chatContainer.querySelector(buttonSelector);\n\t\t\tif (buttonEnabled) {\n\t\t\t\tbuttonEnabled.disabled = false;\n\t\t\t}\n\t\t\tchatUiHideElement(state.elements.chatDrawer);\n\t\t\thideFloatingButtonLoadingState();\n\t\t\ttoggleDrawerButton(button, service, false);\n\t\t});\n\t}\n\n\tfunction chatDrawerErrorMessageEvent(chatOrcData) {\n\t\tdocument.addEventListener(chatOrcData.errorMessageEventName, function () {\n\t\t\tchatUiShowElement(state.elements.chatDrawer);\n\t\t\ttoggleDrawerTemplates(state.elements.warnings.chatDrawerWarning);\n\t\t\thideFloatingButtonLoadingState();\n\t\t});\n\t}\n\n\tfunction showCookieComplianceWarning() {\n\t\tstate.elements.cookieButton.classList.add('ot-sdk-show-settings');\n\t\tstate.elements.cookieButton.id = \"ot-sdk-btn\";\n\t\tstate.elements.cookieButton.addEventListener(\"click\", () => window.OneTrust.ToggleInfoDisplay());\n\t\ttoggleDrawerTemplates(state.elements.warnings.chatDrawerCookieWarning);\n\t};\n\n\tfunction serviceButtonHandler() {\n\t\treturn {\n\t\t\tartist: {\n\t\t\t\tbutton: state.elements.serviceButtons.artistButton,\n\t\t\t\tcallback: () => window.LiveChat.onBeautyChatButtonClick()\n\t\t\t},\n\t\t\tsupport: {\n\t\t\t\tbutton: state.elements.serviceButtons.supportButton,\n\t\t\t\tcallback: () => window.LiveChat.onSupportChatButtonClick()\n\t\t\t}\n\t\t};\n\t};\n\n\tfunction handleServiceSelection(service) {\n\t\tconst serviceHandler = serviceButtonHandler()[service];\n\n\t\tif (!serviceHandler) {\n\t\t\tthrow new Error(`❌ No service handler found for \"${service}\"`);\n\t\t}\n\n\t\tconst { button, callback } = serviceHandler;\n\t\tconst chatOrcData = service === 'artist' ? window.LiveChat.lpBeautyChatOrcData : window.LiveChat.lpSupportChatOrcData;\n\n\t\ttoggleDrawerButton(button, service, true);\n\t\tchatDrawerFinishedEvent(button, chatOrcData, service);\n\t\tchatDrawerErrorMessageEvent(chatOrcData);\n\n\t\t// Ensure UI is not stuck on success if callback() fails\n\t\ttry {\n\t\t\tif (callback) {\n\t\t\t\tcallback();\n\t\t\t}\n\t\t} catch (callbackError) {\n\t\t\tconsole.error(`❌ LiveChat callback Error: ${callbackError.message}`);\n\t\t\ttoggleDrawerTemplates(state.elements.warnings.chatDrawerWarning);\n\t\t\thideFloatingButtonLoadingState();\n\t\t}\n\t}\n\n\tfunction disableOtherButton(buttonSelector) {\n\t\tconst button = state.chatContainer.querySelector(buttonSelector);\n\t\tbutton.disabled = true;\n\t};\n\n\tfunction selectService(service) {\n\t\tlocalStorage.setItem('live_chat_selected_service', service);\n\t\tconst buttonSelector = getServiceButtonSelector(service)\n\t\tdisableOtherButton(buttonSelector);\n\t\tstate.elements.buttonClicked = service;\n\t\tif (getIsFunctionalCookieCategory()) {\n\t\t\thandleServiceSelection(service);\n\t\t} else {\n\t\t\tshowCookieComplianceWarning();\n\t\t}\n\t};\n\n\tasync function initializeLivePerson() {\n\t\tconst { manifest, resources } = window.LiveChat || {};\n\t\tconst shouldLoadLivePerson = resources.liveperson.enabled;\n\n\t\tif (shouldLoadLivePerson) {\n\t\t\tawait loadLivePersonAssets(manifest.liveperson, bucketPath);\n\t\t}\n\t}\n\n\tasync function getCurrentDecision() {\n\t\tif (getIsFunctionalCookieCategory()) {\n\t\t\tif (!window?.lpTag?.site) initializeLivePerson();\n\n\t\t\tconst buttonClicked = state.elements.buttonClicked;\n\t\t\tif (!buttonClicked) return;\n\n\t\t\thandleServiceSelection(buttonClicked);\n\t\t\ttoggleDrawerTemplates(state.elements.chatDrawerSuccess);\n\t\t}\n\t}\n\n\tasync function loadChatUi(url) {\n\t\tconst chatUiTemplate = await handleTemplateRender(url);\n\t\tstate.chatContainer.insertAdjacentHTML('afterbegin', chatUiTemplate);\n\t\tcacheChatUiDOMElements();\n\n\t\tconst userIntent = localStorage.getItem('live_chat_user_intent');\n\n\t\tif (userIntent) {\n\t\t\tconst selectedService = localStorage.getItem('live_chat_selected_service');\n\t\t\tif (selectedService) {\n\t\t\t\tselectService(selectedService);\n\t\t\t\tshowFloatingButtonLoadingState();\n\t\t\t}\n\t\t\tlocalStorage.removeItem('live_chat_user_intent');\n\t\t} else {\n\t\t\tlocalStorage.removeItem('live_chat_selected_service');\n\t\t}\n\n\t\twindow.addEventListener('OneTrustGroupsUpdated', () => {\n\t\t\tgetCurrentDecision();\n\t\t});\n\t\tstate.elements.floatingButton.addEventListener(\"click\", () => toggleDrawer());\n\t\tcloseDrawerOnX();\n\t\tstate.elements.serviceButtons.artistButton.addEventListener(\"click\", () => selectService('artist'));\n\t\tstate.elements.serviceButtons.supportButton.addEventListener(\"click\", () => selectService('support'));\n\t\tstate.elements.refreshWindow.addEventListener(\"click\", () => {\n\t\t\tlocalStorage.setItem('live_chat_user_intent', \"true\");\n\t\t\tlocation.reload()\n\t\t});\n\t}\n\n\tasync function initializeChatUI() {\n\t\ttry {\n\t\t\tconst { manifest, resources } = window.LiveChat || {};\n\t\t\tconst missingConfig = !manifest || !resources;\n\t\t\tconst hasValidManifest = Array.isArray(manifest.ui) && manifest.ui.length > 0;\n\n\t\t\tif (missingConfig) {\n\t\t\t\tthrow new Error('Missing required properties in window.LiveChat object');\n\t\t\t}\n\n\t\t\t// Exit if chat ui is disabled or no manifest files\n\t\t\tif (!resources.ui.enabled || !hasValidManifest) return;\n\n\t\t\t// Filter and validate template files\n\t\t\tconst assetPaths = manifest.ui.filter(file => file.endsWith('.mustache'));\n\t\t\tif (assetPaths.length === 0) return;\n\n\t\t\tconst url = `${bucketPath}${assetPaths[0]}`;\n\n\t\t\t// Load the chat UI with valid templates\n\t\t\tawait loadChatUi(url);\n\t\t} catch (error) {\n\t\t\tthrow new LiveChatError(error.message);\n\t\t}\n\t}\n\t(async function () {\n\t\tawait initializeChatUI();\n\t})();\n}());\n","// @ts-nocheck\n\n/* eslint no-console: [\"error\", { allow: [\"warn\", \"error\"] }] */\nvar site = window.site || {};\n\n(function () {\n window.LiveChat.lpBeautyChatOrcData = {\n divId: 'livechat_lp_drawer_beauty',\n engId: '',\n isLoopActive: false,\n isUserAwaitingChat: false,\n intentLoopTimeoutDefault: 15,\n intentLoopTimeoutCounter: 15,\n intentLoopFinishedEventName: 'livechat_lp_drawer_beauty_intent_loop_complete',\n errorMessageEventName: 'beauty_chat_drawer_error'\n };\n window.LiveChat.lpSupportChatOrcData = {\n divId: 'livechat_lp_drawer_customer_support',\n engId: '',\n isLoopActive: false,\n isUserAwaitingChat: false,\n intentLoopTimeoutDefault: 15,\n intentLoopTimeoutCounter: 15,\n intentLoopFinishedEventName: 'livechat_lp_drawer_customer_support_intent_loop_complete',\n errorMessageEventName: 'support_chat_drawer_error'\n };\n window.LiveChat.lpChatOrcData = {\n divId: '',\n engId: '',\n isLoopActive: false,\n isUserAwaitingChat: false,\n intentLoopTimeoutDefault: 15,\n intentLoopTimeoutCounter: 15,\n intentLoopFinishedEventName: 'global_chat_intent_loop_complete',\n errorMessageEventName: 'chat_button_error'\n };\n\n function initEngagement(divId, engId) {\n switch (divId) {\n case window.LiveChat.lpBeautyChatOrcData.divId:\n window.LiveChat.lpBeautyChatOrcData.engId = engId;\n\n return true;\n case window.LiveChat.lpSupportChatOrcData.divId:\n window.LiveChat.lpSupportChatOrcData.engId = engId;\n\n return true;\n case window.LiveChat.lpChatOrcData.divId:\n window.LiveChat.lpChatOrcData.engId = engId;\n\n return true;\n default:\n throw new Error(\n `lpOrchestrator.initEngagement(): The div id used in this script is not recognized: ${divId}. The chat module for this site is misconfigured.`\n );\n }\n }\n\n function verifyEngagementIsReady(divId) {\n var engId = '';\n var success = false;\n var lpEngagementDiv = document.getElementById(divId);\n\n if (!lpEngagementDiv) return false;\n\n if (\n lpEngagementDiv.children.length === 0 ||\n lpEngagementDiv.children[0].children.length === 0\n ) {\n return false;\n }\n\n engId = lpEngagementDiv.children[0].children[0].getAttribute('data-lp-engagement-id');\n\n if (!engId) {\n return false;\n }\n\n success = initEngagement(divId, engId);\n\n return success;\n }\n\n function verifyLivePersonIsReady() {\n if (window.lpTag?.taglets?.rendererStub) {\n return true;\n }\n\n return false;\n }\n\n function verifyServiceIsReady(divId) {\n var isLivePersonReady = verifyLivePersonIsReady();\n var isEngagementReady = false;\n\n if (!isLivePersonReady) {\n return false;\n }\n isEngagementReady = verifyEngagementIsReady(divId);\n if (!isEngagementReady) {\n return false;\n }\n\n return true;\n }\n\n function performEngagementClick(engId) {\n var success = false;\n\n if (engId) {\n success = window.lpTag.taglets.rendererStub.click(engId);\n }\n\n return success;\n }\n\n function handleIntervalFail(chatOrcData, lpErrorMessageEvent, intentLoop) {\n chatOrcData.intentLoopTimeoutCounter--;\n if (chatOrcData.intentLoopTimeoutCounter === 0) {\n chatOrcData.isLoopActive = false;\n clearInterval(intentLoop);\n document.dispatchEvent(lpErrorMessageEvent);\n }\n }\n\n function handleServiceError() {\n console.warn(\n `lpOrchestrator: The attempt to initiate a LivePerson chat session was unsuccessful.`\n );\n }\n\n async function startIntentLoop(divId) {\n var chatOrcData = {};\n var eventName;\n var lpIntentLoopCompleteEvent;\n var errorEventName = 'livechat_ui_error';\n var lpErrorMessageEvent = new Event(errorEventName, { bubbles: true });\n\n try {\n switch (divId) {\n case window.LiveChat.lpBeautyChatOrcData.divId:\n chatOrcData = window.LiveChat.lpBeautyChatOrcData;\n break;\n case window.LiveChat.lpSupportChatOrcData.divId:\n chatOrcData = window.LiveChat.lpSupportChatOrcData;\n break;\n case window.LiveChat.lpChatOrcData.divId:\n chatOrcData = window.LiveChat.lpChatOrcData;\n break;\n default:\n throw new Error(\n `lpOrchestrator: The div id used in the function startIntentLoop() is not recognized: ${divId}. The chat module for this site is misconfigured.`\n );\n }\n\n if (Object.keys(chatOrcData).length === 0) {\n throw new Error(\n 'lpOrchestrator: The lp__ChatOrcData object is empty. Something is wrong.'\n );\n }\n\n if (!document.getElementById(divId)) {\n throw new Error(\n `lpOrchestrator.initEngagement(): The LivePerson HTMLEngagement div was not found: ${divId} - The LiveChat system for this site is misconfigured.`\n );\n }\n\n chatOrcData.isLoopActive = true;\n chatOrcData.isUserAwaitingChat = true;\n\n eventName = chatOrcData.intentLoopFinishedEventName;\n errorEventName = chatOrcData.errorMessageEventName;\n\n lpIntentLoopCompleteEvent = new Event(eventName, { bubbles: true });\n lpErrorMessageEvent = new Event(errorEventName, { bubbles: true });\n\n chatOrcData.intentLoop = setInterval(function () {\n let success = false;\n const isReady = verifyServiceIsReady(divId);\n\n if (!isReady) {\n handleIntervalFail(chatOrcData, lpErrorMessageEvent, chatOrcData.intentLoop);\n return;\n }\n success = performEngagementClick(chatOrcData.engId);\n if (success) {\n chatOrcData.isLoopActive = false;\n clearInterval(chatOrcData.intentLoop);\n document.dispatchEvent(lpIntentLoopCompleteEvent);\n } else {\n handleIntervalFail(chatOrcData, lpErrorMessageEvent, chatOrcData.intentLoop);\n }\n }, 1000);\n\n // Listen for the loop completion event\n document.addEventListener(eventName, function () {\n clearInterval(chatOrcData.intentLoop);\n chatOrcData.intentLoop = null;\n chatOrcData.intentLoopTimeoutCounter = chatOrcData.intentLoopTimeoutDefault;\n chatOrcData.isUserAwaitingChat = false;\n });\n\n // Listen for the error event\n document.addEventListener(errorEventName, function () {\n clearInterval(chatOrcData.intentLoop);\n chatOrcData.intentLoop = null;\n chatOrcData.intentLoopTimeoutCounter = chatOrcData.intentLoopTimeoutDefault;\n chatOrcData.isUserAwaitingChat = false;\n\n handleServiceError();\n });\n\n } catch (e) {\n document.dispatchEvent(lpErrorMessageEvent);\n console.error(e);\n }\n }\n\n async function endIntentLoop(divId) {\n try {\n let chatOrcData = {};\n\n // Determine the correct chatOrcData object based on divId\n switch (divId) {\n case window.LiveChat.lpBeautyChatOrcData.divId:\n chatOrcData = window.LiveChat.lpBeautyChatOrcData;\n break;\n case window.LiveChat.lpSupportChatOrcData.divId:\n chatOrcData = window.LiveChat.lpSupportChatOrcData;\n break;\n case window.LiveChat.lpChatOrcData.divId:\n chatOrcData = window.LiveChat.lpChatOrcData;\n break;\n default:\n throw new Error(\n `lpOrchestrator: The div id used in the function endIntentLoop() is not recognized: ${divId}. The chat module for this site is misconfigured.`\n );\n }\n\n // Ensure chatOrcData exists and is valid\n if (Object.keys(chatOrcData).length === 0) {\n throw new Error(\n 'lpOrchestrator: The lp__ChatOrcData object is empty. Something is wrong.'\n );\n }\n\n if (!chatOrcData.isLoopActive) return;\n\n // Clear the active intent loop, if any\n const eventName = chatOrcData.intentLoopFinishedEventName;\n const lpIntentLoopCompleteEvent = new Event(eventName, { bubbles: true });\n document.addEventListener(eventName, function () {\n clearInterval(chatOrcData.intentLoop);\n chatOrcData.intentLoop = null;\n chatOrcData.intentLoopTimeoutCounter = chatOrcData.intentLoopTimeoutDefault;\n chatOrcData.isLoopActive = false;\n chatOrcData.isUserAwaitingChat = false;\n });\n document.dispatchEvent(lpIntentLoopCompleteEvent);\n } catch (e) {\n console.error(`Error in endIntentLoop for divId: ${divId}`, e);\n }\n }\n\n // Fires when the user clicks the Beauty Chat button in the drawer\n window.LiveChat.onBeautyChatButtonClick = function () {\n if (window.LiveChat.lpBeautyChatOrcData.isLoopActive) {\n return;\n }\n startIntentLoop(window.LiveChat.lpBeautyChatOrcData.divId);\n };\n\n // Fires when the user clicks the Support Chat button in the drawer\n window.LiveChat.onSupportChatButtonClick = function () {\n if (window.LiveChat.lpSupportChatOrcData.isLoopActive) {\n return;\n }\n startIntentLoop(window.LiveChat.lpSupportChatOrcData.divId);\n };\n\n // Fires when the user clicks the Chat button\n window.LiveChat.onChatButtonClick = function (divId) {\n window.LiveChat.lpChatOrcData.divId = divId;\n if (window.LiveChat.lpChatOrcData.isLoopActive) {\n return;\n }\n startIntentLoop(window.LiveChat.lpChatOrcData.divId);\n };\n\n // Fires when the user clicks the close chat drawer button\n window.LiveChat.onCloseButtonClick = function (divId) {\n if (window.LiveChat.lpBeautyChatOrcData.isLoopActive) {\n endIntentLoop(window.LiveChat.lpBeautyChatOrcData.divId);\n } else if (window.LiveChat.lpSupportChatOrcData.isLoopActive) {\n endIntentLoop(window.LiveChat.lpSupportChatOrcData.divId);\n } else if (window.LiveChat.lpChatOrcData.isLoopActive) {\n window.LiveChat.lpChatOrcData.divId = divId;\n endIntentLoop(window.LiveChat.lpChatOrcData.divId);\n } else {\n return;\n }\n };\n})();\n"],"names":["async","loadCookieGatedScript","url","window","OneTrust","_a","InsertScript","timeout","setTimeout","script","document","createElement","src","className","type","head","appendChild","loadCookieGatedScriptFallback","clearInterval","interval","setInterval","clearTimeout","loadScriptMap","mapUrl","querySelector","dataset","sourceMap","loadCss","link","rel","href","LiveChatError","Error","constructor","message","super","this","name","Object","setPrototypeOf","prototype","bucketPath","removeOutsideClickListener","otherSelectors","uiSelectors","floatingButton","floatingButtonIcon","floatingButtonLoading","chatDrawer","closeButton","serviceButtons","artistButton","supportButton","warnings","chatDrawerCookieWarning","chatDrawerWarning","chatDrawerSuccess","headerIcon","cookieButton","refreshWindow","state","chatContainer","getElementById","elements","handleTemplateRender","chatUiConfig","LiveChat","resources","ui","template","errorMessage","response","fetch","ok","text","error","loadTemplate","Mustache","render","chatUiHasClass","element","classList","contains","console","warn","chatUiHideElement","add","chatUiShowElement","remove","getIsFunctionalCookieCategory","OptanonActiveGroups","indexOf","getIsUserAwaitingChat","lpBeautyChatOrcData","isUserAwaitingChat","lpSupportChatOrcData","showFloatingButtonLoadingState","hideFloatingButtonLoadingState","toggleDrawerTemplates","templateToShow","forEach","hasVisibleWarnings","toggle","updateDrawerHeaderState","toggleDrawer","handleOutsideClick","event","oneTrustPopUp","target","addEventListener","removeEventListener","closeDrawerOnClickOut","toggleDrawerButton","button","service","isLoading","getServiceButtonSelector","services","handleServiceSelection","serviceHandler","artist","callback","onBeautyChatButtonClick","support","onSupportChatButtonClick","chatOrcData","intentLoopFinishedEventName","buttonSelector","buttonEnabled","disabled","chatDrawerFinishedEvent","errorMessageEventName","chatDrawerErrorMessageEvent","callbackError","selectService","localStorage","setItem","disableOtherButton","buttonClicked","id","ToggleInfoDisplay","initializeLivePerson","manifest","liveperson","enabled","resourceArray","undefined","assetPath","endsWith","loadLivePersonAssets","loadChatUi","chatUiTemplate","insertAdjacentHTML","cacheElement","key","selector","parent","entries","nestedKey","nestedSelector","cacheChatUiDOMElements","getItem","selectedService","removeItem","lpTag","site","getCurrentDecision","onCloseButtonClick","location","reload","missingConfig","hasValidManifest","Array","isArray","length","assetPaths","filter","file","initializeChatUI","verifyEngagementIsReady","divId","engId","success","lpEngagementDiv","children","getAttribute","lpChatOrcData","initEngagement","verifyServiceIsReady","_b","taglets","rendererStub","handleIntervalFail","lpErrorMessageEvent","intentLoop","intentLoopTimeoutCounter","isLoopActive","dispatchEvent","startIntentLoop","eventName","lpIntentLoopCompleteEvent","errorEventName","Event","bubbles","keys","click","performEngagementClick","intentLoopTimeoutDefault","e","endIntentLoop","onChatButtonClick"],"mappings":"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"}