Added code to wait for location to be retrieved before allowing user to submit, and hid the radius drop-down if geo-location wasn't checked

php
Aadhavan Srinivasan 2 years ago
parent 42eff5e0fa
commit b7a8602e34

@ -1,44 +1,94 @@
// const submit = document.getElementById("button"); // const submit = document.getElementById("button");
// submit.addEventListener('click', validate);
mycheckbox = document.getElementById("restricted"); mycheckbox = document.getElementById("restricted");
mycheckbox.addEventListener('change',checkboxCallback); mycheckbox.addEventListener('change',checkboxCallback);
window.onload = function() {
if (mycheckbox.checked) {
document.getElementById("radiusLabel").hidden = false;
document.getElementById("mandatory-radius").hidden = false;
var radiusSelect = document.getElementById("radiusSelect");
radiusSelect.hidden = false;
radiusSelect.required = true;
}
}
var lat = document.getElementById("latitude");
lat.setValue = function(newValue) {
this.value = newValue;
valueReceived();
}
function valueReceived() {
let load = document.getElementById("loadingText");
load.innerHTML = "Location retrieved";
load.style.color = "green";
}
function valueRequested() {
let load = document.getElementById("loadingText");
load.innerHTML = "Location requested. Please wait...";
load.style.color = "red";
}
function checkboxCallback(event) { function checkboxCallback(event) {
if (event.currentTarget.checked) { const radiusLabel = document.getElementById("radiusLabel");
getLocation(); const radiusSelect = document.getElementById("radiusSelect");
} const mandatoryRadius = document.getElementById("mandatory-radius");
if (event.currentTarget.checked) {
radiusLabel.hidden = false;
mandatoryRadius.hidden = false;
radiusSelect.hidden = false;
radiusSelect.required = true;
valueRequested();
getLocation();
} else {
radiusLabel.hidden = true;
mandatoryRadius.hidden = true;
radiusSelect.hidden = true;
radiusSelect.required = false;
}
} }
function getLocation() { function getLocation() {
if (navigator.geolocation) { console.log("GeoLocation");
navigator.geolocation.getCurrentPosition(showPosition); if (navigator.geolocation) {
} else { navigator.geolocation.getCurrentPosition(showPosition);
console.log("Your browser does not support geolocation."); } else {
} console.log("Your browser does not support geolocation.");
}
} }
function showPosition(position) { function showPosition(position) {
console.log(position.coords.latitude); console.log("Gotten positions");
console.log(position.coords.longitude); console.log(position.coords.latitude);
console.log(position.coords.longitude);
document.getElementById("latitude").value = position.coords.latitude; document.getElementById("latitude").setValue(position.coords.latitude);
document.getElementById("longitude").value = position.coords.longitude; document.getElementById("longitude").value = position.coords.longitude;
console.log("done");
} }
// submit.addEventListener('click', validate);
function validate() {
//e.preventDefault();
const checked = document.getElementById("restricted");
if (checked.checked) {
const lat = document.getElementById("latitude");
const long = document.getElementById("longitude");
if (lat.value === "" || long.value === "") {
/* wait */
return false
}
}
function validate() { const url = document.getElementById("URL");
//e.preventDefault(); let glink = document.getElementById("GLink");
const error = document.getElementById("error");
const url = document.getElementById("URL"); // if (!url) {
let glink = document.getElementById("GLink"); // /* Flag */
const error = document.getElementById("error"); // }
// if (!url) { let valid = true;
// /* Flag */ const domainExp = new RegExp("^http(s)*:\\/\\/[a-zA-Z0-9\\-]+(\\.[a-zA-Z0-9\\-]+)+$");
// } const filepathExp = new RegExp("^[a-zA-Z]+$");
let valid = true;
const domainExp = new RegExp("^http(s)*:\\/\\/[a-zA-Z0-9\\-]+(\\.[a-zA-Z0-9\\-]+)+$");
const filepathExp = new RegExp("^[a-zA-Z]+$");
const glinkExp = new RegExp("^[a-zA-Z]*$"); const glinkExp = new RegExp("^[a-zA-Z]*$");
let glinkStr = glink.value; let glinkStr = glink.value;
let count = 0; let count = 0;
@ -71,8 +121,6 @@ function validate() {
var result = window.confirm("You have left the glink field blank. A random one will be generated for you."); var result = window.confirm("You have left the glink field blank. A random one will be generated for you.");
if (result === false) { if (result === false) {
return false; return false;
} else {
glinkStr = getRandomGLink();
} }
} }

Loading…
Cancel
Save