{"version":3,"file":"wf-aid-param.js","sources":["wf-aid-param.js"],"sourcesContent":["//script will get \"aid\" param from url\n// check aid param by calling address endpoint\n// if valid, not aq go to lead capture\n// if valid, current customer display the matches account box w/ login\n// if valid, not customer but aq, redirect to shop\n// .wf-floating-address-check.receive-aid-param will need to be updated to a loading state\n// and show address from aid when received. it has a data-fwd-url with a relative URL to fwd to for lead-capture\n\nfunction getParameterByName(name, url = window.location.href) {\n name = name.replace(/[\\[\\]]/g, \"\\\\$&\");\n var regex = new RegExp(\"[?&]\" + name + \"(=([^&#]*)|&|#|$)\"),\n results = regex.exec(url);\n if (!results) return null;\n if (!results[2]) return \"\";\n return decodeURIComponent(results[2].replace(/\\+/g, \" \"));\n}\n\nfunction showAccountExists(addr) {\n var compiled_template = null;\n var html = \"\";\n\n var fiberExistsUrl =\n \"/wp-content/themes/lumos-tidewater/assets/aquitemplates/results_templates/account-exist-fiber-available.html\";\n var url =\n \"/wp-content/themes/lumos-tidewater/assets/aquitemplates/results_templates/account-exist-fiber-available.html\";\n\n envConsoleLog(\"loading template from \" + url);\n $.loadTemplate(url)\n .then(function (data) {\n envConsoleLog(\"template loaded\");\n envConsoleLog(\"addr data\", addr);\n compiled_template = _.template(data);\n\n tmpl_opts = {\n getFiber_url: \"https://www.lumosfiber.com/shop-fiber/\",\n myAccount_url: \"https://www.lumosfiber.com/my-account/\",\n };\n })\n .then(function () {\n tmpl_opts[\"result_template\"] =\n $.fn.aqui.getTemplatePartial(fiberExistsUrl);\n\n console.log(\"html, \", html);\n console.log(\"temp opts\", tmpl_opts);\n html = compiled_template(tmpl_opts);\n html = _.template(html)(tmpl_opts);\n console.log(\"new html. \", html);\n\n //this is showing a ga is not defined, may be ok since we dont want this data counting as an AC\n $.fn.aqui.ShowCheckAddressMessage(\n \"#account-exist-fiber-available\",\n html,\n $(\".aqui-container\")\n );\n\n console.log(\"data-qual-address\", addr.Address.toUpperCase());\n $(\"[data-qual-address]\").text(addr.Address.toUpperCase());\n\n console.log(\"data-qual-city\", addr.City.toUpperCase());\n $(\"[data-qual-city]\").text(addr.City.toUpperCase());\n\n $(\"[data-qual-internet-name]\").text(\"T-Mobile Fiber\");\n\n $(\".change-address\").on(\"click\", function () {\n console.log(\"redirecting to home\");\n window.location.href = \"/#checkaddress\";\n });\n\n //trigger modal to popup\n $(\"#addressCheckerModal\").modal(\"show\");\n });\n}\n\nfunction showComingSoon(addr) {\n var compiled_template = null;\n var html = \"\";\n\n var fiberExistsUrl =\n \"/wp-content/themes/lumos-tidewater/assets/aquitemplates/results_templates/fiber-coming-soon.html\";\n var url =\n \"/wp-content/themes/lumos-tidewater/assets/aquitemplates/results_templates/fiber-coming-soon.html\";\n var addressLoolkupResultUrl =\n \"https://cdnqa.nscom.com/js/aqui/address-lookup-result.html\";\n\n envConsoleLog(\"loading template from \" + addressLoolkupResultUrl);\n $.loadTemplate(addressLoolkupResultUrl)\n .then(function (data) {\n envConsoleLog(\"template loaded\");\n envConsoleLog(\"addr data\", addr);\n compiled_template = _.template(data);\n\n tmpl_opts = {\n getFiber_url: \"https://www.lumosfiber.com/shop-fiber/\",\n myAccount_url: \"https://www.lumosfiber.com/my-account/\",\n result_template: url,\n serviceRqCommingSoonMsg:\n \"

Thank you for your interest in Lumos fiber service. We have added your contact information to our Fiber Updates list and we will notify you when that service is available in your area.

\",\n AddressID: addr.Id,\n AddressStreet: addr.Address,\n AddressCity: addr.City,\n AddressState: addr.State,\n AddressZip: addr.Zip,\n AddressUnitNo: addr.ApartmentNum ?? \"\",\n };\n })\n .then(function () {\n tmpl_opts[\"result_template\"] =\n $.fn.aqui.getTemplatePartial(fiberExistsUrl);\n\n console.log(\"html, \", html);\n console.log(\"temp opts\", tmpl_opts);\n html = compiled_template(tmpl_opts);\n html = _.template(html)(tmpl_opts);\n console.log(\"new html. \", html);\n\n //this is showing a ga is not defined, may be ok since we dont want this data counting as an AC\n $.fn.aqui.ShowCheckAddressMessage(\n \"#fiber-coming-soon\",\n html,\n $(\".aqui-container\")\n );\n\n $(\"[data-qual-internet-name]\").text(\"T-Mobile Fiber\");\n\n $(\".change-address\").on(\"click\", function () {\n console.log(\"redirecting to home\");\n window.location.href = \"/#checkaddress\";\n });\n\n //trigger modal to popup\n $(\"#addressCheckerModal\").modal(\"show\");\n });\n}\n\nfunction redirectBasedOnAid(aid) {\n var fwdElement = document.querySelector(\n \".wf-floating-address-check.receive-aid-param\"\n );\n\n if (fwdElement && !aid) {\n if (window.location.pathname !== \"/\") {\n console.log(\"Invalid AID, redirecting to home\");\n window.location.href = \"/\";\n }\n }\n\n $.ajax({\n url: \"/wp-content/themes/lumos-tidewater/api_helper.php\",\n method: \"POST\",\n contentType: \"application/x-www-form-urlencoded\",\n data: {\n action: \"get_details_from_aid\",\n aid: getParameterByName(\"aid\"),\n },\n success: function (result) {\n // fwdElement.querySelector(\".loading-indicator img\").style.display = \"none\";\n tmpl_opts = {};\n var options = $.extend(\n {},\n $.fn.lookupServiceAvailability.defaults,\n options\n );\n\n result = JSON.parse(result);\n console.log(result);\n\n if (result.Status && result.Status == \"success\") {\n if (result.Data && result.Data.FullAddress) {\n // update ac el with address\n fwdElement.querySelector(\"[data-full-address]\").textContent =\n result.Data.FullAddress;\n fwdElement.querySelector(\"[data-full-address]\").style.display =\n \"block\";\n fwdElement.querySelector(\"[data-verify-text]\").textContent =\n \"Verifying service at\";\n\n var fwdUrl = fwdElement\n ? fwdElement.getAttribute(\"data-fwd-url\")\n : null;\n\n var compiled_template = null;\n\n var predirection = result.Data.hasOwnProperty(\"PreDirectional\")\n ? result.Data.PreDirectional == null\n ? \"\"\n : result.Data.PreDirectional + \" \"\n : \"\";\n var postdirection =\n result.Data.PostDirectional == null\n ? \"\"\n : \" \" + result.Data.PostDirectional;\n r =\n predirection +\n result.Data.StreetName +\n (result.Data.StreetSuffix == null\n ? \"\"\n : \" \" + result.Data.StreetSuffix) +\n postdirection;\n\n // console.log(result.Data);\n\n var addrNewStack = result.Data.NewStack;\n localStorage.setItem(\"lumos_address_tech_stack\", \"legacy\");\n\n // New Stack Address Check\n if (addrNewStack === 1) {\n console.log(\"New Stack == 1\");\n if (result.Data.AccountID != 0 && result.Data.AccountID != null) {\n console.log(\"Account ID is not 0/null (account must exist)\");\n // has account, will need to display modal with content for account exists\n showAccountExists(result.Data);\n } else {\n console.log(\"Account ID is 0/null\");\n\n localStorage.setItem(\"lumos_address_tech_stack\", \"salesforce\");\n\n document.cookie =\n \"STYXKEY_lumos_address_market=tidewater; path=/;\";\n localStorage.setItem(\"lumos_address_market\", \"tidewater\");\n\n var aquicontainer = $(\".aqui-container\");\n var addressData = aquicontainer.aqui.fetchAddrById(\n result.Data.UniversalAddressID\n );\n setAddressCookieData(addressData);\n\n feacPush(addressData, localStorage.getItem('lumos_address_tech_stack'));\n // redirect to shop\n console.log(\"Redirecting to shop\");\n window.location.href = \"/shop-fiber/\";\n }\n } else if (addrNewStack === 2) {\n console.log(\"New Stack == 2 (coming soon new stack)\");\n // coming soon new stacker, valid but not qualified should lead to landing page but may not?\n // console.log(\"Forwarding to URL: \", fwdUrl);\n // window.location.href = fwdUrl; // Redirect to lead capture\n showComingSoon(result.Data);\n } else {\n envConsoleLog(\"Old Stack Address Check\");\n envConsoleLog(result.Data);\n if (\n (result.Data.FiberNIDBit == 0 ||\n result.Data.FiberNIDBit == null) &&\n result.Data.LumosSamID !== null &&\n result.Data.LumosService !== null &&\n result.Data.LumosService !== \"\"\n ) {\n envConsoleLog(\"check service\");\n if (result.Data.LumosService.toLowerCase() == \"fiber\") {\n var aquicontainer = $(\".aqui-container\");\n var addressData = aquicontainer.aqui.fetchAddrById(\n result.Data.Id\n );\n setAddressCookieData(addressData);\n\n localStorage.setItem(\"lumos_address_market\", \"va\");\n document.cookie = \"STYXKEY_lumos_address_market=va; path=/;\";\n\n feacPush(addressData, localStorage.getItem('lumos_address_tech_stack'));\n console.log(\"Fiber Available\");\n console.log(\"Redirecting to shop\");\n window.location.href = \"/shop-fiber/\";\n } else {\n //no fiber\n // console.log(\"Forwarding to URL: \", fwdUrl);\n // window.location.href = fwdUrl; // Redirect to lead capture\n console.log(\"redirecting to home\");\n window.location.href = \"/\";\n }\n } else {\n envConsoleLog(\"no service\");\n if (result.Data.AccountID != 0 && result.Data.AccountID != null) {\n //acount exists\n if (result.Data.FiberNIDBit && result.Data.SupportsGigabit) {\n showAccountExists(result.Data);\n } else {\n showComingSoon(result.Data);\n }\n } else {\n if (result.Data.FiberNIDBit && result.Data.SupportsGigabit) {\n var aquicontainer = $(\".aqui-container\");\n var addressData = aquicontainer.aqui.fetchAddrById(\n result.Data.Id\n );\n setAddressCookieData(addressData);\n\n localStorage.setItem(\"lumos_address_market\", \"nc\");\n document.cookie = \"STYXKEY_lumos_address_market=nc; path=/;\";\n\n //fiber available\n feacPush(addressData, localStorage.getItem('lumos_address_tech_stack'));\n\n console.log(\"Redirecting to Fiber Shop...\");\n window.location.href = \"/shop-fiber/\";\n } else {\n envConsoleLog(\"future fiber\");\n var futureFiber = \"\";\n if (result.Data.FutureFiberServicesDate !== null) {\n futureFiber = result.Data.FutureFiberServicesDate;\n }\n\n if (\n (result.Data.FiberNIDBit && !result.Data.SupportsGigabit) ||\n (!result.Data.FiberNIDBit && futureFiber !== \"\")\n ) {\n //coming soon (not qualified?)\n showComingSoon(result.Data);\n } else {\n showComingSoon(result.Data);\n }\n }\n }\n }\n }\n } else {\n // No Data, bad aid\n if (window.location.pathname !== \"/\") {\n console.log(\"Invalid AID, redirecting to home\");\n window.location.href = \"/\";\n }\n }\n } else {\n if (window.location.pathname !== \"/\") {\n console.log(\"Invalid AID, redirecting to home\");\n window.location.href = \"/\";\n }\n }\n },\n error: function (request, status, error) {\n fwdElement.querySelector(\".loading-indicator img\").style.display = \"none\";\n console.error(\"AJAX request failed:\", status, error);\n if (window.location.pathname !== \"/\") {\n console.log(\"Invalid AID, redirecting to home\");\n window.location.href = \"/\";\n }\n },\n });\n}\n\nfunction feacPush(addressData, tech_stack){\n pushGA4Address(\"FEAC-TMO\", {\n street: addressData.Address,\n city: addressData.City,\n state: addressData.State,\n postal_code: addressData.Zip,\n country: \"USA\",\n tech_stack: tech_stack,\n });\n}\n// document.addEventListener(\"DOMContentLoaded\", () => {\n// redirectBasedOnAid(getParameterByName(\"aid\"));\n// });\n"],"names":["getParameterByName","name","url","window","location","href","replace","results","RegExp","exec","decodeURIComponent","showAccountExists","addr","compiled_template","html","envConsoleLog","$","loadTemplate","then","data","_","template","tmpl_opts","getFiber_url","myAccount_url","fn","aqui","getTemplatePartial","ShowCheckAddressMessage","text","Address","toUpperCase","City","on","modal","showComingSoon","addressLoolkupResultUrl","result_template","serviceRqCommingSoonMsg","AddressID","Id","AddressStreet","AddressCity","AddressState","State","AddressZip","Zip","AddressUnitNo","ApartmentNum","redirectBasedOnAid","aid","fwdElement","document","querySelector","pathname","ajax","method","contentType","action","success","result","postdirection","addrNewStack","addressData","extend","lookupServiceAvailability","defaults","options","JSON","parse","Status","Data","FullAddress","textContent","style","display","getAttribute","predirection","hasOwnProperty","PreDirectional","PostDirectional","r","StreetName","StreetSuffix","NewStack","localStorage","setItem","AccountID","cookie","fetchAddrById","UniversalAddressID","setAddressCookieData","feacPush","getItem","FiberNIDBit","LumosSamID","LumosService","SupportsGigabit","FutureFiberServicesDate","toLowerCase","error","request","status","tech_stack","pushGA4Address","street","city","state","postal_code","country"],"mappings":"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"}