';
wrapper.appendChild(el);
}
this.EnableContent = function (type) {
var i;
// Cookies globally enabled by config?
var checkboxes = document.querySelectorAll('div.privacy-' + type + '-msg input');
if (config.enableCookies) {
for (let i = 0; i < checkboxes.length; i++) {
if (checkboxes[i].checked == true) {
let service = checkboxes[i].parentNode.parentNode.nextElementSibling.getAttribute('data-2click-service'); // get service name from iframe
;
setConsentStatus(service + '_{rootPid}', '1');
}
}
}
var x = document.querySelectorAll('div.privacy-' + type + '-msg .wraper');
for (i = 0; i < x.length; i++) {
while (x[i].firstChild) {
x[i].removeChild(x[i].firstChild);
}
}
x = document.querySelectorAll('div.privacy-' + type + '-msg');
for (i = 0; i < x.length; i++) {
var parent = x[i].parentNode;
// Move all children out of the element
while (x[i].firstChild) parent.insertBefore(x[i].firstChild, x[i]);
// Remove the empty element
parent.removeChild(x[i]);
}
x = document.querySelectorAll('iframe[data-2click-service="' + type + '"]');
for (i = 0; i < x.length; i++) {
let serviceType = x[i].getAttribute("data-2click-service");
if (serviceType === 'gdpr_extensions_com_gmap') {
if (i == 0) {
let parent = x[i];
let mapDiv = document.createElement('div');
mapDiv.id = "map" + i;
mapDiv.className = "map";
parent.parentNode.insertBefore(mapDiv, parent.nextSibling)
loadMapScript(x[i].nextElementSibling);
} else {
initMap((x[i].nextElementSibling));
}
}
if (serviceType === 'gdpr_extensions_com_bmap') {
gdpr_extensions_com_bmap_gdpr(x[i],'add');
}
x[i].src = x[i].getAttribute("data-src");
}
// If available, execute the callback that is defined for the currently active type
for (i = 0; i < this.types.length; i++) {
if (this.types[i].type == type && this.types[i].callback) {
window[this.types[i].callback]();
}
}
gdprInner?.classList.remove('gdprInner');
if (toggleButtons.length !== 0) {
for (let i = 0; i < toggleButtons.length; i++) {
let extTitle = toggleButtons[i].getAttribute('data-ext-title');
let service = extTitle + '_{rootPid}'; // assuming that extension title always has the service name at the third position
;
// initially set the checkbox according to the cookie value
toggleButtons[i].checked = Boolean(Number(consentStatuses[service])); // convert string to boolean
}
if (areAllChecked()) {
// acceptBtn.disabled = true;
// acceptBtn.classList.add('disabled');
}
}
}
function DisableContent(type, e) {
var i;
// Accessing all relevant checkboxes
var checkboxes = document.querySelectorAll('div.privacy-' + type + '-msg input');
for (let i = 0; i < checkboxes.length; i++) {
if (checkboxes[i].checked == false) { // Checking if the checkbox is not checked
let service = checkboxes[i].parentNode.parentNode.nextElementSibling.getAttribute('data-2click-service');
setConsentStatus(service + '_{rootPid}', '0'); // Set consent status to '0' indicating disapproval
}
}
var x = document.querySelectorAll('iframe[data-2click-service="' + type + '"]');
for (i = 0; i < x.length; i++) {
let dummy = x[i].innerHTML;
x[i].src = ''; // Disabling the iframe by setting src as empty
if (type == 'gdpr_extensions_com_gmap') {
let elementToRemove = x[i].nextElementSibling;
if (elementToRemove) {
elementToRemove.parentNode.removeChild(elementToRemove);
}
}
if (type == 'gdpr_extensions_com_bmap') {
gdpr_extensions_com_bmap_gdpr(x[i],'remove');
}
}
// If available, execute the callback that is defined for the currently active type
for (i = 0; i < e.length; i++) {
if (e[i].type == type && e[i].callback) {
window[e[i].callback]();
}
}
gdprInner?.classList.add('gdprInner');
// acceptBtn.disabled = false;
// acceptBtn.classList.remove('disabled');
}
const loadMapScript = function (parent) {
;
const mapScript = document.createElement("script");
const body = document.querySelector("body");
const mapsApiKey = document.getElementById("mapApiKey").innerText;
mapScript.setAttribute(
"src",
`https://maps.googleapis.com/maps/api/js?key=${mapsApiKey}&libraries=geometry`
);
console.log("exec: ", `https://maps.googleapis.com/maps/api/js?key=${mapsApiKey}&libraries=geometry`);
body.insertAdjacentElement("beforeend", mapScript);
mapScript.onload = () => {
initMap(parent);
};
mapScript.onerror = function (error) {
console.error("Error loading Google Maps API:", error);
};
};
function initMap(parent) {
const latLongData = JSON.parse(document.getElementById("LatLongData").innerText);
const markerImagePath = document.getElementById("markerImagePath").innerText;
var firstKey = Object.keys(latLongData)[0];
var firstLocation = latLongData[Object.keys(latLongData)[0]];
const zoomButton = 1;
const satelliteView = 'SATELLITE';
const mapTypeIdMapping = {
HYBRID: google.maps.MapTypeId.HYBRID,
ROADMAP: google.maps.MapTypeId.ROADMAP,
SATELLITE: google.maps.MapTypeId.SATELLITE,
TERRAIN: google.maps.MapTypeId.TERRAIN,
};
const map = new google.maps.Map(parent, {
zoom: 13,
center: {lat: firstLocation.lat / 1000000, lng: firstLocation.long / 1000000},
});
map.setOptions({
zoomControl: zoomButton ? true : false,
});
// const locationMarkers = document.querySelectorAll(".location-marker");
latLongData.forEach((markerElement) => {
const latitude = parseFloat(markerElement.lat);
const longitude = parseFloat(markerElement.long);
const bodyText = markerElement.address;
const title = markerElement.title;
let markerIcon;
if (markerImagePath) {
markerIcon = {
url: `${window.location.origin}${markerImagePath}`, // url
scaledSize: new google.maps.Size(70, 70), // scaled size
origin: new google.maps.Point(0, 0), // origin
anchor: new google.maps.Point(0, 0) // anchor
};
}
if (!isNaN(latitude) && !isNaN(longitude)) {
const marker = new google.maps.Marker({
position: {lat: latitude / 1000000, lng: longitude / 1000000},
map: map,
title: title,
icon: markerIcon,
});
let contentString = `
${title}
${bodyText}
`;
const infoWindow = new google.maps.InfoWindow({
content: contentString,
});
marker.addListener("click", () => {
infoWindow.open(map, marker);
});
}
});
}
this.init = function (Userconfig, solSetting, key) {
// Read UserConfiguration:
if (typeof Userconfig.enableCookies !== 'undefined') {
config.enableCookies = Userconfig.enableCookies;
}
if (typeof Userconfig.useSessionCookie !== 'undefined') {
config.useSessionCookie = Userconfig.useSessionCookie;
}
if (typeof Userconfig.cookieNamespace !== 'undefined') {
config.cookieNamespace = Userconfig.cookieNamespace;
}
if (typeof Userconfig.privacyPolicyUrl !== 'undefined') {
config.privacyPolicyUrl = Userconfig.privacyPolicyUrl;
}
if (typeof Userconfig.showContentLabel !== 'undefined') {
config.showContentLabel = Userconfig.showContentLabel;
}
if (typeof Userconfig.rememberChoiceLabel !== 'undefined') {
config.rememberChoiceLabel = Userconfig.rememberChoiceLabel;
}
if (typeof Userconfig.privacyPolicyLabel !== 'undefined') {
config.privacyPolicyLabel = Userconfig.privacyPolicyLabel;
}
if (Array.isArray(Userconfig.CustomTypes)) {
this.types = Userconfig.CustomTypes;
}
for (let i = 0; i < this.types.length; i++) {
var selector = document.querySelectorAll('iframe[data-2click-type="' + this.types[i].type + '"]');
for (let x = 0; x < selector.length; x++) {
let service = selector[x].getAttribute('data-2click-service'); // get service name from iframe
let service_root = service + '_{rootPid}';
let check = solSetting[service];
if (consentStatuses[service_root] !== '1') {
wrap(selector[x], document.createElement('div'),
service,
solSetting[service].content,
solSetting[service].heading,
solSetting[service].button_color,
solSetting[service].text_color,
solSetting[service].background_image,
solSetting[service].enable_background_image,
solSetting[service].background_image_color,
solSetting[service].button_text_color,
solSetting[service].button_text,
solSetting[service].button_shape,
);
} else {
if (service === 'gdpr_extensions_com_gmap') {
let parent = selector[x];
let mapDiv = document.createElement('div');
mapDiv.id = "map" + i;
mapDiv.className = "map";
parent.parentNode.insertBefore(mapDiv, parent.nextSibling)
loadMapScript(selector[x].nextElementSibling);
}
if (service === 'gdpr_extensions_com_bmap') {
gdpr_extensions_com_bmap_gdpr(selector[x],'add');
}
selector[x].src = selector[x].getAttribute("data-src");
gdprInner?.classList.remove('gdprInner');
}
}
}
// Get all toggle buttons
// For each toggle button
// let GtmScriptAdded = false;
let GtmScriptAdded = {
GtmScriptAdded : false
};
let MatomoScriptAdded = {
MatomoScriptAdded : false
};
if (toggleButtons.length !== 0) {
for (let i = 0; i < toggleButtons.length; i++) {
let extTitle = toggleButtons[i].getAttribute('data-ext-title');
let service = extTitle + '_{rootPid}';
// initially set the checkbox according to the cookie value
toggleButtons[i].checked = Boolean(Number(consentStatuses[service])); // convert string to boolean
// Adding GTM custom code here
gdpr_extensions_com_gt_gdpr({service: service, track:'tag',togglebtn: toggleButtons[i].checked, fnType: 'add', state: GtmScriptAdded});
// Adding matomo custom code here
gdpr_extensions_com_mt_gdpr({service: service, track:'matomo',togglebtn: toggleButtons[i].checked, fnType: 'add', state: MatomoScriptAdded});
let wrapperFunctionData = this.types;
// add event listener on checkbox change
toggleButtons[i].addEventListener('change', function (e) {
setConsentStatus(service, this.checked ? '1' : '0'); // convert boolean to number
this.checked;
if (this.checked == false) {
gdpr_extensions_com_gt_gdpr({service: service, track:'tag', fnType: 'remove' });
// Removing matomo custom code here
gdpr_extensions_com_mt_gdpr({service: service, track:'matomo', fnType: 'remove' });
DisableContent(extTitle, wrapperFunctionData)
wrapfunction(wrapperFunctionData, arr, extTitle);
} else {
// Adding GTM custom code here
gdpr_extensions_com_gt_gdpr({service: service, track:'tag', fnType: 'add' });
// Adding matomo custom code here
gdpr_extensions_com_mt_gdpr({service: service, track:'matomo', fnType: 'add' });
_2ClickIframePrivacy.EnableContent(extTitle)
}
});
}
}
function wrapfunction(e, settings, key) {
for (let i = 0; i < e.length; i++) {
var selector = document.querySelectorAll('iframe[data-2click-type="' + e[i].type + '"]');
for (let x = 0; x < selector.length; x++) {
let service = selector[x].getAttribute('data-2click-service'); // get service name from iframe
if (service == key) {
if (consentStatuses[service] !== '1') {
wrap(selector[x],
document.createElement('div'),
service, settings[service].content,
settings[service].heading,
settings[service].button_color,
settings[service].button_text_color,
settings[service].background_image,
settings[service].enable_background_image,
settings[service].background_image_color,
settings[service].button_text_color,
settings[service].button_text,
settings[service].button_shape,
);
} else {
selector[x].src = selector[x].getAttribute("data-src");
}
}
}
}
}
if (toggleButtons.length !== 0) {
if (areAllChecked()) {
// acceptBtn.disabled = true;
// acceptBtn.classList.add('disabled');
}
}
};
}
}
// Call the function to add the GTM script
function areAllChecked() {
for (let i = 0; i < switchs.length; i++) {
if (!switchs[i].checked) {
return false;
}
}
return true;
}
document.addEventListener("DOMContentLoaded", function () {
let gdpr_categoryHeaders = document.querySelectorAll('.category-header');
let gdpr_moreBtn = document.querySelectorAll('.category-container .more_details');
let gdpr_cookieDataContainer = document.querySelector('.cookie-data');
let gdpr_goBackBtn = document.querySelectorAll('.go-back');
let gdpr_detailTable = document.querySelectorAll('.more-detail-table');
let gdpr_modalContent = document.querySelector('.modal-content');
let gdpr_scroll = document.querySelector('.modal-content .scroll');
let gdpr_icon = document.getElementById('gdpr-cookie-consent__icon');
let gdpr_model = document.getElementById('gdpr-cookie-consent__model');
if (gdpr_model) {
gdpr_icon?.addEventListener('click', function () {
gdpr_model.style.display = 'block';
})
gdpr_categoryHeaders?.forEach(header => {
header?.addEventListener('click', function () {
let content = header.nextElementSibling;
if (content.classList.contains('show')) {
content.style.maxHeight = content.scrollHeight + 'px';
setTimeout(function () {
content.style.maxHeight = '0';
}, 10);
content.classList.remove('show');
content.classList.add('hide');
header.querySelector('.arrow').textContent = '+';
} else {
content.style.maxHeight = content.scrollHeight + 'px';
content.classList.remove('hide');
content.classList.add('show');
header.querySelector('.arrow').textContent = '-';
}
});
});
let closeModal = document.getElementById('closeModal');
closeModal?.addEventListener('click', function () {
document.getElementById('gdpr-cookie-consent__model').style.display = 'none';
});
// let modal = document.getElementById('gdpr-cookie-consent__model');
let cookiesRejected = localStorage.getItem('cookiesRejected');
console.log(cookiesRejected);
console.log(!cookiesRejected);
if (!cookiesRejected) {
console.log('inif');
gdpr_model.style.display = "block";
}
gdpr_moreBtn?.forEach((btn) => {
btn?.addEventListener('click', function () {
let btnIdentifier = this?.getAttribute('data-identifier');
const table = document.querySelector(`.more-detail-table[data-identifier="${btnIdentifier}"]`);
if (table) {
gdpr_cookieDataContainer.classList.add('d-none');
table.classList.remove('d-none');
gdpr_modalContent.classList.add('expanded');
gdpr_scroll.classList.add('expanded');
adjustModalWidth();
}
})
})
gdpr_goBackBtn.forEach((btn, index) => {
btn.addEventListener('click', function () {
gdpr_detailTable.forEach((item) => {
item.classList.add('d-none');
})
gdpr_cookieDataContainer.classList.remove('d-none');
if (gdpr_modalContent && gdpr_scroll) {
gdpr_modalContent.classList.remove('expanded');
gdpr_modalContent.style.width = '100%';
gdpr_scroll.classList.remove('expanded');
gdpr_scroll.style.maxWidth = '440px';
}
})
})
}
});
window.addEventListener('resize', adjustModalWidth);
function adjustModalWidth() {
// query for the elements that we want to dynamically change their widths
var gdpr_modalContent = document.querySelector('.modal-content.expanded');
var scrollElement = document.querySelector('.scroll.expanded');
var windowWidth = window.innerWidth;
var maxWidth = windowWidth - 20;
// Check if window width is less than 1400px, if so, set max-width to windowWidth - 40px
if (windowWidth < 1400) {
gdpr_modalContent.style.width = maxWidth + 'px';
scrollElement.style.maxWidth = maxWidth + 'px';
} else {
gdpr_modalContent.style.width = 'unset';
scrollElement.style.maxWidth = '1400px';
}
}
function setCookies(value) {
if (value === 'false') {
window.yett.unblock()
}
localStorage.setItem('cookiesRejected', value);
document.getElementById('gdpr-cookie-consent__model').style.display = 'none';
}
function gdpr_extensions_com_bmap_gdpr(iframe, type) {
if (type != 'add' ) {
const BingMap = document.getElementById('bingmap');
BingMap.remove();
let elementToRemove = iframe.nextElementSibling;
if (elementToRemove) {
elementToRemove.parentNode.removeChild(elementToRemove);
}
}else{
let parent = iframe;
let mapDiv = document.createElement('div');
mapDiv.id = "bingmap";
mapDiv.className = "bingmap";
parent.parentNode.insertBefore(mapDiv, parent.nextSibling)
const bingMapScript = document.createElement("script");
const bingBody = document.querySelector("body");
bingMapScript.setAttribute(
"src",
'https://www.bing.com/api/maps/mapcontrol?callback=GetMap'
);
bingBody.insertAdjacentElement("beforeend", bingMapScript);
bingMapScript.onload = () => {
GetMap(parent);
};
bingMapScript.onerror = function (error) {
console.error("Error loading Google Maps API:", error);
};
}
}
function GetMap() {
const bingMarkers = document.getElementById('LatLongData').innerHTML;
const bingmarkerImagePath = document.getElementById('bingmarkerImagePath').innerHTML;
const bingmapApiKey = document.getElementById('bingmapApiKey').innerHTML;
const bingMarkersData = JSON.parse(bingMarkers);
let map = new Microsoft.Maps.Map('#bingmap', {
credentials: bingmapApiKey,
supportedMapTypes: [ Microsoft.Maps.MapTypeId.grayscale],
zoom: 7
});
let locationPoints = [];
let promises = bingMarkersData.map(location => new Promise(resolve => {
let img = new Image();
img.onload = function() {
let canvas = document.createElement('canvas');
let markerWidth = 100;
let markerHeight = 50;
canvas.width = markerWidth;
canvas.height = markerHeight;
let ctx = canvas.getContext('2d');
ctx.drawImage(this, 0, 0, markerWidth, markerHeight);
let icon = canvas.toDataURL();
let pushpin = new Microsoft.Maps.Pushpin(new Microsoft.Maps.Location(location.lat / 1000000, location.long / 1000000),{
icon: icon,
anchor: new Microsoft.Maps.Point(0.5, 0.5)
});
let infobox = new Microsoft.Maps.Infobox(pushpin.getLocation(), { title: location.title, description: location.address, visible: true });
Microsoft.Maps.Events.addHandler(pushpin, 'click', function () {
infobox.setOptions({ visible: true });
});
map.entities.push(pushpin);
map.entities.push(infobox);
locationPoints.push(new Microsoft.Maps.Location(location.lat / 1000000, location.long / 1000000));
resolve();
};
img.src = bingmarkerImagePath;
}));
Promise.all(promises).then(() => {
var totalLat = 0;
var totalLong = 0;
for (var i = 0; i < locationPoints.length; i++) {
totalLat += locationPoints[i].latitude;
totalLong += locationPoints[i].longitude;
}
var centerLocation = new Microsoft.Maps.Location(totalLat / locationPoints.length, totalLong / locationPoints.length);
map.setView({ center: centerLocation });
});
let bingMapDiv = document.getElementById('bingmap');
if (bingMapDiv != null){
bingMapDiv.style.cssText = 'position: relative; width: 100%; height: 600px;';
}
}
function gdpr_extensions_com_mt_gdpr({service, track,togglebtn, fnType,state} = {}) {
if (service === 'gdpr_extensions_com_mt_' + '{rootPid}') {
if(track == 'matomo' && fnType == 'add'){
if(typeof togglebtn === 'undefined'){
addMatomo(service);
}else{
var headScriptMatomoJs = document.querySelector('script[src*="matomo.js"]');
if (!headScriptMatomoJs && (service === 'gdpr_extensions_com_mt_' + '{rootPid}') && togglebtn && !state.MatomoScriptAdded) {
addMatomo(service);
state.MatomoScriptAdded = true;
}
}
}
if(track == 'matomo' && fnType == 'remove') {
removeMatomo();
}
}
function addMatomo(service) {
// Create the Matomo script element for the head
let cookieWidgetAjax = '';
// Get Current URL
const currentUrl = window.location.href;
// Prepare your data
let data = {
url: currentUrl,
rootPid: '{rootPid}'
};
;
// Send data using Fetch API
fetch(cookieWidgetAjax, {
method: 'POST',
headers: {
'Content-Type': 'application/json'
},
body: JSON.stringify(data)
})
.then(response => response.json())
.then(result => {
console.log('Success:', result);
// Assuming the result is a plain text or HTML code for Matomo
if (result.status !== 0) {
var matomoCode = result.matomo_code;
if (matomoCode !== '') {
let orignalContent = atob(matomoCode);
var matomoCodesdd = extractMatomoCode(orignalContent);
var matomoScript = document.createElement('script');
matomoScript.id = 'matomo-script';
matomoScript.innerHTML = matomoCodesdd;
// Append the Matomo script to the head
document.head.appendChild(matomoScript);
// window.dispatchEvent(new Event('yett-unblock'))
}
}
})
.catch(error => console.error('Error:', error));
}
function removeMatomo() {
// Remove the Matomo script from the head
var toRemoveheadScriptJs = document.querySelector('script[src*="matomo.js"]');
var matomoScript = document.getElementById('matomo-script');
if (matomoScript) {
matomoScript.parentNode.removeChild(matomoScript);
}
if (toRemoveheadScriptJs) {
toRemoveheadScriptJs.parentNode.removeChild(toRemoveheadScriptJs);
}
}
function extractMatomoCode(html) {
// Match the content of the script tag
var scriptRegex = /