Difference between revisions of "MediaWiki:Common.js"
From MunichBeerGardens.com
m |
m |
||
Line 46: | Line 46: | ||
} | } | ||
+ | function accept_cookies(){ | ||
+ | |||
+ | /* if GDPR_table_rejected exists, remove it */ | ||
+ | let GDPR_table_rejected = document.getElementById("GDPR_table_rejected"); | ||
+ | if (typeof(GDPR_table_rejected) !== 'undefined' && GDPR_table_rejected!== null){ | ||
+ | GDPR_table_rejected.remove(); | ||
+ | } | ||
+ | |||
+ | /* if GDPR_table_undecided exists, remove it */ | ||
+ | let GDPR_table_undecided = document.getElementById("GDPR_table_undecided"); | ||
+ | if (typeof(GDPR_table_undecided) !== 'undefined' && GDPR_table_undecided!== null){ | ||
+ | GDPR_table_undecided.remove(); | ||
+ | } | ||
+ | // display the cookie | ||
+ | |||
+ | var GDPR_cookie = "GDPR=accepted"; | ||
+ | |||
+ | var GDPR_year = new Date(); // create date | ||
+ | GDPR_year.setFullYear(GDPR_year.getFullYear() +1) // add 1 year from now | ||
+ | var GDPR_end = "expires=" + GDPR_year.toGMTString() + ";path=/; samesite=strict"; // make endcookie and path variable | ||
+ | // var GDPR_end = "expires=0;path=/; samesite=strict"; // make endcookie and path variable | ||
+ | |||
+ | document.cookie = GDPR_cookie + ";" + GDPR_end; | ||
+ | console.log("Added cookie: " + document.cookie); | ||
+ | |||
+ | accepted(); | ||
+ | } | ||
+ | |||
+ | function reject_cookies(){ | ||
+ | var GDPR_cookie = "GDPR=rejected" | ||
+ | |||
+ | var GDPR_year = new Date(); // create date | ||
+ | GDPR_year.setFullYear(GDPR_year.getFullYear() +1) // add 1 year from now | ||
+ | var GDPR_end = "expires=" + GDPR_year.toGMTString() + ";path=/; samesite=strict"; // make endcookie and path variable | ||
+ | // var GDPR_end = "expires=0;path=/; samesite=strict"; // make endcookie and path variable | ||
+ | |||
+ | document.cookie = GDPR_cookie + ";" + GDPR_end; | ||
+ | console.log("Added cookie: " + document.cookie); | ||
+ | |||
+ | GDPR_table_undecided.remove(); | ||
+ | rejected(); | ||
+ | } | ||
+ | |||
+ | // read cookie and set action here | ||
function run_onload(){ | function run_onload(){ | ||
+ | |||
GDPR_state_value = "undecided"; | GDPR_state_value = "undecided"; | ||
+ | |||
+ | if(document.cookie.indexOf("GDPR") != -1){ | ||
+ | |||
+ | var state_pos = document.cookie.indexOf("GDPR="); | ||
+ | var state_start = state_pos + 5; | ||
+ | var state_end = state_start + 8; | ||
+ | GDPR_state_value = document.cookie.substring(state_start,state_end); | ||
+ | console.log(GDPR_state_value); | ||
+ | console.log(document.cookie); | ||
+ | } | ||
+ | |||
+ | if (GDPR_state_value == "accepted"){ | ||
+ | accepted(); | ||
+ | } | ||
+ | |||
+ | if (GDPR_state_value == "rejected"){ | ||
+ | rejected(); | ||
+ | } | ||
+ | |||
+ | |||
if (GDPR_state_value == "undecided"){ | if (GDPR_state_value == "undecided"){ | ||
undecided(); | undecided(); | ||
} | } | ||
+ | |||
} | } | ||
+ | |||
function undecided(){ | function undecided(){ | ||
Line 70: | Line 137: | ||
GDPR_accept_button.style.cursor="pointer"; | GDPR_accept_button.style.cursor="pointer"; | ||
GDPR_accept_button.appendChild(document.createTextNode("ACCEPT COOKIES")); | GDPR_accept_button.appendChild(document.createTextNode("ACCEPT COOKIES")); | ||
+ | |||
+ | GDPR_reject_button.onclick=reject_cookies; | ||
+ | GDPR_accept_button.onclick=accept_cookies; | ||
GDPR_table_undecided.appendChild(GDPR_row); | GDPR_table_undecided.appendChild(GDPR_row); | ||
Line 77: | Line 147: | ||
GDPR_cell.appendChild(GDPR_accept_button); | GDPR_cell.appendChild(GDPR_accept_button); | ||
− | + | document.body.appendChild(GDPR_table_undecided); | |
GDPR_table_undecided.style.width="100%"; | GDPR_table_undecided.style.width="100%"; | ||
Line 88: | Line 158: | ||
GDPR_table_undecided.style.verticalAlign="middle"; /* some old IE convention */ | GDPR_table_undecided.style.verticalAlign="middle"; /* some old IE convention */ | ||
+ | } | ||
+ | |||
+ | function remove_GDPR_cookie(){ | ||
+ | console.log("Removed cookie: " + document.cookie); | ||
+ | document.cookie = "GDPR=; expires=Thu, 18 Dec 2013 12:00:00 UTC; path=/; samesite=strict"; | ||
+ | |||
+ | } | ||
+ | |||
+ | |||
+ | function accepted(){ | ||
+ | var cookie_img = document.createElement("img"); | ||
+ | |||
+ | cookie_img.setAttribute("id","cookie_img"); /* used for link */ | ||
+ | cookie_img.onclick=undecided; /* create click event */ | ||
+ | cookie_img.addEventListener('click', cookie_img.remove); /* add second click event, removing cookie image */ | ||
+ | cookie_img.addEventListener('click', remove_GDPR_cookie); /* add third click event, removing cookie */ | ||
+ | |||
+ | cookie_img.style.cursor="pointer"; | ||
+ | cookie_img.src = "https://www.munichbeergardens.com/images/beer/Cookie.png"; | ||
+ | document.body.appendChild(cookie_img); | ||
+ | |||
+ | cookie_img.style.position="fixed"; | ||
+ | cookie_img.style.bottom="5px"; | ||
+ | cookie_img.style.right="5px"; | ||
+ | |||
+ | } | ||
+ | |||
+ | function rejected(){ | ||
+ | |||
+ | var GDPR_table_rejected = document.createElement("table"); | ||
+ | GDPR_table_rejected.setAttribute("id","GDPR_table_rejected"); | ||
+ | var GDPR_row = document.createElement("tr"); | ||
+ | var GDPR_cell = document.createElement("td"); | ||
+ | |||
+ | var GDPR_accept_button = document.createElement("span"); | ||
+ | GDPR_accept_button.setAttribute("id","GDPR_accept_button"); | ||
+ | GDPR_accept_button.style.cursor="pointer"; | ||
+ | GDPR_accept_button.appendChild(document.createTextNode("ACCEPT COOKIES")); | ||
+ | |||
+ | GDPR_accept_button.onclick=accept_cookies; | ||
+ | |||
+ | GDPR_table_rejected.appendChild(GDPR_row); | ||
+ | GDPR_row.appendChild(GDPR_cell); | ||
+ | |||
+ | GDPR_cell.appendChild(GDPR_accept_button); | ||
+ | |||
+ | document.body.appendChild(GDPR_table_rejected); | ||
+ | |||
+ | GDPR_table_rejected.style.width="100%"; | ||
+ | GDPR_table_rejected.style.height="100%"; | ||
+ | GDPR_table_rejected.style.border="1px dashed blue"; | ||
+ | GDPR_table_rejected.style.textAlign="center"; | ||
+ | GDPR_table_rejected.style.position="fixed"; | ||
+ | GDPR_table_rejected.style.bottom="0"; | ||
+ | GDPR_accept_button.style.border="1px solid green"; | ||
+ | GDPR_table_rejected.style.verticalAlign="middle"; /* some old IE convention */ | ||
} | } |
Revision as of 10:53, 23 June 2023
/* Any JavaScript here will be loaded for all users on every page load. */ //setTimeout("alert('test')",10000); //document.getElementsByTagName('body')[0].style.margin = '110px'; var RecaptchaOptions = { theme : 'white' }; /* emulate sticky CSS if (document.getElementById('p-Matched_content') !=null) { window.onscroll = function() { var header_height = document.getElementById("p-Matched_content").scrollHeight; if (window.scrollY + 330 > header_height){ document.getElementById("p-Matched_content").style.position="fixed"; document.getElementById("p-Matched_content").style.top="0px"; } else{ document.getElementById("p-Matched_content").style.position="static"; } } } if (document.getElementById('p-advertisement') !=null) { window.onscroll = function() { var header_height = document.getElementById("p-advertisement").scrollHeight; if (window.scrollY + 330 > header_height){ document.getElementById("p-advertisement").style.position="fixed"; document.getElementById("p-advertisement").style.top="0px"; } else{ document.getElementById("p-advertisement").style.position="static"; } } } */ /* GDPR */ if (window.addEventListener) { window.addEventListener('load', run_onload, false); } function accept_cookies(){ /* if GDPR_table_rejected exists, remove it */ let GDPR_table_rejected = document.getElementById("GDPR_table_rejected"); if (typeof(GDPR_table_rejected) !== 'undefined' && GDPR_table_rejected!== null){ GDPR_table_rejected.remove(); } /* if GDPR_table_undecided exists, remove it */ let GDPR_table_undecided = document.getElementById("GDPR_table_undecided"); if (typeof(GDPR_table_undecided) !== 'undefined' && GDPR_table_undecided!== null){ GDPR_table_undecided.remove(); } // display the cookie var GDPR_cookie = "GDPR=accepted"; var GDPR_year = new Date(); // create date GDPR_year.setFullYear(GDPR_year.getFullYear() +1) // add 1 year from now var GDPR_end = "expires=" + GDPR_year.toGMTString() + ";path=/; samesite=strict"; // make endcookie and path variable // var GDPR_end = "expires=0;path=/; samesite=strict"; // make endcookie and path variable document.cookie = GDPR_cookie + ";" + GDPR_end; console.log("Added cookie: " + document.cookie); accepted(); } function reject_cookies(){ var GDPR_cookie = "GDPR=rejected" var GDPR_year = new Date(); // create date GDPR_year.setFullYear(GDPR_year.getFullYear() +1) // add 1 year from now var GDPR_end = "expires=" + GDPR_year.toGMTString() + ";path=/; samesite=strict"; // make endcookie and path variable // var GDPR_end = "expires=0;path=/; samesite=strict"; // make endcookie and path variable document.cookie = GDPR_cookie + ";" + GDPR_end; console.log("Added cookie: " + document.cookie); GDPR_table_undecided.remove(); rejected(); } // read cookie and set action here function run_onload(){ GDPR_state_value = "undecided"; if(document.cookie.indexOf("GDPR") != -1){ var state_pos = document.cookie.indexOf("GDPR="); var state_start = state_pos + 5; var state_end = state_start + 8; GDPR_state_value = document.cookie.substring(state_start,state_end); console.log(GDPR_state_value); console.log(document.cookie); } if (GDPR_state_value == "accepted"){ accepted(); } if (GDPR_state_value == "rejected"){ rejected(); } if (GDPR_state_value == "undecided"){ undecided(); } } function undecided(){ var GDPR_table_undecided = document.createElement("table"); GDPR_table_undecided.setAttribute("id","GDPR_table_undecided"); var GDPR_row = document.createElement("tr"); var GDPR_cell = document.createElement("td"); var GDPR_reject_button = document.createElement("span"); GDPR_reject_button.setAttribute("id","GDPR_reject_button"); GDPR_reject_button.style.cursor="pointer"; GDPR_reject_button.appendChild(document.createTextNode("REJECT COOKIES")); var GDPR_accept_button = document.createElement("span"); GDPR_accept_button.setAttribute("id","GDPR_accept_button"); GDPR_accept_button.style.cursor="pointer"; GDPR_accept_button.appendChild(document.createTextNode("ACCEPT COOKIES")); GDPR_reject_button.onclick=reject_cookies; GDPR_accept_button.onclick=accept_cookies; GDPR_table_undecided.appendChild(GDPR_row); GDPR_row.appendChild(GDPR_cell); GDPR_cell.appendChild(GDPR_reject_button); GDPR_cell.appendChild(GDPR_accept_button); document.body.appendChild(GDPR_table_undecided); GDPR_table_undecided.style.width="100%"; GDPR_table_undecided.style.border="1px dashed blue"; GDPR_table_undecided.style.textAlign="center"; GDPR_table_undecided.style.position="fixed"; GDPR_table_undecided.style.bottom="0"; GDPR_reject_button.style.border="1px solid green"; GDPR_accept_button.style.border="1px solid green"; GDPR_table_undecided.style.verticalAlign="middle"; /* some old IE convention */ } function remove_GDPR_cookie(){ console.log("Removed cookie: " + document.cookie); document.cookie = "GDPR=; expires=Thu, 18 Dec 2013 12:00:00 UTC; path=/; samesite=strict"; } function accepted(){ var cookie_img = document.createElement("img"); cookie_img.setAttribute("id","cookie_img"); /* used for link */ cookie_img.onclick=undecided; /* create click event */ cookie_img.addEventListener('click', cookie_img.remove); /* add second click event, removing cookie image */ cookie_img.addEventListener('click', remove_GDPR_cookie); /* add third click event, removing cookie */ cookie_img.style.cursor="pointer"; cookie_img.src = "https://www.munichbeergardens.com/images/beer/Cookie.png"; document.body.appendChild(cookie_img); cookie_img.style.position="fixed"; cookie_img.style.bottom="5px"; cookie_img.style.right="5px"; } function rejected(){ var GDPR_table_rejected = document.createElement("table"); GDPR_table_rejected.setAttribute("id","GDPR_table_rejected"); var GDPR_row = document.createElement("tr"); var GDPR_cell = document.createElement("td"); var GDPR_accept_button = document.createElement("span"); GDPR_accept_button.setAttribute("id","GDPR_accept_button"); GDPR_accept_button.style.cursor="pointer"; GDPR_accept_button.appendChild(document.createTextNode("ACCEPT COOKIES")); GDPR_accept_button.onclick=accept_cookies; GDPR_table_rejected.appendChild(GDPR_row); GDPR_row.appendChild(GDPR_cell); GDPR_cell.appendChild(GDPR_accept_button); document.body.appendChild(GDPR_table_rejected); GDPR_table_rejected.style.width="100%"; GDPR_table_rejected.style.height="100%"; GDPR_table_rejected.style.border="1px dashed blue"; GDPR_table_rejected.style.textAlign="center"; GDPR_table_rejected.style.position="fixed"; GDPR_table_rejected.style.bottom="0"; GDPR_accept_button.style.border="1px solid green"; GDPR_table_rejected.style.verticalAlign="middle"; /* some old IE convention */ }