0
0
mirror of https://github.com/Doodle3D/doodle3d-connect.git synced 2024-06-26 17:41:22 +02:00

Prevent parameters removal from url's

This commit is contained in:
peteruithoven 2014-05-01 18:37:29 +02:00
parent e5483988b5
commit 7329682626
2 changed files with 29 additions and 29 deletions

View File

@ -52,12 +52,12 @@ var BoxPage = (function (w) {
});
function retrieveNetworkStatus() {
console.log("retrieveNetworkStatus");
//console.log("retrieveNetworkStatus");
_networkAPI.status(function(data) {
console.log("_networkAPI.status complete");
console.log(" data: ",data);
//console.log("_networkAPI.status complete");
//console.log(" data: ",data);
data.status = parseInt(data.status,10);
console.log(" data.status: ",data.status);
//console.log(" data.status: ",data.status);
//console.log(_self.id,"NetworkPanel:retrievedStatus status: ",data.status,data.statusMessage);
//console.log(" networkPanel ",_element[0]," parent: ",_element.parent()[0]);
// ToDo: update _currentNetwork when available
@ -81,11 +81,10 @@ var BoxPage = (function (w) {
}
function setNetworkStatus(status) {
console.log("setNetworkStatus: ",status);
console.log(" _updateItem: ",_updateItem);
//console.log("setNetworkStatus: ",status);
var introText = "";
if(status === NetworkAPI.STATUS.CONNECTED) { // online
console.log("online");
//console.log("online");
_drawItem.find("a").text("Draw");
// ToDo: Link to your app here?
// ToDo: Status
@ -97,7 +96,7 @@ var BoxPage = (function (w) {
_joinNetworkItem.toggleClass("ui-screen-hidden",true);
} else { // offline
console.log("offline");
//console.log("offline");
introText = "Please connect your WiFi-Box to the internet. You can also use it offline, but then you won't be able to update.";
_joinNetworkItem.toggleClass("ui-screen-hidden",false);

View File

@ -12,9 +12,10 @@ d3d.util = {
parseURL:function(url) {
var parsed = $.mobile.path.parseUrl( url );
var hashParts = parsed.hash.split( "?" );
var parameters = {};
var parameters;
// Assemble query parameters object from the query string
if (hashParts.length > 1) {
parameters = {};
$.each(hashParts[1].split( "&" ), function( index, value ) {
var pair = value.split( "=" );
if ( pair.length > 0 && pair[ 0 ] ) {
@ -60,30 +61,30 @@ d3d.util = {
};
(function (w) {
/*$.mobile.document.on( "pagebeforechange", function( event, data ) {
console.log("pagebeforechange");
//console.log(" event: ",event);
//console.log(" data: ",data);
d3d.pageParams[pageID]
if ($.type(data.toPage) === "string") {
console.log(" data.toPage: ",data.toPage);
//var url = d3d.util.processURL(data.toPage);
//data.url = url;
// add to data attribute of target page ?
}
});*/
// to get to url parameters we need the url
//$(function () {
//to get to url parameters we need the url
// only pagecontainer events contain url's
// we parse the parameters and store them in a global object
$.mobile.document.on( "pagecontainerbeforetransition", function( event, data ) {
//console.log("pagecontainerbeforetransition");
var url = d3d.util.parseURL(data.absUrl);
$.mobile.document.on( "pagebeforechange", function( event, data ) {
//console.log("pagebeforechange");
//console.log(" event: ",event);
//console.log(" data: ",data);
//d3d.pageParams[pageID]
//console.log(" data.toPage: ",data.toPage);
if (typeof data.toPage !== "string") { return; }
var url = d3d.util.parseURL(data.toPage);
//console.log(" url: ",url);
//console.log(" url.hash: ",url.hash);
if(url.parameters === undefined) { return; }
if(!d3d.pageParams) { d3d.pageParams = {}; }
d3d.pageParams[url.hash] = url.parameters;
// let jQuery mobile navigate to page (providing only the page id so it understands)
$.mobile.changePage(url.hash, data.options);
// replace the history item with a url including parameters
window.history.replaceState(null, null, url.parsed.href);
// make sure that the parameters are not removed from the visible url
event.preventDefault();
});
})(window);