(function () { const emailBoxId = "email-box"; const emailLabelContentId = "email-box__email-label-content"; const emailInputId = "email-box__email-input"; const emailInputErrorId = "email-box__input-error"; const emailCheckboxId = "email-box__checkbox"; const submitBtnId = "email-box__submit-btn"; const emailBox = document.getElementById(emailBoxId); const emailLabelContent = document.getElementById(emailLabelContentId); const emailInput = document.getElementById(emailInputId); const emailInputError = document.getElementById(emailInputErrorId); const emailCheckbox = document.getElementById(emailCheckboxId); const submitBtn = document.getElementById(submitBtnId); const urlParams = new URLSearchParams(window.location.search); setTimeout(() => { initUIState(); }, 500); function initUIState() { if (!urlParams.get("emailEntered")) { emailBox.style.display = "block"; } } emailInput.addEventListener("input", function (evt) { emailInputError.style.display = "none"; toggleLabelContent(this.value); }); function toggleLabelContent(inputEmail) { emailLabelContent.style.display = inputEmail ? "none" : "inline-block"; } submitBtn.addEventListener("click", function (e) { e.preventDefault(); if (emailCheckbox.checked && emailInput.validity.valid) { fetch(`${window.INSIGHTS_HOST}/v0/oss/users`, { method: "POST", headers: { Accept: "application/json", "Content-Type": "application/json", }, body: JSON.stringify({ email: emailInput.value, project: "goldilocks", }), }).then((response) => { if (response && response.status !== 400) { response.json().then((data) => { if (data?.email) { window.location.reload(); localStorage.setItem("emailEntered", true); } }); } else { emailInputError.style.display = "block"; } }); } }); })();