window.addEventListener("message", receiveMessage, false);
function receiveMessage(event) {
// Form data ready, update leadObj
if (event.data && event.data.message === "PARDOT_DATA_READY" && event.data.data) {
leadObj = event.data.data; // Update leadObj
}
// Form was submitted and validated, call ChiliPiper
if (event.data && event.data.message === "PARDOT_FORM_SUCCESS") {
let queryString1 = event.data.data;
// Step 1: Parse the query string into a JSON object
const leadData = {};
const params = queryString1.substring(1).split("&");
params.forEach(param => {
const [key, value] = param.split("=");
leadData[key] = decodeURIComponent(value.replaceAll("+", " ") || "");
});
const company_type = (leadData["126241_204651pi_126241_204651"] === 'Retailer') ? 'Retail' : leadData["126241_204651pi_126241_204651"];
let country_t = leadData["126241_204648pi_126241_204648"];
if (leadData["126241_204648pi_126241_204648"] === 'Österreich') { country_t = 'Austria' }
else if (leadData["126241_204648pi_126241_204648"] === 'Deutschland') {
country_t = 'Germany'
}
else if (leadData["126241_204648pi_126241_204648"] === 'Schweiz') {
country_t = 'Switzerland'
}
//budget
let budget_t = leadData["126241_205581pi_126241_205581"];
if (leadData["126241_205581pi_126241_205581"] === '10.000 bis 50.000 USD') {
budget_t = '$10k - $50k'
}
else if (leadData["126241_205581pi_126241_205581"] === '50.000 bis 100.000 USD') {
budget_t = '$50k to $100k'
}
else if (leadData["126241_205581pi_126241_205581"] === '100.000 bis 250.000 USD') {
budget_t = '$100k to $250k'
}
else if (leadData["126241_205581pi_126241_205581"] === '250.000 bis 500.000 USD') {
budget_t = '$250k - $500k'
}
else if (leadData["126241_205581pi_126241_205581"] === '>500.000 USD') {
budget_t = '$500k+'
}
//visitors
let visitors_t = leadData["126241_204657pi_126241_204657"];
if (leadData["126241_204657pi_126241_204657"] === '50.000 - 100.0000') {
visitors_t = '50,000 - 100,000'
}
else if (leadData["126241_204657pi_126241_204657"] === '100.000 - 500.000') {
visitors_t = '100,000 - 500,000'
}
else if (leadData["126241_204657pi_126241_204657"] === 'Mehr als 500.000') {
visitors_t = 'More than 500,000'
}
else if (leadData["126241_204657pi_126241_204657"] === 'Nicht sicher') {
visitors_t = 'Not sure'
}
// Step 2: Trigger the ChiliPiper.submit function
ChiliPiper.submit("criteo", "vero-test", {
trigger: "InAppButton",
lead: {
PersonEmail: leadData["126241_204639pi_126241_204639"],
PersonFirstName: leadData["126241_204633pi_126241_204633"],
PersonLastName: leadData["126241_204636pi_126241_204636"],
CompanyName: leadData["126241_204642pi_126241_204642"], // replace the value with the value for Company Name
"97d0652a-1786-40c2-ac1f-177761c6c314": budget_t, // replace the value with the value for Advertising Budget
"48a142eb-1fc2-4551-8f9b-ac6cb8ec5fcc": visitors_t, // replace the value with the value for Unique monthly visitors
"5bc9d042-6cdf-4b81-8467-04e8d10607be": country_t, // replace the value with the value for Country
"57356c44-1d5a-4d0f-a0b1-7fc3060da088": company_type, //company type
"150623cc-30ba-4d58-88e5-19618765d468": '0125J000000D8dEQAS'
},
});
}
}