{"version":3,"file":"LiveAgent.js","names":["LiveAgent","a","setters","Component","default","deepMerge","cookie","debounce","execute","constructor","element","options","arguments","length","dataLayerContainer","data","nbChasitorMessage","nbAgentMessage","initUrl","country","brand","language","consentDependencyEnable","consentGroupID","afterInit","initLiveChat","bind","window","addEventListener","Optanon","InsertScript","CCLiveChat","init","afterLoad","getLiveAgentEvent","getData","onChatEstablished","startChat","onChasitorMessage","onAgentMessage","onChatEndedByChasitor","endChat","onChatEndedByAgent","sessionStartDate","Date","pushEvent","setData","setCookie","JSON","stringify","liveAgentSessionCookie","getCookie","parse","endDate","durationMinute","Math","ceil","label","push","event","ecommerce","eventCategory","eventAction","eventLabel"],"sources":["components/global/LiveAgent.js"],"sourcesContent":["import Component from 'core/Component';\nimport { deepMerge } from 'toolbox/deepMerge';\nimport { cookie } from 'toolbox/cookie';\nimport { debounce } from 'toolbox/debounce';\n\n/**\n * File that initialize properly Live Agent\n * @class\n * @classdesc This is a description of the LiveAgent class. (must be edited)\n * @extends Component\n */\nexport default class LiveAgent extends Component {\n /**\n * Constructor of the class that mainly merge the options of the components\n * @param {HTMLElement} element HTMLElement of the component\n * @param {object} options options that belongs to the component\n */\n constructor(element, options = {}) {\n super(element, deepMerge({\n dataLayerContainer: 'dataLayer', // supported: dataLayer, superDataLayer\n data: {\n nbChasitorMessage: 0,\n nbAgentMessage: 0,\n },\n initUrl: '',\n country: '',\n brand: '',\n language: '',\n consentDependencyEnable: false,\n consentGroupID: '',\n }, options));\n }\n\n /**\n * After init\n * Run any script after the component is fully initialized\n */\n afterInit() {\n if (this.options.initUrl && this.options.country && this.options.brand && this.options.language) {\n debounce(this.initLiveChat.bind(this), 1000)();\n }\n }\n\n /**\n * @description Initializes LiveChat\n */\n initLiveChat() {\n if (this.options.consentDependencyEnable && this.options.consentGroupID) {\n window.addEventListener('consentManagementComponentLoaded', function transferScriptToOptanon() {\n if (window.Optanon) {\n window.Optanon.InsertScript(this.options.initUrl, 'body', null, null, this.options.consentGroupID);\n }\n });\n } else if (window.CCLiveChat) {\n window.CCLiveChat.init(\n this.options.initUrl,\n this.options.country,\n this.options.brand,\n this.options.language,\n this.afterLoad(),\n this.getLiveAgentEvent(),\n );\n this.getData();\n }\n }\n\n /**\n * @description Defines object send to LiveChat to bind events\n * @returns { Object } Object of functions\n */\n getLiveAgentEvent() {\n return {\n onChatEstablished: this.startChat.bind(this),\n onChasitorMessage: this.onChasitorMessage.bind(this),\n onAgentMessage: this.onAgentMessage.bind(this),\n onChatEndedByChasitor: this.endChat.bind(this),\n onChatEndedByAgent: this.endChat.bind(this),\n };\n }\n\n /**\n * @description Empty function used on live chat side\n */\n afterLoad() {\n }\n\n /**\n * @description Define chat start time and push the start chat event\n */\n startChat() {\n this.options.data.sessionStartDate = new Date();\n this.pushEvent('start');\n this.setData();\n }\n\n /**\n * @description Increase nbAgentMessage when an agent message is received\n */\n onAgentMessage() {\n this.options.data.nbAgentMessage += 1;\n this.setData();\n }\n\n /**\n * @description Increase nbChasitorMessage when an chasitor message is received\n */\n onChasitorMessage() {\n this.options.data.nbChasitorMessage += 1;\n this.setData();\n }\n\n /**\n * @description Set the liveAgentSessionCookie\n */\n setData() {\n cookie.setCookie('liveAgentSessionCookie', JSON.stringify(this.options.data));\n }\n\n /**\n * @description Get the liveAgentSessionCookie\n */\n getData() {\n const liveAgentSessionCookie = cookie.getCookie('liveAgentSessionCookie');\n if (liveAgentSessionCookie && liveAgentSessionCookie !== 'undefined') {\n this.options.data = JSON.parse(liveAgentSessionCookie);\n }\n }\n\n /**\n * @description Push the total duration of the conversation in the dataLayer\n */\n endChat() {\n if (this.options.data.nbChasitorMessage && this.options.data.nbAgentMessage) {\n const endDate = new Date();\n const durationMinute = Math.ceil((endDate - new Date(this.options.data.sessionStartDate)) / 1000) / 60;\n\n this.pushEvent(`stop::${durationMinute}`);\n }\n }\n\n /**\n * @description Retrieve the current dataLayer and push data in it\n * @param {String} label eventLabel value\n */\n pushEvent(label) {\n window[this.options.dataLayerContainer] = window[this.options.dataLayerContainer] || [];\n const event = {\n event: 'uaevent',\n ecommerce: 'undefined',\n eventCategory: 'main menu navigation',\n eventAction: 'select::live chat',\n eventLabel: label,\n };\n window[this.options.dataLayerContainer].push(event);\n }\n}\n"],"mappings":"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","ignoreList":[]}