mirror of
https://github.com/Doodle3D/doodle3d-client.git
synced 2024-11-22 09:17:56 +01:00
Merge branch 'NetworkPanel-refactor' into develop
This commit is contained in:
commit
90d1a80355
39
Gruntfile.js
39
Gruntfile.js
@ -16,36 +16,13 @@ module.exports = function(grunt) {
|
|||||||
},
|
},
|
||||||
js: {
|
js: {
|
||||||
src: [
|
src: [
|
||||||
'js/Events.js',
|
'js/api/*.js',
|
||||||
'js/Class.js',
|
'js/settings/FormPanel.js',
|
||||||
'js/Button.js',
|
'js/settings/*.js',
|
||||||
'js/Popup.js',
|
'js/*.js',
|
||||||
'js/btnMove.js',
|
// make sure we put main.js last
|
||||||
'js/WordArt.js',
|
'!js/main.js',
|
||||||
'js/Shape.js',
|
'js/main.js', ],
|
||||||
'js/AddShapeDialog.js',
|
|
||||||
'js/Svg.js',
|
|
||||||
'js/Keyboard.js',
|
|
||||||
'js/SettingsWindow.js',
|
|
||||||
'js/UpdatePanel.js',
|
|
||||||
'js/PrinterPanel.js',
|
|
||||||
'js/Help.js',
|
|
||||||
'js/d3dServerInterfacing.js',
|
|
||||||
'js/verticalShapes.js',
|
|
||||||
'js/buttonbehaviors.js',
|
|
||||||
'js/canvasDrawing.js',
|
|
||||||
'js/previewRendering.js',
|
|
||||||
'js/gcodeGenerating.js',
|
|
||||||
'js/init_layout.js',
|
|
||||||
'js/Printer.js',
|
|
||||||
'js/Progressbar.js',
|
|
||||||
'js/Thermometer.js',
|
|
||||||
'js/utils.js',
|
|
||||||
'js/sidebar.js',
|
|
||||||
'js/Message.js',
|
|
||||||
'js/main.js',
|
|
||||||
'js/sketches.js'
|
|
||||||
],
|
|
||||||
dest: 'www/js/<%= pkg.name %>.js'
|
dest: 'www/js/<%= pkg.name %>.js'
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
@ -113,7 +90,7 @@ module.exports = function(grunt) {
|
|||||||
},
|
},
|
||||||
watch: {
|
watch: {
|
||||||
javascript: {
|
javascript: {
|
||||||
files: ["js/*", '!www/js/<%= pkg.name %>.min.js', '!www/js/<%= pkg.name %>.js'],
|
files: ["js/**", '!www/js/<%= pkg.name %>.min.js', '!www/js/<%= pkg.name %>.js'],
|
||||||
tasks: ["concat:js", "uglify:js"]
|
tasks: ["concat:js", "uglify:js"]
|
||||||
// tasks: ["jshint", "concat", "uglify"]
|
// tasks: ["jshint", "concat", "uglify"]
|
||||||
},
|
},
|
||||||
|
@ -50,7 +50,7 @@ function updateShapePreview() {
|
|||||||
var c = canvas.getContext('2d');
|
var c = canvas.getContext('2d');
|
||||||
var w = canvas.width;
|
var w = canvas.width;
|
||||||
var h = canvas.height;
|
var h = canvas.height;
|
||||||
console.log(w,h);
|
//console.log(w,h);
|
||||||
var r = w/2 - 20;
|
var r = w/2 - 20;
|
||||||
var x0 = w/2;
|
var x0 = w/2;
|
||||||
var y0 = h/2;
|
var y0 = h/2;
|
||||||
|
64
js/Class.js
64
js/Class.js
@ -1,64 +0,0 @@
|
|||||||
/* Simple JavaScript Inheritance
|
|
||||||
* By John Resig http://ejohn.org/
|
|
||||||
* MIT Licensed.
|
|
||||||
*/
|
|
||||||
// Inspired by base2 and Prototype
|
|
||||||
(function(){
|
|
||||||
var initializing = false, fnTest = /xyz/.test(function(){xyz;}) ? /\b_super\b/ : /.*/;
|
|
||||||
|
|
||||||
// The base Class implementation (does nothing)
|
|
||||||
this.Class = function(){};
|
|
||||||
|
|
||||||
// Create a new Class that inherits from this class
|
|
||||||
Class.extend = function(prop) {
|
|
||||||
var _super = this.prototype;
|
|
||||||
|
|
||||||
// Instantiate a base class (but only create the instance,
|
|
||||||
// don't run the init constructor)
|
|
||||||
initializing = true;
|
|
||||||
var prototype = new this();
|
|
||||||
initializing = false;
|
|
||||||
|
|
||||||
// Copy the properties over onto the new prototype
|
|
||||||
for (var name in prop) {
|
|
||||||
// Check if we're overwriting an existing function
|
|
||||||
prototype[name] = typeof prop[name] == "function" &&
|
|
||||||
typeof _super[name] == "function" && fnTest.test(prop[name]) ?
|
|
||||||
(function(name, fn){
|
|
||||||
return function() {
|
|
||||||
var tmp = this._super;
|
|
||||||
|
|
||||||
// Add a new ._super() method that is the same method
|
|
||||||
// but on the super-class
|
|
||||||
this._super = _super[name];
|
|
||||||
|
|
||||||
// The method only need to be bound temporarily, so we
|
|
||||||
// remove it when we're done executing
|
|
||||||
var ret = fn.apply(this, arguments);
|
|
||||||
this._super = tmp;
|
|
||||||
|
|
||||||
return ret;
|
|
||||||
};
|
|
||||||
})(name, prop[name]) :
|
|
||||||
prop[name];
|
|
||||||
}
|
|
||||||
|
|
||||||
// The dummy class constructor
|
|
||||||
function Class() {
|
|
||||||
// All construction is actually done in the init method
|
|
||||||
if ( !initializing && this.init )
|
|
||||||
this.init.apply(this, arguments);
|
|
||||||
}
|
|
||||||
|
|
||||||
// Populate our constructed prototype object
|
|
||||||
Class.prototype = prototype;
|
|
||||||
|
|
||||||
// Enforce the constructor to be what we expect
|
|
||||||
Class.prototype.constructor = Class;
|
|
||||||
|
|
||||||
// And make this class extendable
|
|
||||||
Class.extend = arguments.callee;
|
|
||||||
|
|
||||||
return Class;
|
|
||||||
};
|
|
||||||
})();
|
|
46
js/Help.js
46
js/Help.js
@ -8,14 +8,14 @@
|
|||||||
|
|
||||||
var grandTour;
|
var grandTour;
|
||||||
function GrandTour(_name) {
|
function GrandTour(_name) {
|
||||||
console.log("GrandTour");
|
//console.log("GrandTour");
|
||||||
this.tour = "";
|
this.tour = "";
|
||||||
this.name = _name;
|
this.name = _name;
|
||||||
this.active = false;
|
this.active = false;
|
||||||
var self = this;
|
var self = this;
|
||||||
|
|
||||||
this.init = function() {
|
this.init = function() {
|
||||||
console.log("GrandTour >> f:init()");
|
//console.log("GrandTour >> f:init()");
|
||||||
|
|
||||||
this.tour = function() {
|
this.tour = function() {
|
||||||
$('#help_d3dIntro').joyride({
|
$('#help_d3dIntro').joyride({
|
||||||
@ -48,9 +48,9 @@ function GrandTour(_name) {
|
|||||||
};
|
};
|
||||||
|
|
||||||
this.preRideCallback = function(index, tip) {
|
this.preRideCallback = function(index, tip) {
|
||||||
console.log("GrandTour >> f:preRideCallback() >> index: " + index);
|
//console.log("GrandTour >> f:preRideCallback() >> index: " + index);
|
||||||
if (index == 0 && $.cookie("Doodle3DFirstTime") == "ridden") {
|
if (index == 0 && $.cookie("Doodle3DFirstTime") == "ridden") {
|
||||||
console.log("GrandTour >> f:preRideCallback() >> we've been here before...");
|
//console.log("GrandTour >> f:preRideCallback() >> we've been here before...");
|
||||||
|
|
||||||
if ($.cookie("grandTourFinished")) {
|
if ($.cookie("grandTourFinished")) {
|
||||||
// grand tour was previously finished (eh.. is that useful?)
|
// grand tour was previously finished (eh.. is that useful?)
|
||||||
@ -82,7 +82,7 @@ function GrandTour(_name) {
|
|||||||
if (dataset.action != undefined) {
|
if (dataset.action != undefined) {
|
||||||
switch (dataset.action) {
|
switch (dataset.action) {
|
||||||
case "showMessage":
|
case "showMessage":
|
||||||
console.log(" action: showMessage");
|
//console.log(" action: showMessage");
|
||||||
message.set("This is a status message...", Message.NOTICE);
|
message.set("This is a status message...", Message.NOTICE);
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
@ -111,7 +111,7 @@ function GrandTour(_name) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
if (index < $(this)[0].$tip_content.length - 1) {
|
if (index < $(this)[0].$tip_content.length - 1) {
|
||||||
console.log("GrandTour >> f:postRideCallback() >> tour terminated before its true end");
|
//console.log("GrandTour >> f:postRideCallback() >> tour terminated before its true end");
|
||||||
// tour wasn't finished
|
// tour wasn't finished
|
||||||
|
|
||||||
// tour was ended prematurely. For only the first few visits, nag the user about being able to revisit the tour..
|
// tour was ended prematurely. For only the first few visits, nag the user about being able to revisit the tour..
|
||||||
@ -121,7 +121,7 @@ function GrandTour(_name) {
|
|||||||
// infoReminderTour.start();
|
// infoReminderTour.start();
|
||||||
} else {
|
} else {
|
||||||
// tour was finished
|
// tour was finished
|
||||||
console.log("GrandTour >> f:postRideCallback() >> tour ended at its true end");
|
//console.log("GrandTour >> f:postRideCallback() >> tour ended at its true end");
|
||||||
// we should be at the end...
|
// we should be at the end...
|
||||||
if (!$.cookie("grandTourFinished") && parseInt($.cookie("Doodle3DVisitCounter")) < helpTours.numTimesToShowNagPopup) {
|
if (!$.cookie("grandTourFinished") && parseInt($.cookie("Doodle3DVisitCounter")) < helpTours.numTimesToShowNagPopup) {
|
||||||
helpTours.startTour(helpTours.INFOREMINDER, helpTours);
|
helpTours.startTour(helpTours.INFOREMINDER, helpTours);
|
||||||
@ -132,7 +132,7 @@ function GrandTour(_name) {
|
|||||||
};
|
};
|
||||||
|
|
||||||
this.start = function() {
|
this.start = function() {
|
||||||
console.log("GrandTour >> f:start() >> this: " , this);
|
//console.log("GrandTour >> f:start() >> this: " , this);
|
||||||
this.active = true;
|
this.active = true;
|
||||||
$(window).joyride('restart');
|
$(window).joyride('restart');
|
||||||
// self.tour();
|
// self.tour();
|
||||||
@ -141,14 +141,14 @@ function GrandTour(_name) {
|
|||||||
|
|
||||||
var infoReminderTour;
|
var infoReminderTour;
|
||||||
function InfoReminderTour(_name) {
|
function InfoReminderTour(_name) {
|
||||||
console.log("InfoReminderTour");
|
//console.log("InfoReminderTour");
|
||||||
this.tour = "";
|
this.tour = "";
|
||||||
this.name = _name;
|
this.name = _name;
|
||||||
this.active = false;
|
this.active = false;
|
||||||
var self = this;
|
var self = this;
|
||||||
|
|
||||||
this.init = function(callback) {
|
this.init = function(callback) {
|
||||||
console.log("InfoReminderTour >> f:init()");
|
//console.log("InfoReminderTour >> f:init()");
|
||||||
|
|
||||||
this.tour = function() {
|
this.tour = function() {
|
||||||
$('#help_InfoReminder').joyride({
|
$('#help_InfoReminder').joyride({
|
||||||
@ -173,19 +173,19 @@ function InfoReminderTour(_name) {
|
|||||||
};
|
};
|
||||||
|
|
||||||
this.preRideCallback = function(index, tip) {
|
this.preRideCallback = function(index, tip) {
|
||||||
console.log("InfoReminderTour >> f:preRideCallback() >> index: " + index + ", tip: " , tip);
|
//console.log("InfoReminderTour >> f:preRideCallback() >> index: " + index + ", tip: " , tip);
|
||||||
};
|
};
|
||||||
this.postStepCallback = function(index, tip) {
|
this.postStepCallback = function(index, tip) {
|
||||||
console.log("InfoReminderTour >> f:postStepCallback() >> index: " + index + ", tip: " , tip);
|
//console.log("InfoReminderTour >> f:postStepCallback() >> index: " + index + ", tip: " , tip);
|
||||||
};
|
};
|
||||||
this.postRideCallback = function(index, tip) {
|
this.postRideCallback = function(index, tip) {
|
||||||
console.log("InfoReminderTour >> f:postRideCallback() >> index: " + index + ", tip: " , tip);
|
//console.log("InfoReminderTour >> f:postRideCallback() >> index: " + index + ", tip: " , tip);
|
||||||
this.active = false;
|
this.active = false;
|
||||||
$(document).trigger(helpTours.TOURFINISHED, self.name);
|
$(document).trigger(helpTours.TOURFINISHED, self.name);
|
||||||
};
|
};
|
||||||
|
|
||||||
this.start = function() {
|
this.start = function() {
|
||||||
console.log("InfoReminderTour >> f:start()");
|
//console.log("InfoReminderTour >> f:start()");
|
||||||
this.active = true;
|
this.active = true;
|
||||||
$(window).joyride('restart');
|
$(window).joyride('restart');
|
||||||
// self.tour();
|
// self.tour();
|
||||||
@ -193,7 +193,7 @@ function InfoReminderTour(_name) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
function initHelp() {
|
function initHelp() {
|
||||||
console.log("f:initHelp()");
|
//console.log("f:initHelp()");
|
||||||
|
|
||||||
// track number of visits of this user
|
// track number of visits of this user
|
||||||
if ($.cookie("Doodle3DVisitCounter") == null) {
|
if ($.cookie("Doodle3DVisitCounter") == null) {
|
||||||
@ -204,7 +204,7 @@ function initHelp() {
|
|||||||
|
|
||||||
// load the html file which describes the tour contents
|
// load the html file which describes the tour contents
|
||||||
$("#helpContainer").load("helpcontent.html", function() {
|
$("#helpContainer").load("helpcontent.html", function() {
|
||||||
console.log("helpContent loaded");
|
//console.log("helpContent loaded");
|
||||||
|
|
||||||
helpTours = new HelpTours();
|
helpTours = new HelpTours();
|
||||||
|
|
||||||
@ -212,7 +212,7 @@ function initHelp() {
|
|||||||
|
|
||||||
|
|
||||||
if (parseInt($.cookie("Doodle3DVisitCounter")) < helpTours.numTimesToShowNagPopup) {
|
if (parseInt($.cookie("Doodle3DVisitCounter")) < helpTours.numTimesToShowNagPopup) {
|
||||||
console.log("initHelp >> Doodle3DFirstTime cookie is set, Doodle3DVisitCounter is < 4");
|
//console.log("initHelp >> Doodle3DFirstTime cookie is set, Doodle3DVisitCounter is < 4");
|
||||||
if ($.cookie("Doodle3DFirstTime") != "ridden") {
|
if ($.cookie("Doodle3DFirstTime") != "ridden") {
|
||||||
setTimeout(helpTours.startTour, 750, helpTours.tours.grandTour, helpTours);
|
setTimeout(helpTours.startTour, 750, helpTours.tours.grandTour, helpTours);
|
||||||
} else {
|
} else {
|
||||||
@ -239,7 +239,7 @@ function initHelp() {
|
|||||||
|
|
||||||
var helpTours;
|
var helpTours;
|
||||||
function HelpTours() {
|
function HelpTours() {
|
||||||
console.log("HelpTours");
|
//console.log("HelpTours");
|
||||||
|
|
||||||
this.numTimesToShowNagPopup = 2;
|
this.numTimesToShowNagPopup = 2;
|
||||||
|
|
||||||
@ -257,7 +257,7 @@ function HelpTours() {
|
|||||||
var self = this;
|
var self = this;
|
||||||
|
|
||||||
this.init = function(callback) {
|
this.init = function(callback) {
|
||||||
console.log("HelpTours >> f:init >> self: " + self);
|
//console.log("HelpTours >> f:init >> self: " + self);
|
||||||
$(document).on(this.TOURFINISHED, this.tourEnded);
|
$(document).on(this.TOURFINISHED, this.tourEnded);
|
||||||
|
|
||||||
grandTour = new GrandTour(this.WELCOMETOUR);
|
grandTour = new GrandTour(this.WELCOMETOUR);
|
||||||
@ -265,7 +265,7 @@ function HelpTours() {
|
|||||||
|
|
||||||
// this.tours["grandTour"] = self.WELCOMETOUR;
|
// this.tours["grandTour"] = self.WELCOMETOUR;
|
||||||
// this.tours["infoReminderTour "]= self.INFOREMINDER;
|
// this.tours["infoReminderTour "]= self.INFOREMINDER;
|
||||||
console.log("HelpTours >> f:init >> this.tours: " , this.tours);
|
//console.log("HelpTours >> f:init >> this.tours: " , this.tours);
|
||||||
|
|
||||||
if (callback != undefined) callback();
|
if (callback != undefined) callback();
|
||||||
};
|
};
|
||||||
@ -283,7 +283,7 @@ function HelpTours() {
|
|||||||
case scope.WELCOMETOUR:
|
case scope.WELCOMETOUR:
|
||||||
// do welcometour
|
// do welcometour
|
||||||
//console.log("HelpTours >> f:startTour >> case this.WELCOMETOUR >> scope.tourActive = " + scope.tourActive);
|
//console.log("HelpTours >> f:startTour >> case this.WELCOMETOUR >> scope.tourActive = " + scope.tourActive);
|
||||||
console.log("HelpTours >> f:startTour >> case this.WELCOMETOUR");
|
//console.log("HelpTours >> f:startTour >> case this.WELCOMETOUR");
|
||||||
if (scope.tourActive) {
|
if (scope.tourActive) {
|
||||||
if (scope.currActiveTour.active == true) {
|
if (scope.currActiveTour.active == true) {
|
||||||
$(window).joyride('end');
|
$(window).joyride('end');
|
||||||
@ -305,7 +305,7 @@ function HelpTours() {
|
|||||||
case self.INFOREMINDER:
|
case self.INFOREMINDER:
|
||||||
// do info reminder
|
// do info reminder
|
||||||
// console.log("HelpTours >> f:startTour >> case self.INFOREMINDER >> scope.tourActive = " + scope.tourActive);
|
// console.log("HelpTours >> f:startTour >> case self.INFOREMINDER >> scope.tourActive = " + scope.tourActive);
|
||||||
console.log("HelpTours >> f:startTour >> case self.INFOREMINDER");
|
//console.log("HelpTours >> f:startTour >> case self.INFOREMINDER");
|
||||||
if (scope.tourActive) {
|
if (scope.tourActive) {
|
||||||
// console.log(" killing previous joyride... ");
|
// console.log(" killing previous joyride... ");
|
||||||
if (scope.currActiveTour.active == true) {
|
if (scope.currActiveTour.active == true) {
|
||||||
@ -330,7 +330,7 @@ function HelpTours() {
|
|||||||
}
|
}
|
||||||
|
|
||||||
this.tourEnded = function(e, n) {
|
this.tourEnded = function(e, n) {
|
||||||
console.log("HelpTours >> f:tourEnded >> self.tourActive: " + self.tourActive + ", name: " + n);
|
//console.log("HelpTours >> f:tourEnded >> self.tourActive: " + self.tourActive + ", name: " + n);
|
||||||
|
|
||||||
$(window).joyride('destroy');
|
$(window).joyride('destroy');
|
||||||
self.currActiveTour = undefined;
|
self.currActiveTour = undefined;
|
||||||
|
@ -65,12 +65,12 @@ function Printer() {
|
|||||||
var self = this;
|
var self = this;
|
||||||
|
|
||||||
this.init = function() {
|
this.init = function() {
|
||||||
console.log("Printer:init");
|
//console.log("Printer:init");
|
||||||
//this.wifiboxURL = "http://" + window.location.host + "/cgi-bin/d3dapi";
|
//this.wifiboxURL = "http://" + window.location.host + "/cgi-bin/d3dapi";
|
||||||
//this.wifiboxURL = "http://192.168.5.1/cgi-bin/d3dapi";
|
//this.wifiboxURL = "http://192.168.5.1/cgi-bin/d3dapi";
|
||||||
this.wifiboxURL = wifiboxURL;
|
this.wifiboxURL = wifiboxURL;
|
||||||
//this.wifiboxURL = "proxy5.php";
|
//this.wifiboxURL = "proxy5.php";
|
||||||
console.log(" wifiboxURL: ",this.wifiboxURL);
|
//console.log(" wifiboxURL: ",this.wifiboxURL);
|
||||||
|
|
||||||
if(autoUpdate) {
|
if(autoUpdate) {
|
||||||
this.startStatusCheckInterval();
|
this.startStatusCheckInterval();
|
||||||
|
@ -1,84 +0,0 @@
|
|||||||
/*
|
|
||||||
* This file is part of the Doodle3D project (http://doodle3d.com).
|
|
||||||
*
|
|
||||||
* Copyright (c) 2013, Doodle3D
|
|
||||||
* This software is licensed under the terms of the GNU GPL v2 or later.
|
|
||||||
* See file LICENSE.txt or visit http://www.gnu.org/licenses/gpl.html for full license details.
|
|
||||||
*/
|
|
||||||
|
|
||||||
function PrinterPanel() {
|
|
||||||
this.wifiboxURL;
|
|
||||||
this.element;
|
|
||||||
|
|
||||||
this.retryDelay = 1000;
|
|
||||||
this.retryDelayer; // setTimout instance
|
|
||||||
//this.timeoutTime = 3000;
|
|
||||||
|
|
||||||
this.printerType;
|
|
||||||
this.printerSettingsNames;
|
|
||||||
|
|
||||||
var self = this;
|
|
||||||
|
|
||||||
this.init = function(wifiboxURL,element) {
|
|
||||||
self.wifiboxURL = wifiboxURL;
|
|
||||||
self.element = element;
|
|
||||||
|
|
||||||
self.printerSelector = element.find("#printerType");
|
|
||||||
self.printerSelector.change(self.printerSelectorChanged);
|
|
||||||
|
|
||||||
var formElements = element.find("[name]");
|
|
||||||
self.printerSettingsNames = [];
|
|
||||||
formElements.each( function(index,element) {
|
|
||||||
self.printerSettingsNames.push(element.name);
|
|
||||||
});
|
|
||||||
|
|
||||||
var gcodePanel = element.find("#gcodePanel");
|
|
||||||
gcodePanel.coolfieldset({collapsed:true});
|
|
||||||
}
|
|
||||||
this.printerSelectorChanged = function(e) {
|
|
||||||
console.log("PrinterPanel:printerSelectorChanged");
|
|
||||||
console.log("self: ", self);
|
|
||||||
self.printerType = self.printerSelector.find("option:selected").val();
|
|
||||||
self.savePrinterType(self.loadPrinterSettings);
|
|
||||||
}
|
|
||||||
|
|
||||||
this.savePrinterType = function(complete) {
|
|
||||||
console.log("PrinterPanel:savePrinterType");
|
|
||||||
var postData = {};
|
|
||||||
postData[self.printerSelector.attr("name")] = self.printerType;
|
|
||||||
console.log("postData: ",postData);
|
|
||||||
$.ajax({
|
|
||||||
url: self.wifiboxURL + "/config/",
|
|
||||||
type: "POST",
|
|
||||||
dataType: 'json',
|
|
||||||
data: postData,
|
|
||||||
success: function(response){
|
|
||||||
console.log("PrinterPanel:savePrinterType response: ",response);
|
|
||||||
if(complete) complete();
|
|
||||||
}
|
|
||||||
}).fail(function() {
|
|
||||||
console.log("PrinterPanel:savePrinterType: failed");
|
|
||||||
});
|
|
||||||
}
|
|
||||||
this.loadPrinterSettings = function() {
|
|
||||||
console.log("PrinterPanel:loadPrinterSettings");
|
|
||||||
console.log(" self.printerSettingsNames: ",self.printerSettingsNames);
|
|
||||||
var getData = {};
|
|
||||||
$.each(self.printerSettingsNames, function(key, val) {
|
|
||||||
getData[val] = "";
|
|
||||||
});
|
|
||||||
console.log("getData: ",getData);
|
|
||||||
$.ajax({
|
|
||||||
url: self.wifiboxURL + "/config/",
|
|
||||||
dataType: 'json',
|
|
||||||
data: getData,
|
|
||||||
success: function(response){
|
|
||||||
console.log("PrinterPanel:loadPrinterSettings response: ",response);
|
|
||||||
|
|
||||||
self.fillForm(response.data,self.element);
|
|
||||||
}
|
|
||||||
}).fail(function() {
|
|
||||||
console.log("PrinterPanel:loadPrinterSettings: failed");
|
|
||||||
});
|
|
||||||
}
|
|
||||||
}
|
|
@ -45,7 +45,7 @@ function Progressbar() {
|
|||||||
|
|
||||||
var self = this;
|
var self = this;
|
||||||
this.progressbarBGImg.onload = function() {
|
this.progressbarBGImg.onload = function() {
|
||||||
console.log("progressbarBGImg img loaded");
|
//console.log("progressbarBGImg img loaded");
|
||||||
// self.isInitted = true;
|
// self.isInitted = true;
|
||||||
// self.update(self.currentTemperature, self.targetTemperature);
|
// self.update(self.currentTemperature, self.targetTemperature);
|
||||||
|
|
||||||
|
@ -1,791 +0,0 @@
|
|||||||
/*
|
|
||||||
* This file is part of the Doodle3D project (http://doodle3d.com).
|
|
||||||
*
|
|
||||||
* Copyright (c) 2013, Doodle3D
|
|
||||||
* This software is licensed under the terms of the GNU GPL v2 or later.
|
|
||||||
* See file LICENSE.txt or visit http://www.gnu.org/licenses/gpl.html for full license details.
|
|
||||||
*/
|
|
||||||
|
|
||||||
//these settings are defined in the firmware (conf_defaults.lua) and will be initialized in loadSettings()
|
|
||||||
var settings = {};
|
|
||||||
var settingsPopup;
|
|
||||||
//wrapper to prevent scoping issues in showSettings()
|
|
||||||
function openSettingsWindow() {
|
|
||||||
settingsWindow.loadSettings(function() { // reload settings
|
|
||||||
settingsPopup.open();
|
|
||||||
});
|
|
||||||
}
|
|
||||||
|
|
||||||
function SettingsWindow() {
|
|
||||||
this.wifiboxURL;
|
|
||||||
this.wifiboxCGIBinURL;
|
|
||||||
this.window;
|
|
||||||
this.btnOK;
|
|
||||||
this.form;
|
|
||||||
this.timeoutTime = 3000;
|
|
||||||
this.saveSettingsTimeoutTime = 8000;
|
|
||||||
this.retryDelay = 2000; // retry setTimout delay
|
|
||||||
this.retryRetrieveNetworkStatusDelayTime = 1000;// retry setTimout delay
|
|
||||||
|
|
||||||
this.retryLoadSettingsDelay; // retry setTimout instance
|
|
||||||
this.retrySaveSettingsDelay; // retry setTimout instance
|
|
||||||
this.retryResetSettingsDelay; // retry setTimout instance
|
|
||||||
this.retryRetrieveNetworkStatusDelay;// retry setTimout instance
|
|
||||||
|
|
||||||
this.apFieldSet;
|
|
||||||
this.clientFieldSet;
|
|
||||||
this.restoreStateField;
|
|
||||||
this.networks;
|
|
||||||
this.currentNetwork; // the ssid of the network the box is on
|
|
||||||
this.selectedNetwork; // the ssid of the selected network in the client mode settings
|
|
||||||
this.currentLocalIP = "";
|
|
||||||
this.clientModeState = SettingsWindow.NOT_CONNECTED;
|
|
||||||
this.currentAP;
|
|
||||||
this.apModeState = SettingsWindow.NO_AP;
|
|
||||||
|
|
||||||
// after switching wifi network or creating a access point we delay the status retrieval
|
|
||||||
// because the webserver needs time to switch
|
|
||||||
this.retrieveNetworkStatusDelay; // setTimout delay
|
|
||||||
this.retrieveNetworkStatusDelayTime = 1000;
|
|
||||||
|
|
||||||
this.restoredStateHideDelayTime = 3000;
|
|
||||||
this.restoredStateHideDelay; // setTimout instance
|
|
||||||
|
|
||||||
// Events
|
|
||||||
SettingsWindow.SETTINGS_LOADED = "settingsLoaded";
|
|
||||||
|
|
||||||
// network client mode states
|
|
||||||
SettingsWindow.NOT_CONNECTED = "not connected"; // also used as first item in networks list
|
|
||||||
SettingsWindow.CONNECTED = "connected";
|
|
||||||
SettingsWindow.CONNECTING = "connecting";
|
|
||||||
SettingsWindow.CONNECTING_FAILED = "connecting failed";
|
|
||||||
|
|
||||||
// network access point mode states
|
|
||||||
SettingsWindow.NO_AP = "no ap";
|
|
||||||
SettingsWindow.AP = "ap";
|
|
||||||
SettingsWindow.CREATING_AP = "creating ap";
|
|
||||||
|
|
||||||
SettingsWindow.API_CONNECTING_FAILED = -1;
|
|
||||||
SettingsWindow.API_NOT_CONNECTED = 0;
|
|
||||||
SettingsWindow.API_CONNECTING = 1;
|
|
||||||
SettingsWindow.API_CONNECTED = 2;
|
|
||||||
SettingsWindow.API_CREATING = 3;
|
|
||||||
SettingsWindow.API_CREATED = 4;
|
|
||||||
|
|
||||||
// network mode
|
|
||||||
SettingsWindow.NETWORK_MODE_NEITHER = "neither";
|
|
||||||
SettingsWindow.NETWORK_MODE_CLIENT = "clientMode";
|
|
||||||
SettingsWindow.NETWORK_MODE_ACCESS_POINT = "accessPointMode";
|
|
||||||
|
|
||||||
this.networkMode = SettingsWindow.NETWORK_MODE_NEITHER;
|
|
||||||
|
|
||||||
this.updatePanel = new UpdatePanel();
|
|
||||||
this.printerPanel = new PrinterPanel();
|
|
||||||
|
|
||||||
var self = this;
|
|
||||||
|
|
||||||
this.init = function(wifiboxURL,wifiboxCGIBinURL) {
|
|
||||||
this.wifiboxURL = wifiboxURL;
|
|
||||||
this.wifiboxCGIBinURL = wifiboxCGIBinURL;
|
|
||||||
|
|
||||||
this.window = $("#popupSettings");
|
|
||||||
this.btnOK = this.window.find(".btnOK");
|
|
||||||
settingsPopup = new Popup($("#popupSettings"), $("#popupMask"));
|
|
||||||
settingsPopup.setEnterEnabled(false);
|
|
||||||
settingsPopup.setAutoCloseEnabled(false);
|
|
||||||
|
|
||||||
this.btnOK.on('touchstart mousedown',settingsPopup.commit);
|
|
||||||
$("#popupSettings").bind("onPopupCancel", function() { settingsPopup.close(); } );
|
|
||||||
$("#popupSettings").bind("onPopupCommit", self.submitwindow);
|
|
||||||
|
|
||||||
this.window.find("#settingsContainer").load("settings.html", function() {
|
|
||||||
console.log("Settings:finished loading settings.html, now loading settings...");
|
|
||||||
|
|
||||||
self.form = self.window.find("form");
|
|
||||||
self.form.submit(function (e) { self.submitwindow(e); });
|
|
||||||
|
|
||||||
$.ajax({
|
|
||||||
url: self.wifiboxURL + "/printer/listall",
|
|
||||||
dataType: 'json',
|
|
||||||
timeout: self.timeoutTime,
|
|
||||||
success: function(response) {
|
|
||||||
console.log("Settings:printer/listall response: ",response.data.printers);
|
|
||||||
|
|
||||||
$.each(response.data.printers, function(key, value) {
|
|
||||||
// console.log(key,value);
|
|
||||||
$('#printerType').append($('<option>').text(value).attr('value', key));
|
|
||||||
});
|
|
||||||
|
|
||||||
self.loadSettings();
|
|
||||||
|
|
||||||
var btnAP = self.form.find("label[for='ap']");
|
|
||||||
var btnClient = self.form.find("label[for='client']");
|
|
||||||
var btnRefresh = self.form.find("#refreshNetworks");
|
|
||||||
var btnConnect = self.form.find("#connectToNetwork");
|
|
||||||
var btnCreate = self.form.find("#createAP");
|
|
||||||
var networkSelector = self.form.find("#network");
|
|
||||||
self.apFieldSet = self.form.find("#apSettings");
|
|
||||||
self.clientFieldSet = self.form.find("#clientSettings");
|
|
||||||
self.btnRestoreSettings = self.form.find("#restoreSettings");
|
|
||||||
self.restoreStateField = self.form.find("#restoreState");
|
|
||||||
|
|
||||||
btnAP.on('touchstart mousedown',self.showAPSettings);
|
|
||||||
btnClient.on('touchstart mousedown',self.showClientSettings);
|
|
||||||
btnRefresh.on('touchstart mousedown',self.refreshNetworks);
|
|
||||||
btnConnect.on('touchstart mousedown',self.connectToNetwork);
|
|
||||||
btnCreate.on('touchstart mousedown',self.createAP);
|
|
||||||
networkSelector.change(self.networkSelectorChanged);
|
|
||||||
self.btnRestoreSettings.on('touchstart mousedown',self.resetSettings);
|
|
||||||
|
|
||||||
// update panel
|
|
||||||
var $updatePanelElement = self.form.find("#updatePanel");
|
|
||||||
self.updatePanel.init(wifiboxURL,$updatePanelElement);
|
|
||||||
|
|
||||||
// printer panel
|
|
||||||
var $printerPanelElement = self.form.find("#printerPanel");
|
|
||||||
self.printerPanel.init(wifiboxURL,$printerPanelElement);
|
|
||||||
self.printerPanel.fillForm = self.fillForm;
|
|
||||||
}
|
|
||||||
}).fail(function() {
|
|
||||||
console.log("FATAL ERROR: Settings:printer/listall failed");
|
|
||||||
});
|
|
||||||
}); //this.window.find
|
|
||||||
|
|
||||||
}; //this.init
|
|
||||||
|
|
||||||
this.openSettings = function() {
|
|
||||||
self.loadSettings(function() { // reload settings
|
|
||||||
settingsPopup.open();
|
|
||||||
});
|
|
||||||
};
|
|
||||||
|
|
||||||
// this.closeSettings = function(complete) {
|
|
||||||
// settingsPopup.close(complete);
|
|
||||||
// };
|
|
||||||
|
|
||||||
this.submitwindow = function(e) {
|
|
||||||
self.btnOK.attr("disabled",true);
|
|
||||||
e.preventDefault();
|
|
||||||
e.stopPropagation();
|
|
||||||
self.saveSettings(self.readForm(),function(success){
|
|
||||||
if(success) {
|
|
||||||
settingsPopup.close();
|
|
||||||
self.signin();
|
|
||||||
}
|
|
||||||
self.btnOK.removeAttr("disabled");
|
|
||||||
});
|
|
||||||
|
|
||||||
clearTimeout(self.retryRetrieveNetworkStatusDelay);
|
|
||||||
};
|
|
||||||
|
|
||||||
this.loadSettings = function(complete) {
|
|
||||||
if (!communicateWithWifibox) {
|
|
||||||
console.log(" communicateWithWifibox is false: settings aren't being loaded from wifibox...");
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
console.log("Settings:loadSettings() >> getting new data...");
|
|
||||||
|
|
||||||
$.ajax({
|
|
||||||
url: this.wifiboxURL + "/config/all",
|
|
||||||
dataType: 'json',
|
|
||||||
timeout: this.timeoutTime,
|
|
||||||
success: function(response){
|
|
||||||
console.log("Settings:loadSettings response: ",response);
|
|
||||||
settings = response.data;
|
|
||||||
console.log(" settings: ",settings);
|
|
||||||
self.fillForm(settings);
|
|
||||||
$(document).trigger(SettingsWindow.SETTINGS_LOADED);
|
|
||||||
if(complete) complete();
|
|
||||||
}
|
|
||||||
}).fail(function() {
|
|
||||||
console.log("Settings:loadSettings: failed");
|
|
||||||
clearTimeout(self.retryLoadSettingsDelay);
|
|
||||||
self.retryLoadSettingsDelay = setTimeout(function() { self.loadSettings(); },self.retryDelay); // retry after delay
|
|
||||||
});
|
|
||||||
|
|
||||||
this.refreshNetworks();
|
|
||||||
this.retrieveNetworkStatus(false);
|
|
||||||
};
|
|
||||||
|
|
||||||
this.fillForm = function(settings,form) {
|
|
||||||
if(!form) form = this.form; // if no form specified, fill whole form
|
|
||||||
|
|
||||||
//fill form with loaded settings
|
|
||||||
var selects = form.find("select");
|
|
||||||
selects.each( function(index,element) {
|
|
||||||
var elem = $(element);
|
|
||||||
elem.val(settings[elem.attr('name')]);
|
|
||||||
});
|
|
||||||
var inputs = form.find("input");
|
|
||||||
inputs.each( function(index,element) {
|
|
||||||
var elem = $(element);
|
|
||||||
//console.log("printer setting input: ",index,element.attr("type"),element.attr('name')); //,element);
|
|
||||||
switch(elem.attr("type")) {
|
|
||||||
case "text":
|
|
||||||
case "number":
|
|
||||||
elem.val(settings[elem.attr('name')]);
|
|
||||||
break;
|
|
||||||
case "checkbox":
|
|
||||||
elem.prop('checked', settings[elem.attr('name')]);
|
|
||||||
break;
|
|
||||||
}
|
|
||||||
});
|
|
||||||
var textareas = form.find("textarea");
|
|
||||||
textareas.each( function(index,element) {
|
|
||||||
var elem = $(element);
|
|
||||||
var value = settings[elem.attr('name')];
|
|
||||||
elem.val(value);
|
|
||||||
});
|
|
||||||
};
|
|
||||||
|
|
||||||
this.saveSettings = function(newSettings,complete) {
|
|
||||||
settings = newSettings; // store new settings in global settings
|
|
||||||
if (communicateWithWifibox) {
|
|
||||||
$.ajax({
|
|
||||||
url: self.wifiboxCGIBinURL + "/config",
|
|
||||||
type: "POST",
|
|
||||||
data: newSettings,
|
|
||||||
dataType: 'json',
|
|
||||||
timeout: self.saveSettingsTimeoutTime,
|
|
||||||
success: function(response){
|
|
||||||
console.log("Settings:saveSettings response: ",response);
|
|
||||||
if(response.status == "error") {
|
|
||||||
clearTimeout(self.retrySaveSettingsDelay);
|
|
||||||
self.retrySaveSettingsDelay = setTimeout(function() { self.saveSettings(settings,complete); },self.retryDelay); // retry after delay
|
|
||||||
} else {
|
|
||||||
var data = response.data;
|
|
||||||
var validation = data.validation;
|
|
||||||
self.clearValidationErrors();
|
|
||||||
var validated = true;
|
|
||||||
$.each(validation, function(key, val) {
|
|
||||||
if (val != "ok") {
|
|
||||||
console.log("ERROR: setting '" + key + "' not successfully set. Message: " + val);
|
|
||||||
self.displayValidationError(key,val);
|
|
||||||
validated = false;
|
|
||||||
}
|
|
||||||
});
|
|
||||||
settings.substituted_ssid = data.substituted_ssid;
|
|
||||||
if(complete) complete(validated);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}).fail(function() {
|
|
||||||
console.log("Settings:saveSettings: failed");
|
|
||||||
clearTimeout(self.retrySaveSettingsDelay);
|
|
||||||
self.retrySaveSettingsDelay = setTimeout(function() { self.saveSettings(settings,complete); },self.retryDelay); // retry after delay
|
|
||||||
});
|
|
||||||
}
|
|
||||||
};
|
|
||||||
|
|
||||||
this.resetSettings = function() {
|
|
||||||
console.log("resetSettings");
|
|
||||||
self.btnRestoreSettings.attr("disabled", true);
|
|
||||||
|
|
||||||
clearTimeout(self.restoredStateHideDelay);
|
|
||||||
|
|
||||||
self.setRestoreState("Restoring...");
|
|
||||||
|
|
||||||
//console.log(" self.wifiboxURL: ",self.wifiboxURL);
|
|
||||||
|
|
||||||
if (communicateWithWifibox) {
|
|
||||||
$.ajax({
|
|
||||||
url: self.wifiboxCGIBinURL + "/config/resetall",
|
|
||||||
type: "POST",
|
|
||||||
dataType: 'json',
|
|
||||||
timeout: this.timeoutTime,
|
|
||||||
success: function(response){
|
|
||||||
console.log("Settings:resetSettings response: ",response);
|
|
||||||
if(response.status == "error") {
|
|
||||||
clearTimeout(self.retryResetSettingsDelay);
|
|
||||||
self.retryResetSettingsDelay = setTimeout(function() { self.resetSettings(); },self.retryDelay); // retry after delay
|
|
||||||
} else {
|
|
||||||
settings = response.data;
|
|
||||||
console.log(" settings: ",settings);
|
|
||||||
self.fillForm(settings);
|
|
||||||
$(document).trigger(SettingsWindow.SETTINGS_LOADED);
|
|
||||||
|
|
||||||
self.btnRestoreSettings.removeAttr("disabled");
|
|
||||||
self.setRestoreState("Settings restored");
|
|
||||||
// auto hide status
|
|
||||||
clearTimeout(self.restoredStateHideDelay);
|
|
||||||
self.restoredStateHideDelay = setTimeout(function() { self.setRestoreState(""); },self.restoredStateHideDelayTime);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}).fail(function() {
|
|
||||||
console.log("Settings:resetSettings: failed");
|
|
||||||
clearTimeout(self.retryResetSettingsDelay);
|
|
||||||
self.retryResetSettingsDelay = setTimeout(function() { self.resetSettings(); },self.retryDelay); // retry after delay
|
|
||||||
});
|
|
||||||
}
|
|
||||||
};
|
|
||||||
|
|
||||||
this.setRestoreState = function(text) {
|
|
||||||
self.restoreStateField.html(text);
|
|
||||||
};
|
|
||||||
|
|
||||||
this.displayValidationError = function(key,msg) {
|
|
||||||
var formElement = self.form.find("[name|='"+key+"']");
|
|
||||||
formElement.addClass("error");
|
|
||||||
var errorMsg = "<p class='errorMsg'>"+msg+"</p>";
|
|
||||||
formElement.after(errorMsg);
|
|
||||||
};
|
|
||||||
|
|
||||||
this.clearValidationErrors = function() {
|
|
||||||
self.form.find(".errorMsg").remove();
|
|
||||||
self.form.find(".error").removeClass("error");
|
|
||||||
};
|
|
||||||
|
|
||||||
this.readForm = function() {
|
|
||||||
//console.log("SettingsWindow:readForm");
|
|
||||||
var settings = {};
|
|
||||||
var selects = self.form.find("select");
|
|
||||||
selects.each( function(index,element) {
|
|
||||||
var elem = $(element);
|
|
||||||
//var fieldName = elem.attr('name');
|
|
||||||
if(elem.attr('name') != "") {
|
|
||||||
settings[elem.attr('name')] = elem.val();
|
|
||||||
}
|
|
||||||
});
|
|
||||||
|
|
||||||
var inputs = self.form.find("input");
|
|
||||||
inputs.each( function(index,element) {
|
|
||||||
var elem = $(element);
|
|
||||||
if(elem.attr('name') != "") {
|
|
||||||
switch(elem.attr("type")) {
|
|
||||||
case "text":
|
|
||||||
case "number":
|
|
||||||
settings[elem.attr('name')] = elem.val();
|
|
||||||
break;
|
|
||||||
case "checkbox":
|
|
||||||
settings[elem.attr('name')] = elem.prop('checked');
|
|
||||||
break;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
});
|
|
||||||
|
|
||||||
var textareas = self.form.find("textarea");
|
|
||||||
textareas.each( function(index,element) {
|
|
||||||
var elem = $(element);
|
|
||||||
settings[elem.attr('name')] = elem.val();
|
|
||||||
});
|
|
||||||
//console.log(settings);
|
|
||||||
return settings;
|
|
||||||
};
|
|
||||||
|
|
||||||
this.signin = function() {
|
|
||||||
$.ajax({
|
|
||||||
url: self.wifiboxCGIBinURL + "/network/signin",
|
|
||||||
type: "GET",
|
|
||||||
dataType: 'json',
|
|
||||||
timeout: self.timeoutTime,
|
|
||||||
success: function(response){
|
|
||||||
console.log("Settings:signin response: ",response);
|
|
||||||
}
|
|
||||||
}).fail(function() {
|
|
||||||
console.log("Settings:signin: failed");
|
|
||||||
});
|
|
||||||
};
|
|
||||||
|
|
||||||
this.downloadlogs = function() {
|
|
||||||
window.location.href = self.wifiboxURL + "/info/logfiles";
|
|
||||||
};
|
|
||||||
|
|
||||||
this.downloadGcode = function() {
|
|
||||||
var gcode = generate_gcode();
|
|
||||||
if (gcode!=undefined) {
|
|
||||||
var blob = new Blob([gcode.join("\n")], {type: "text/plain;charset=utf-8"});
|
|
||||||
saveAs(blob, "doodle3d.gcode");
|
|
||||||
}
|
|
||||||
};
|
|
||||||
|
|
||||||
this.downloadSvg = function() {
|
|
||||||
var svg = saveToSvg();
|
|
||||||
if (svg!=undefined) {
|
|
||||||
var blob = new Blob([svg], {type: "text/plain;charset=utf-8"});
|
|
||||||
saveAs(blob, "doodle3d.svg");
|
|
||||||
}
|
|
||||||
};
|
|
||||||
|
|
||||||
/*
|
|
||||||
* Networks ui
|
|
||||||
*/
|
|
||||||
this.showAPSettings = function() {
|
|
||||||
self.apFieldSet.show();
|
|
||||||
self.clientFieldSet.hide();
|
|
||||||
};
|
|
||||||
|
|
||||||
this.showClientSettings = function() {
|
|
||||||
self.clientFieldSet.show();
|
|
||||||
self.apFieldSet.hide();
|
|
||||||
};
|
|
||||||
|
|
||||||
this.refreshNetworks = function() {
|
|
||||||
console.log("Settings:refreshNetworks");
|
|
||||||
|
|
||||||
if (communicateWithWifibox) {
|
|
||||||
$.ajax({
|
|
||||||
url: self.wifiboxURL + "/network/scan",
|
|
||||||
type: "GET",
|
|
||||||
dataType: 'json',
|
|
||||||
timeout: self.timeoutTime,
|
|
||||||
success: function(response){
|
|
||||||
console.log("Settings:refreshNetworks response: ",response);
|
|
||||||
if(response.status == "error") {
|
|
||||||
//clearTimeout(self.retrySaveSettingsDelay);
|
|
||||||
//self.retrySaveSettingsDelay = setTimeout(function() { self.saveSettings() },self.retryDelay); // retry after delay
|
|
||||||
} else {
|
|
||||||
var networks = response.data.networks;
|
|
||||||
self.networks = {};
|
|
||||||
var foundCurrentNetwork = false;
|
|
||||||
var networkSelector = self.form.find("#network");
|
|
||||||
networkSelector.empty();
|
|
||||||
networkSelector.append(
|
|
||||||
$("<option></option>").val(SettingsWindow.NOT_CONNECTED).html("not connected")
|
|
||||||
);
|
|
||||||
$.each(networks, function(index,element) {
|
|
||||||
if(element.ssid == self.currentNetwork) {
|
|
||||||
foundCurrentNetwork = true;
|
|
||||||
}
|
|
||||||
networkSelector.append(
|
|
||||||
$("<option></option>").val(element.ssid).html(element.ssid)
|
|
||||||
);
|
|
||||||
self.networks[element.ssid] = element;
|
|
||||||
});
|
|
||||||
if(foundCurrentNetwork) {
|
|
||||||
networkSelector.val(self.currentNetwork);
|
|
||||||
self.selectNetwork(self.currentNetwork);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}).fail(function() {
|
|
||||||
|
|
||||||
});
|
|
||||||
}
|
|
||||||
};
|
|
||||||
|
|
||||||
this.retrieveNetworkStatus = function(connecting) {
|
|
||||||
//console.log("Settings:retrieveNetworkStatus");
|
|
||||||
if (communicateWithWifibox) {
|
|
||||||
$.ajax({
|
|
||||||
url: self.wifiboxURL + "/network/status",
|
|
||||||
type: "GET",
|
|
||||||
dataType: 'json',
|
|
||||||
timeout: self.timeoutTime,
|
|
||||||
success: function(response){
|
|
||||||
console.log("Settings:retrieveNetworkStatus response: ",response);
|
|
||||||
if(response.status == "error") {
|
|
||||||
|
|
||||||
} else {
|
|
||||||
var data = response.data;
|
|
||||||
|
|
||||||
if(typeof data.status === 'string') {
|
|
||||||
data.status = parseInt(data.status);
|
|
||||||
}
|
|
||||||
//console.log(" data.status: ",data.status,data.statusMessage);
|
|
||||||
|
|
||||||
// Determine which network settings to show
|
|
||||||
switch(data.status) {
|
|
||||||
case SettingsWindow.API_NOT_CONNECTED:
|
|
||||||
//console.log(" not connected & not a access point");
|
|
||||||
self.apFieldSet.show();
|
|
||||||
self.clientFieldSet.show();
|
|
||||||
|
|
||||||
self.networkMode = SettingsWindow.NETWORK_MODE_NEITHER;
|
|
||||||
break;
|
|
||||||
case SettingsWindow.API_CONNECTING_FAILED:
|
|
||||||
case SettingsWindow.API_CONNECTING:
|
|
||||||
case SettingsWindow.API_CONNECTED:
|
|
||||||
//console.log(" client mode");
|
|
||||||
self.form.find("#client").prop('checked',true);
|
|
||||||
|
|
||||||
self.apFieldSet.hide();
|
|
||||||
self.clientFieldSet.show();
|
|
||||||
|
|
||||||
if(data.status == SettingsWindow.API_CONNECTED) {
|
|
||||||
var networkSelector = self.form.find("#network");
|
|
||||||
networkSelector.val(data.ssid);
|
|
||||||
|
|
||||||
self.currentNetwork = data.ssid;
|
|
||||||
self.currentLocalIP = data.localip;
|
|
||||||
self.selectNetwork(data.ssid);
|
|
||||||
} else {
|
|
||||||
self.currentLocalIP = "";
|
|
||||||
}
|
|
||||||
self.networkMode = SettingsWindow.NETWORK_MODE_CLIENT;
|
|
||||||
break;
|
|
||||||
case SettingsWindow.API_CREATING:
|
|
||||||
case SettingsWindow.API_CREATED:
|
|
||||||
//console.log(" access point mode");
|
|
||||||
self.form.find("#ap").prop('checked',true);
|
|
||||||
|
|
||||||
self.apFieldSet.show();
|
|
||||||
self.clientFieldSet.hide();
|
|
||||||
|
|
||||||
self.currentNetwork = undefined;
|
|
||||||
self.selectNetwork(SettingsWindow.NOT_CONNECTED);
|
|
||||||
var networkSelector = self.form.find("#network");
|
|
||||||
networkSelector.val(SettingsWindow.NOT_CONNECTED);
|
|
||||||
|
|
||||||
if(data.ssid && data.status == SettingsWindow.API_CREATED) {
|
|
||||||
self.currentAP = data.ssid;
|
|
||||||
}
|
|
||||||
self.networkMode = SettingsWindow.NETWORK_MODE_ACCESS_POINT;
|
|
||||||
break;
|
|
||||||
}
|
|
||||||
self.updatePanel.setNetworkMode(self.networkMode);
|
|
||||||
|
|
||||||
// update status message
|
|
||||||
switch(data.status) {
|
|
||||||
case SettingsWindow.API_CONNECTING_FAILED:
|
|
||||||
self.setClientModeState(SettingsWindow.CONNECTING_FAILED,data.statusMessage);
|
|
||||||
self.setAPModeState(SettingsWindow.NO_AP,"");
|
|
||||||
break;
|
|
||||||
case SettingsWindow.API_NOT_CONNECTED:
|
|
||||||
self.setClientModeState(SettingsWindow.NOT_CONNECTED,"");
|
|
||||||
self.setAPModeState(SettingsWindow.NO_AP,"");
|
|
||||||
break;
|
|
||||||
case SettingsWindow.API_CONNECTING:
|
|
||||||
self.setClientModeState(SettingsWindow.CONNECTING,"");
|
|
||||||
self.setAPModeState(SettingsWindow.NO_AP,"");
|
|
||||||
break;
|
|
||||||
case SettingsWindow.API_CONNECTED:
|
|
||||||
self.setClientModeState(SettingsWindow.CONNECTED,"");
|
|
||||||
self.setAPModeState(SettingsWindow.NO_AP,"");
|
|
||||||
break;
|
|
||||||
case SettingsWindow.API_CREATING:
|
|
||||||
self.setClientModeState(SettingsWindow.NOT_CONNECTED,"");
|
|
||||||
self.setAPModeState(SettingsWindow.CREATING_AP,"");
|
|
||||||
break;
|
|
||||||
case SettingsWindow.API_CREATED:
|
|
||||||
self.setClientModeState(SettingsWindow.NOT_CONNECTED,"");
|
|
||||||
self.setAPModeState(SettingsWindow.AP,"");
|
|
||||||
break;
|
|
||||||
}
|
|
||||||
|
|
||||||
// Keep checking for updates?
|
|
||||||
if(connecting) {
|
|
||||||
switch(data.status) {
|
|
||||||
case SettingsWindow.API_CONNECTING:
|
|
||||||
case SettingsWindow.API_CREATING:
|
|
||||||
clearTimeout(self.retryRetrieveNetworkStatusDelay);
|
|
||||||
self.retryRetrieveNetworkStatusDelay = setTimeout(function() { self.retrieveNetworkStatus(connecting); },self.retryRetrieveNetworkStatusDelayTime); // retry after delay
|
|
||||||
break;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}).fail(function() {
|
|
||||||
console.log("Settings:retrieveNetworkStatus: failed");
|
|
||||||
clearTimeout(self.retryRetrieveNetworkStatusDelay);
|
|
||||||
self.retryRetrieveNetworkStatusDelay = setTimeout(function() { self.retrieveNetworkStatus(connecting); },self.retryDelay); // retry after delay
|
|
||||||
});
|
|
||||||
}
|
|
||||||
};
|
|
||||||
|
|
||||||
this.networkSelectorChanged = function(e) {
|
|
||||||
var selectedOption = $(this).find("option:selected");
|
|
||||||
self.selectNetwork(selectedOption.val());
|
|
||||||
};
|
|
||||||
|
|
||||||
this.selectNetwork = function(ssid) {
|
|
||||||
console.log("select network: ",ssid);
|
|
||||||
if(ssid == "") return;
|
|
||||||
console.log(" checked");
|
|
||||||
this.selectedNetwork = ssid;
|
|
||||||
if(this.networks == undefined || ssid == SettingsWindow.NOT_CONNECTED) {
|
|
||||||
this.hideWiFiPassword();
|
|
||||||
} else {
|
|
||||||
var network = this.networks[ssid];
|
|
||||||
if(network.encryption == "none") {
|
|
||||||
this.hideWiFiPassword();
|
|
||||||
} else {
|
|
||||||
this.showWiFiPassword();
|
|
||||||
}
|
|
||||||
this.form.find("#password").val("");
|
|
||||||
}
|
|
||||||
};
|
|
||||||
|
|
||||||
this.showWiFiPassword = function() {
|
|
||||||
this.form.find("#passwordLabel").show();
|
|
||||||
this.form.find("#password").show();
|
|
||||||
};
|
|
||||||
|
|
||||||
this.hideWiFiPassword = function() {
|
|
||||||
this.form.find("#passwordLabel").hide();
|
|
||||||
this.form.find("#password").hide();
|
|
||||||
};
|
|
||||||
|
|
||||||
this.setClientModeState = function(state,msg) {
|
|
||||||
var field = this.form.find("#clientModeState");
|
|
||||||
var btnConnect = self.form.find("#connectToNetwork");
|
|
||||||
switch(state) {
|
|
||||||
case SettingsWindow.NOT_CONNECTED:
|
|
||||||
btnConnect.removeAttr("disabled");
|
|
||||||
field.html("Not connected");
|
|
||||||
break;
|
|
||||||
case SettingsWindow.CONNECTED:
|
|
||||||
btnConnect.removeAttr("disabled");
|
|
||||||
|
|
||||||
var fieldText = "Connected to: <b>"+this.currentNetwork+"</b>.";
|
|
||||||
if(this.currentLocalIP != undefined && this.currentLocalIP != "") {
|
|
||||||
var a = "<a href='http://"+this.currentLocalIP+"' target='_black'>"+this.currentLocalIP+"</a>";
|
|
||||||
fieldText += " (IP: "+a+")";
|
|
||||||
}
|
|
||||||
field.html(fieldText);
|
|
||||||
break;
|
|
||||||
case SettingsWindow.CONNECTING:
|
|
||||||
btnConnect.attr("disabled", true);
|
|
||||||
field.html("Connecting... Reconnect by connecting your device to <b>"+this.selectedNetwork+"</b> and going to <a href='http://connect.doodle3d.com'>connect.doodle3d.com</a>");
|
|
||||||
break;
|
|
||||||
case SettingsWindow.CONNECTING_FAILED:
|
|
||||||
btnConnect.removeAttr("disabled");
|
|
||||||
field.html(msg);
|
|
||||||
break;
|
|
||||||
}
|
|
||||||
this.clientModeState = state;
|
|
||||||
};
|
|
||||||
|
|
||||||
this.setAPModeState = function(state,msg) {
|
|
||||||
var field = this.form.find("#apModeState");
|
|
||||||
var btnCreate = this.form.find("#createAP");
|
|
||||||
switch(state) {
|
|
||||||
case SettingsWindow.NO_AP:
|
|
||||||
btnCreate.removeAttr("disabled");
|
|
||||||
field.html("Not currently a access point");
|
|
||||||
break;
|
|
||||||
case SettingsWindow.AP:
|
|
||||||
btnCreate.removeAttr("disabled");
|
|
||||||
field.html("Is access point: <b>"+this.currentAP+"</b>");
|
|
||||||
break;
|
|
||||||
case SettingsWindow.CREATING_AP:
|
|
||||||
btnCreate.attr("disabled", true);
|
|
||||||
field.html("Creating access point... Reconnect by connecting your device to <b>"+settings.substituted_ssid+"</b> and going to <a href='http://draw.doodle3d.com'>draw.doodle3d.com</a>");
|
|
||||||
break;
|
|
||||||
}
|
|
||||||
this.apModeState = state;
|
|
||||||
};
|
|
||||||
|
|
||||||
this.connectToNetwork = function() {
|
|
||||||
console.log("connectToNetwork");
|
|
||||||
if(self.selectedNetwork == undefined) return;
|
|
||||||
var postData = {
|
|
||||||
ssid:self.selectedNetwork,
|
|
||||||
phrase:self.form.find("#password").val(),
|
|
||||||
recreate:true
|
|
||||||
};
|
|
||||||
|
|
||||||
console.log(" postData: ",postData);
|
|
||||||
if (communicateWithWifibox) {
|
|
||||||
|
|
||||||
// save network related settings and on complete, connect to network
|
|
||||||
self.saveSettings(self.readForm(),function(success) {
|
|
||||||
if(!success) return;
|
|
||||||
$.ajax({
|
|
||||||
url: self.wifiboxCGIBinURL + "/network/associate",
|
|
||||||
type: "POST",
|
|
||||||
data: postData,
|
|
||||||
dataType: 'json',
|
|
||||||
timeout: self.timeoutTime,
|
|
||||||
success: function(response){
|
|
||||||
console.log("Settings:connectToNetwork response: ",response);
|
|
||||||
}
|
|
||||||
}).fail(function() {
|
|
||||||
console.log("Settings:connectToNetwork: timeout (normal behavior)");
|
|
||||||
//clearTimeout(self.retrySaveSettingsDelay);
|
|
||||||
//self.retrySaveSettingsDelay = setTimeout(function() { self.saveSettings() },self.retryDelay); // retry after delay
|
|
||||||
});
|
|
||||||
});
|
|
||||||
}
|
|
||||||
self.setClientModeState(SettingsWindow.CONNECTING,"");
|
|
||||||
|
|
||||||
// after switching wifi network or creating a access point we delay the status retrieval
|
|
||||||
// because the webserver needs time to switch
|
|
||||||
clearTimeout(self.retrieveNetworkStatusDelay);
|
|
||||||
self.retrieveNetworkStatusDelay = setTimeout(function() { self.retrieveNetworkStatus(true); },self.retrieveNetworkStatusDelayTime);
|
|
||||||
};
|
|
||||||
|
|
||||||
this.createAP = function() {
|
|
||||||
console.log("createAP");
|
|
||||||
if (communicateWithWifibox) {
|
|
||||||
|
|
||||||
// save network related settings and on complete, create access point
|
|
||||||
self.saveSettings(self.readForm(),function(success) {
|
|
||||||
if(!success) return;
|
|
||||||
self.setAPModeState(SettingsWindow.CREATING_AP); // get latest substituted ssid
|
|
||||||
$.ajax({
|
|
||||||
url: self.wifiboxCGIBinURL + "/network/openap",
|
|
||||||
type: "POST",
|
|
||||||
dataType: 'json',
|
|
||||||
timeout: self.timeoutTime,
|
|
||||||
success: function(response){
|
|
||||||
console.log("Settings:createAP response: ",response);
|
|
||||||
}
|
|
||||||
}).fail(function() {
|
|
||||||
console.log("Settings:createAP: timeout (normal behavior)");
|
|
||||||
//clearTimeout(self.retrySaveSettingsDelay);
|
|
||||||
//self.retrySaveSettingsDelay = setTimeout(function() { self.saveSettings() },self.retryDelay); // retry after delay
|
|
||||||
});
|
|
||||||
|
|
||||||
self.setAPModeState(SettingsWindow.CREATING_AP,"");
|
|
||||||
|
|
||||||
// after switching wifi network or creating a access point we delay the status retrieval
|
|
||||||
// because the webserver needs time to switch
|
|
||||||
clearTimeout(self.retrieveNetworkStatusDelay);
|
|
||||||
self.retrieveNetworkStatusDelay = setTimeout(function() { self.retrieveNetworkStatus(true); },self.retrieveNetworkStatusDelayTime);
|
|
||||||
});
|
|
||||||
}
|
|
||||||
};
|
|
||||||
}
|
|
||||||
|
|
||||||
/*************************
|
|
||||||
*
|
|
||||||
*
|
|
||||||
* FROM DOODLE3D.INI
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
//TODO: find all references to these variables, replace them and finally remove these.
|
|
||||||
var objectHeight = 20;
|
|
||||||
var layerHeight = .2;
|
|
||||||
//var wallThickness = .5;
|
|
||||||
//var hop = 0;
|
|
||||||
//var speed = 70;
|
|
||||||
//var travelSpeed = 200;
|
|
||||||
var enableTraveling = true;
|
|
||||||
//var filamentThickness = 2.89;
|
|
||||||
var minScale = .3;
|
|
||||||
var maxScale = 1;
|
|
||||||
var shape = "%";
|
|
||||||
var twists = 0;
|
|
||||||
//var useSubLayers = true;
|
|
||||||
//var debug = false; // debug moved to main.js
|
|
||||||
var loglevel = 2;
|
|
||||||
//var zOffset = 0;
|
|
||||||
var serverport = 8888;
|
|
||||||
var autoLoadImage = "hand.txt";
|
|
||||||
var loadOffset = [0, 0]; // x en y ?
|
|
||||||
var showWarmUp = true;
|
|
||||||
var loopAlways = false;
|
|
||||||
var firstLayerSlow = true;
|
|
||||||
var useSubpathColors = false;
|
|
||||||
var autoWarmUp = true;
|
|
||||||
//var maxObjectHeight = 150;
|
|
||||||
var maxScaleDifference = .1;
|
|
||||||
var frameRate = 60;
|
|
||||||
var quitOnEscape = true;
|
|
||||||
var screenToMillimeterScale = .3; // 0.3
|
|
||||||
//var targetTemperature = 220;
|
|
||||||
//var simplifyiterations = 10;
|
|
||||||
//var simplifyminNumPoints = 15;
|
|
||||||
//var simplifyminDistance = 3;
|
|
||||||
//var retractionspeed = 50;
|
|
||||||
//var retractionminDistance = 5;
|
|
||||||
//var retractionamount = 3;
|
|
||||||
var sideis3D = true;
|
|
||||||
var sidevisible = true;
|
|
||||||
var sidebounds = [900, 210, 131, 390];
|
|
||||||
var sideborder = [880, 169, 2, 471];
|
|
||||||
var windowbounds = [0, 0, 800, 500];
|
|
||||||
var windowcenter = true;
|
|
||||||
var windowfullscreen = false;
|
|
||||||
var autoWarmUpCommand = "M104 S230";
|
|
||||||
//var checkTemperatureInterval = 3;
|
|
||||||
var autoWarmUpDelay = 3;
|
|
@ -37,7 +37,7 @@ function Thermometer() {
|
|||||||
];
|
];
|
||||||
|
|
||||||
this.init = function(targCanvas, targCanvasContainer) {
|
this.init = function(targCanvas, targCanvasContainer) {
|
||||||
console.log("Thermometer.init()");
|
//console.log("Thermometer.init()");
|
||||||
|
|
||||||
this.$container = targCanvasContainer;
|
this.$container = targCanvasContainer;
|
||||||
|
|
||||||
@ -48,7 +48,7 @@ function Thermometer() {
|
|||||||
|
|
||||||
var self = this;
|
var self = this;
|
||||||
this.thermoOverlayImg.onload = function() {
|
this.thermoOverlayImg.onload = function() {
|
||||||
console.log("canvasThermoOverlay img loaded");
|
//console.log("canvasThermoOverlay img loaded");
|
||||||
self.isInitted = true;
|
self.isInitted = true;
|
||||||
self.update(self.currentTemperature, self.targetTemperature);
|
self.update(self.currentTemperature, self.targetTemperature);
|
||||||
};
|
};
|
||||||
|
99
js/api/ConfigAPI.js
Normal file
99
js/api/ConfigAPI.js
Normal file
@ -0,0 +1,99 @@
|
|||||||
|
/*
|
||||||
|
* This file is part of the Doodle3D project (http://doodle3d.com).
|
||||||
|
*
|
||||||
|
* Copyright (c) 2013, Doodle3D
|
||||||
|
* This software is licensed under the terms of the GNU GPL v2 or later.
|
||||||
|
* See file LICENSE.txt or visit http://www.gnu.org/licenses/gpl.html for full license details.
|
||||||
|
*/
|
||||||
|
|
||||||
|
function ConfigAPI() {
|
||||||
|
|
||||||
|
var _wifiboxURL;
|
||||||
|
var _wifiboxCGIBinURL;
|
||||||
|
var _timeoutTime = 3000;
|
||||||
|
var _saveSettingsTimeoutTime = 8000;
|
||||||
|
|
||||||
|
var _self = this;
|
||||||
|
|
||||||
|
this.init = function(wifiboxURL,wifiboxCGIBinURL) {
|
||||||
|
//console.log("ConfigAPI:init");
|
||||||
|
|
||||||
|
_wifiboxURL = wifiboxURL;
|
||||||
|
_wifiboxCGIBinURL = wifiboxCGIBinURL;
|
||||||
|
}
|
||||||
|
this.loadAll = function(completeHandler,failedHandler) {
|
||||||
|
//console.log("ConfigAPI:loadAll");
|
||||||
|
$.ajax({
|
||||||
|
url: _wifiboxURL + "/config/all",
|
||||||
|
type: "GET",
|
||||||
|
dataType: 'json',
|
||||||
|
timeout: _timeoutTime,
|
||||||
|
success: function(response){
|
||||||
|
if(response.status == "error" || response.status == "fail") {
|
||||||
|
if(failedHandler) failedHandler(response);
|
||||||
|
} else {
|
||||||
|
completeHandler(response.data);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}).fail(function() {
|
||||||
|
if(failedHandler) failedHandler();
|
||||||
|
});
|
||||||
|
};
|
||||||
|
this.load = function(targetSettings,completeHandler,failedHandler) {
|
||||||
|
//console.log("ConfigAPI:load");
|
||||||
|
$.ajax({
|
||||||
|
url: _wifiboxURL + "/config/",
|
||||||
|
type: "GET",
|
||||||
|
dataType: 'json',
|
||||||
|
data: targetSettings,
|
||||||
|
timeout: _timeoutTime,
|
||||||
|
success: function(response){
|
||||||
|
if(response.status == "error" || response.status == "fail") {
|
||||||
|
if(failedHandler) failedHandler(response);
|
||||||
|
} else {
|
||||||
|
completeHandler(response.data);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}).fail(function() {
|
||||||
|
if(failedHandler) failedHandler();
|
||||||
|
});
|
||||||
|
};
|
||||||
|
this.save = function(newSettings,completeHandler,failedHandler) {
|
||||||
|
//console.log("ConfigAPI:save");
|
||||||
|
$.ajax({
|
||||||
|
url: _wifiboxCGIBinURL + "/config",
|
||||||
|
type: "POST",
|
||||||
|
data: newSettings,
|
||||||
|
dataType: 'json',
|
||||||
|
timeout: _saveSettingsTimeoutTime,
|
||||||
|
success: function(response){
|
||||||
|
//console.log("ConfigAPI:save response: ",response);
|
||||||
|
if(response.status == "error" || response.status == "fail") {
|
||||||
|
if(failedHandler) failedHandler(response);
|
||||||
|
} else {
|
||||||
|
completeHandler(response.data);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}).fail(function() {
|
||||||
|
if(failedHandler) failedHandler();
|
||||||
|
});
|
||||||
|
};
|
||||||
|
this.resetAll = function(completeHandler,failedHandler) {
|
||||||
|
//console.log("ConfigAPI:resetAll");
|
||||||
|
$.ajax({
|
||||||
|
url: _wifiboxCGIBinURL + "/config/resetall",
|
||||||
|
type: "POST",
|
||||||
|
dataType: 'json',
|
||||||
|
timeout: _timeoutTime,
|
||||||
|
success: function(response){
|
||||||
|
if(response.status == "error" || response.status == "fail") {
|
||||||
|
if(failedHandler) failedHandler(response);
|
||||||
|
} else {
|
||||||
|
completeHandler(response.data);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}).fail(function() {
|
||||||
|
if(failedHandler) failedHandler();
|
||||||
|
});
|
||||||
|
};
|
||||||
|
}
|
122
js/api/NetworkAPI.js
Normal file
122
js/api/NetworkAPI.js
Normal file
@ -0,0 +1,122 @@
|
|||||||
|
/*
|
||||||
|
* This file is part of the Doodle3D project (http://doodle3d.com).
|
||||||
|
*
|
||||||
|
* Copyright (c) 2013, Doodle3D
|
||||||
|
* This software is licensed under the terms of the GNU GPL v2 or later.
|
||||||
|
* See file LICENSE.txt or visit http://www.gnu.org/licenses/gpl.html for full license details.
|
||||||
|
*/
|
||||||
|
function NetworkAPI() {
|
||||||
|
|
||||||
|
NetworkAPI.STATUS = {
|
||||||
|
CONNECTING_FAILED: -1,
|
||||||
|
NOT_CONNECTED: 0,
|
||||||
|
CONNECTING: 1,
|
||||||
|
CONNECTED: 2,
|
||||||
|
CREATING: 3,
|
||||||
|
CREATED: 4
|
||||||
|
};
|
||||||
|
|
||||||
|
var _wifiboxURL;
|
||||||
|
var _wifiboxCGIBinURL;
|
||||||
|
var _timeoutTime = 3000;
|
||||||
|
|
||||||
|
var _self = this;
|
||||||
|
|
||||||
|
this.init = function(wifiboxURL,wifiboxCGIBinURL) {
|
||||||
|
//console.log("NetworkAPI:init");
|
||||||
|
//console.log(" wifiboxURL: ",wifiboxURL);
|
||||||
|
//console.log(" wifiboxCGIBinURL: ",wifiboxCGIBinURL);
|
||||||
|
_wifiboxURL = wifiboxURL;
|
||||||
|
_wifiboxCGIBinURL = wifiboxCGIBinURL;
|
||||||
|
}
|
||||||
|
this.scan = function(completeHandler,failedHandler) {
|
||||||
|
//console.log("NetworkAPI:scan");
|
||||||
|
$.ajax({
|
||||||
|
url: _wifiboxURL + "/network/scan",
|
||||||
|
type: "GET",
|
||||||
|
dataType: 'json',
|
||||||
|
timeout: _timeoutTime,
|
||||||
|
success: function(response){
|
||||||
|
//console.log("NetworkAPI:scan response: ",response);
|
||||||
|
if(response.status == "error" || response.status == "fail") {
|
||||||
|
//console.log("NetworkAPI:scan failed: ",response);
|
||||||
|
if(failedHandler) failedHandler(response);
|
||||||
|
} else {
|
||||||
|
completeHandler(response.data);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}).fail(function() {
|
||||||
|
//console.log("NetworkAPI:scan failed");
|
||||||
|
if(failedHandler) failedHandler();
|
||||||
|
});
|
||||||
|
};
|
||||||
|
this.status = function(completeHandler,failedHandler) {
|
||||||
|
//console.log("NetworkAPI:status");
|
||||||
|
$.ajax({
|
||||||
|
url: _wifiboxURL + "/network/status",
|
||||||
|
type: "GET",
|
||||||
|
dataType: 'json',
|
||||||
|
timeout: _timeoutTime,
|
||||||
|
success: function(response){
|
||||||
|
//console.log("NetworkAPI:status response: ",response);
|
||||||
|
if(response.status == "error" || response.status == "fail") {
|
||||||
|
if(failedHandler) failedHandler(response);
|
||||||
|
} else {
|
||||||
|
completeHandler(response.data);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}).fail(function() {
|
||||||
|
if(failedHandler) failedHandler();
|
||||||
|
});
|
||||||
|
};
|
||||||
|
|
||||||
|
this.associate = function(ssid,phrase,recreate) {
|
||||||
|
//console.log("NetworkAPI:associate");
|
||||||
|
var postData = {
|
||||||
|
ssid:ssid,
|
||||||
|
phrase:phrase,
|
||||||
|
recreate:recreate
|
||||||
|
};
|
||||||
|
$.ajax({
|
||||||
|
url: _wifiboxCGIBinURL + "/network/associate",
|
||||||
|
type: "POST",
|
||||||
|
data: postData,
|
||||||
|
dataType: 'json',
|
||||||
|
timeout: _timeoutTime,
|
||||||
|
success: function(response){
|
||||||
|
//console.log("NetworkAPI:associate response: ",response);
|
||||||
|
}
|
||||||
|
}).fail(function() {
|
||||||
|
//console.log("NetworkAPI:associate: timeout (normal behavior)");
|
||||||
|
});
|
||||||
|
};
|
||||||
|
|
||||||
|
this.openAP = function() {
|
||||||
|
//console.log("NetworkAPI:openAP");
|
||||||
|
$.ajax({
|
||||||
|
url: _wifiboxCGIBinURL + "/network/openap",
|
||||||
|
type: "POST",
|
||||||
|
dataType: 'json',
|
||||||
|
timeout: _timeoutTime,
|
||||||
|
success: function(response){
|
||||||
|
//console.log("NetworkAPI:openAP response: ",response);
|
||||||
|
}
|
||||||
|
}).fail(function() {
|
||||||
|
//console.log("NetworkAPI:openAP: timeout (normal behavior)");
|
||||||
|
});
|
||||||
|
};
|
||||||
|
|
||||||
|
this.signin = function() {
|
||||||
|
$.ajax({
|
||||||
|
url: _wifiboxCGIBinURL + "/network/signin",
|
||||||
|
type: "GET",
|
||||||
|
dataType: 'json',
|
||||||
|
timeout: _timeoutTime,
|
||||||
|
success: function(response){
|
||||||
|
//console.log("NetworkAPI:signin response: ",response);
|
||||||
|
}
|
||||||
|
}).fail(function() {
|
||||||
|
//console.log("NetworkAPI:signin: failed");
|
||||||
|
});
|
||||||
|
};
|
||||||
|
}
|
46
js/api/PrinterAPI.js
Normal file
46
js/api/PrinterAPI.js
Normal file
@ -0,0 +1,46 @@
|
|||||||
|
/*
|
||||||
|
* This file is part of the Doodle3D project (http://doodle3d.com).
|
||||||
|
*
|
||||||
|
* Copyright (c) 2013, Doodle3D
|
||||||
|
* This software is licensed under the terms of the GNU GPL v2 or later.
|
||||||
|
* See file LICENSE.txt or visit http://www.gnu.org/licenses/gpl.html for full license details.
|
||||||
|
*/
|
||||||
|
function PrinterAPI() {
|
||||||
|
|
||||||
|
var _wifiboxURL;
|
||||||
|
var _wifiboxCGIBinURL;
|
||||||
|
var _timeoutTime = 3000;
|
||||||
|
|
||||||
|
var _self = this;
|
||||||
|
|
||||||
|
this.init = function(wifiboxURL,wifiboxCGIBinURL) {
|
||||||
|
//console.log("PrinterAPI:init");
|
||||||
|
//console.log(" wifiboxURL: ",wifiboxURL);
|
||||||
|
//console.log(" wifiboxCGIBinURL: ",wifiboxCGIBinURL);
|
||||||
|
_wifiboxURL = wifiboxURL;
|
||||||
|
_wifiboxCGIBinURL = wifiboxCGIBinURL;
|
||||||
|
}
|
||||||
|
|
||||||
|
this.listAll = function(completeHandler,failedHandler) {
|
||||||
|
//console.log("PrinterAPI:listAll");
|
||||||
|
//console.log(" _wifiboxURL: ",_wifiboxURL);
|
||||||
|
$.ajax({
|
||||||
|
url: _wifiboxURL + "/printer/listall",
|
||||||
|
type: "GET",
|
||||||
|
dataType: 'json',
|
||||||
|
timeout: _timeoutTime,
|
||||||
|
success: function(response){
|
||||||
|
//console.log("PrinterAPI response: ",response);
|
||||||
|
if(response.status == "error" || response.status == "fail") {
|
||||||
|
//console.log("PrinterAPI:listAll failed: ",response);
|
||||||
|
if(failedHandler) failedHandler(response);
|
||||||
|
} else {
|
||||||
|
completeHandler(response.data);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}).fail(function() {
|
||||||
|
//console.log("PrinterAPI:listAll failed");
|
||||||
|
if(failedHandler) failedHandler();
|
||||||
|
});
|
||||||
|
};
|
||||||
|
}
|
@ -33,7 +33,7 @@ function doOnResize() {
|
|||||||
}
|
}
|
||||||
|
|
||||||
function initLayouting() {
|
function initLayouting() {
|
||||||
console.log("f:initLayouting()");
|
//console.log("f:initLayouting()");
|
||||||
|
|
||||||
$drawAreaContainer = $("#drawareacontainer");
|
$drawAreaContainer = $("#drawareacontainer");
|
||||||
|
|
||||||
@ -49,10 +49,10 @@ function initLayouting() {
|
|||||||
$drawAreaContainer.show();
|
$drawAreaContainer.show();
|
||||||
|
|
||||||
// window.innerHeight
|
// window.innerHeight
|
||||||
console.log("window.innerHeight: " + window.innerHeight);
|
//console.log("window.innerHeight: " + window.innerHeight);
|
||||||
console.log("window.innerWidth: " + window.innerWidth);
|
//console.log("window.innerWidth: " + window.innerWidth);
|
||||||
console.log("$drawAreaContainer.innerHeight(): " + $drawAreaContainer.innerHeight());
|
//console.log("$drawAreaContainer.innerHeight(): " + $drawAreaContainer.innerHeight());
|
||||||
console.log("$drawAreaContainer.offset().top: " + $drawAreaContainer.offset().top);
|
//console.log("$drawAreaContainer.offset().top: " + $drawAreaContainer.offset().top);
|
||||||
|
|
||||||
// timeout because it SEEMS to be beneficial for initting the layout
|
// timeout because it SEEMS to be beneficial for initting the layout
|
||||||
// 2013-09-18 seems beneficial since when?
|
// 2013-09-18 seems beneficial since when?
|
||||||
|
160
js/settings/FormPanel.js
Normal file
160
js/settings/FormPanel.js
Normal file
@ -0,0 +1,160 @@
|
|||||||
|
/*
|
||||||
|
* This file is part of the Doodle3D project (http://doodle3d.com).
|
||||||
|
*
|
||||||
|
* Copyright (c) 2013, Doodle3D
|
||||||
|
* This software is licensed under the terms of the GNU GPL v2 or later.
|
||||||
|
* See file LICENSE.txt or visit http://www.gnu.org/licenses/gpl.html for full license details.
|
||||||
|
*/
|
||||||
|
|
||||||
|
function FormPanel() {
|
||||||
|
|
||||||
|
var _configAPI = new ConfigAPI();
|
||||||
|
var _retryDelay = 2000;
|
||||||
|
var _retrySaveSettingsDelay;
|
||||||
|
var _retryLoadAllSettingsDelay;
|
||||||
|
var _retryLoadSettingsDelay;
|
||||||
|
var _retryResetSettingsDelay;
|
||||||
|
|
||||||
|
// ui elements
|
||||||
|
var _element;
|
||||||
|
|
||||||
|
var _self = this;
|
||||||
|
|
||||||
|
this.init = function(wifiboxURL,wifiboxCGIBinURL,panelElement) {
|
||||||
|
|
||||||
|
// make _self the scope of which init was called?
|
||||||
|
// needed to have the subclass instance access the same counter
|
||||||
|
//_self = this;
|
||||||
|
//console.log(" _element: ",_element);
|
||||||
|
_element = panelElement;
|
||||||
|
//console.log(" >_element: ",_element);
|
||||||
|
_configAPI.init(wifiboxURL,wifiboxCGIBinURL);
|
||||||
|
};
|
||||||
|
|
||||||
|
//this.readForm = function(form) {
|
||||||
|
this.readForm = function(form) {
|
||||||
|
//console.log("FormPanel:readForm");
|
||||||
|
if(!form) form = _element; // if no form specified, read whole panel form
|
||||||
|
//console.log("FormPanel");
|
||||||
|
var settings = {};
|
||||||
|
// Read all selects
|
||||||
|
var selects = form.find("select");
|
||||||
|
selects.each( function(index,element) {
|
||||||
|
var elem = $(element);
|
||||||
|
//var fieldName = elem.attr('name');
|
||||||
|
if(elem.attr('name') != "") {
|
||||||
|
settings[elem.attr('name')] = elem.val();
|
||||||
|
}
|
||||||
|
});
|
||||||
|
// Read all inputs
|
||||||
|
var inputs = form.find("input");
|
||||||
|
inputs.each( function(index,element) {
|
||||||
|
var elem = $(element);
|
||||||
|
if(elem.attr('name') != "") {
|
||||||
|
switch(elem.attr("type")) {
|
||||||
|
case "text":
|
||||||
|
case "number":
|
||||||
|
settings[elem.attr('name')] = elem.val();
|
||||||
|
break;
|
||||||
|
case "checkbox":
|
||||||
|
settings[elem.attr('name')] = elem.prop('checked');
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
});
|
||||||
|
// Read all textareas
|
||||||
|
var textareas = form.find("textarea");
|
||||||
|
textareas.each( function(index,element) {
|
||||||
|
var elem = $(element);
|
||||||
|
settings[elem.attr('name')] = elem.val();
|
||||||
|
});
|
||||||
|
return settings;
|
||||||
|
};
|
||||||
|
|
||||||
|
this.fillForm = function(settings,form) {
|
||||||
|
//console.log("FormPanel:fillForm");
|
||||||
|
if(!form) form = _element; // if no form specified, fill whole panel form
|
||||||
|
//console.log(" form: ",form);
|
||||||
|
|
||||||
|
clearValidationErrors();
|
||||||
|
|
||||||
|
//fill form with loaded settings
|
||||||
|
var selects = form.find("select");
|
||||||
|
selects.each( function(index,element) {
|
||||||
|
var elem = $(element);
|
||||||
|
elem.val(settings[elem.attr('name')]);
|
||||||
|
});
|
||||||
|
var inputs = form.find("input");
|
||||||
|
inputs.each( function(index,element) {
|
||||||
|
var elem = $(element);
|
||||||
|
//console.log("printer setting input: ",index,element.attr("type"),element.attr('name')); //,element);
|
||||||
|
switch(elem.attr("type")) {
|
||||||
|
case "text":
|
||||||
|
case "number":
|
||||||
|
elem.val(settings[elem.attr('name')]);
|
||||||
|
break;
|
||||||
|
case "checkbox":
|
||||||
|
elem.prop('checked', settings[elem.attr('name')]);
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
});
|
||||||
|
var textareas = form.find("textarea");
|
||||||
|
textareas.each( function(index,element) {
|
||||||
|
var elem = $(element);
|
||||||
|
var value = settings[elem.attr('name')];
|
||||||
|
elem.val(value);
|
||||||
|
});
|
||||||
|
};
|
||||||
|
|
||||||
|
this.saveSettings = function(newSettings,complete) {
|
||||||
|
//console.log(" newSettings: ",newSettings);
|
||||||
|
_configAPI.save(newSettings,function(data) {
|
||||||
|
var validation = data.validation;
|
||||||
|
//console.log(" validation: ",validation);
|
||||||
|
clearValidationErrors();
|
||||||
|
var validated = true;
|
||||||
|
$.each(validation, function(key, val) {
|
||||||
|
if (val != "ok") {
|
||||||
|
console.log("ERROR: setting '" + key + "' not successfully set. Message: " + val);
|
||||||
|
displayValidationError(key,val);
|
||||||
|
validated = false;
|
||||||
|
}
|
||||||
|
});
|
||||||
|
if(complete) complete(validated, data);
|
||||||
|
}, function() {
|
||||||
|
console.log("Settings:saveSettings: failed");
|
||||||
|
clearTimeout(_retrySaveSettingsDelay);
|
||||||
|
_retrySaveSettingsDelay = setTimeout(function() { _self.saveSettings(newSettings,complete); },_retryDelay); // retry after delay
|
||||||
|
});
|
||||||
|
};
|
||||||
|
function displayValidationError(key,msg) {
|
||||||
|
var formElement = _element.find("[name|='"+key+"']");
|
||||||
|
formElement.addClass("error");
|
||||||
|
var errorMsg = "<p class='errorMsg'>"+msg+"</p>";
|
||||||
|
formElement.after(errorMsg);
|
||||||
|
};
|
||||||
|
function clearValidationErrors() {
|
||||||
|
_element.find(".errorMsg").remove();
|
||||||
|
_element.find(".error").removeClass("error");
|
||||||
|
};
|
||||||
|
|
||||||
|
this.loadAllSettings = function(complete) {
|
||||||
|
_configAPI.loadAll(complete,function() {
|
||||||
|
clearTimeout(_retryLoadAllSettingsDelay);
|
||||||
|
_retryLoadAllSettingsDelay = setTimeout(function() { _self.loadAllSettings(complete); },_retryDelay); // retry after delay
|
||||||
|
});
|
||||||
|
};
|
||||||
|
this.loadSettings = function(targetSettings,complete) {
|
||||||
|
_configAPI.load(targetSettings,complete,function() {
|
||||||
|
clearTimeout(_retryLoadSettingsDelay);
|
||||||
|
_retryLoadSettingsDelay = setTimeout(function() { _self.loadSettings(targetSettings,complete); },_retryDelay); // retry after delay
|
||||||
|
});
|
||||||
|
};
|
||||||
|
|
||||||
|
this.resetAllSettings = function(complete) {
|
||||||
|
_configAPI.resetAll(complete,function() {
|
||||||
|
clearTimeout(_retryResetSettingsDelay);
|
||||||
|
_retryResetSettingsDelay = setTimeout(function() { _self.resetAllSettings(complete); },_retryDelay); // retry after delay
|
||||||
|
});
|
||||||
|
};
|
||||||
|
}
|
341
js/settings/NetworkPanel.js
Normal file
341
js/settings/NetworkPanel.js
Normal file
@ -0,0 +1,341 @@
|
|||||||
|
/*
|
||||||
|
* This file is part of the Doodle3D project (http://doodle3d.com).
|
||||||
|
*
|
||||||
|
* Copyright (c) 2013, Doodle3D
|
||||||
|
* This software is licensed under the terms of the GNU GPL v2 or later.
|
||||||
|
* See file LICENSE.txt or visit http://www.gnu.org/licenses/gpl.html for full license details.
|
||||||
|
*/
|
||||||
|
|
||||||
|
function NetworkPanel() {
|
||||||
|
|
||||||
|
var NOT_CONNECTED = "not connected"; // used as first item in networks list
|
||||||
|
|
||||||
|
// network mode
|
||||||
|
NetworkPanel.NETWORK_MODE = {
|
||||||
|
NEITHER: "neither",
|
||||||
|
CLIENT: "clientMode",
|
||||||
|
ACCESS_POINT: "accessPointMode"
|
||||||
|
};
|
||||||
|
var _networkMode = NetworkPanel.NETWORK_MODE.NEITHER;
|
||||||
|
var _networkModeChangedHandler;
|
||||||
|
|
||||||
|
var _form = new FormPanel();
|
||||||
|
var _api = new NetworkAPI();
|
||||||
|
var _networks = {};
|
||||||
|
var _currentNetwork; // the ssid of the network the box is on
|
||||||
|
var _selectedNetwork; // the ssid of the selected network in the client mode settings
|
||||||
|
var _substituted_ssid; // the substituted ssid (displayed during creation)
|
||||||
|
var _currentLocalIP = "";
|
||||||
|
var _currentAP;
|
||||||
|
var _currentNetworkStatus;
|
||||||
|
|
||||||
|
var _retryDelay = 2000;
|
||||||
|
//var _retryRefreshNetworksDelay;
|
||||||
|
var _retryRetrieveStatusDelayTime = 1000;
|
||||||
|
var _retryRetrieveStatusDelay;
|
||||||
|
// after switching wifi network or creating a access point we delay the status retrieval
|
||||||
|
// because the webserver needs time to switch
|
||||||
|
var _retrieveNetworkStatusDelayTime = 1000;
|
||||||
|
var _retrieveNetworkStatusDelay;
|
||||||
|
|
||||||
|
// ui elements
|
||||||
|
var _element;
|
||||||
|
var _networkSelector;
|
||||||
|
var _apFieldSet;
|
||||||
|
var _clientFieldSet;
|
||||||
|
var _apRadioButton;
|
||||||
|
var _clientRadioButton;
|
||||||
|
var _btnRefresh
|
||||||
|
var _btnConnect;
|
||||||
|
var _btnCreate;
|
||||||
|
var _passwordField;
|
||||||
|
var _passwordLabel;
|
||||||
|
var _clientStateDisplay;
|
||||||
|
var _apModeStateDisplay;
|
||||||
|
|
||||||
|
var _self = this;
|
||||||
|
|
||||||
|
this.init = function(wifiboxURL,wifiboxCGIBinURL,panelElement) {
|
||||||
|
//console.log("NetworkPanel:init");
|
||||||
|
|
||||||
|
_form.init(wifiboxURL,wifiboxCGIBinURL,panelElement)
|
||||||
|
|
||||||
|
_api.init(wifiboxURL,wifiboxCGIBinURL);
|
||||||
|
|
||||||
|
_element = panelElement;
|
||||||
|
_apRadioButton = _element.find("#ap");
|
||||||
|
_clientRadioButton = _element.find("#client");
|
||||||
|
_btnRefresh = _element.find("#refreshNetworks");
|
||||||
|
_btnConnect = _element.find("#connectToNetwork");
|
||||||
|
_btnCreate = _element.find("#createAP");
|
||||||
|
_networkSelector = _element.find("#network");
|
||||||
|
_apFieldSet = _element.find("#apSettings");
|
||||||
|
_clientFieldSet = _element.find("#clientSettings");
|
||||||
|
_passwordField = _element.find("#password");
|
||||||
|
_passwordLabel = _element.find("#passwordLabel");
|
||||||
|
_clientStateDisplay = _element.find("#clientModeState");
|
||||||
|
_apModeStateDisplay = _element.find("#apModeState");
|
||||||
|
|
||||||
|
_apRadioButton.parent().on('touchstart mousedown',showAPSettings);
|
||||||
|
_clientRadioButton.parent().on('touchstart mousedown',showClientSettings);
|
||||||
|
_btnRefresh.on('touchstart mousedown',onRefreshClick);
|
||||||
|
_btnConnect.on('touchstart mousedown',_self.connectToNetwork);
|
||||||
|
_btnCreate.on('touchstart mousedown',_self.createAP);
|
||||||
|
_networkSelector.change(networkSelectorChanged);
|
||||||
|
}
|
||||||
|
/*
|
||||||
|
* Handlers
|
||||||
|
*/
|
||||||
|
function showAPSettings() {
|
||||||
|
_apFieldSet.show();
|
||||||
|
_clientFieldSet.hide();
|
||||||
|
};
|
||||||
|
function showClientSettings() {
|
||||||
|
_clientFieldSet.show();
|
||||||
|
_apFieldSet.hide();
|
||||||
|
};
|
||||||
|
function onRefreshClick() {
|
||||||
|
_btnRefresh.attr("disabled", true);
|
||||||
|
_self.refreshNetworks(function() {
|
||||||
|
_btnRefresh.removeAttr("disabled");
|
||||||
|
})
|
||||||
|
}
|
||||||
|
function networkSelectorChanged(e) {
|
||||||
|
var selectedOption = $(this).find("option:selected");
|
||||||
|
_self.selectNetwork(selectedOption.val());
|
||||||
|
};
|
||||||
|
|
||||||
|
this.update = function() {
|
||||||
|
//console.log("NetworkPanel:update");
|
||||||
|
_self.refreshNetworks();
|
||||||
|
_self.retrieveNetworkStatus(false);
|
||||||
|
}
|
||||||
|
this.refreshNetworks = function(completeHandler) {
|
||||||
|
//console.log("NetworkPanel:refreshNetworks");
|
||||||
|
_api.scan(function(data) { // completed
|
||||||
|
//console.log("NetworkPanel:scanned");
|
||||||
|
_networks = {};
|
||||||
|
var foundCurrentNetwork = false;
|
||||||
|
// fill network selector
|
||||||
|
_networkSelector.empty();
|
||||||
|
_networkSelector.append(
|
||||||
|
$("<option></option>").val(NOT_CONNECTED).html(NOT_CONNECTED)
|
||||||
|
);
|
||||||
|
$.each(data.networks, function(index,element) {
|
||||||
|
if(element.ssid == _currentNetwork) {
|
||||||
|
foundCurrentNetwork = true;
|
||||||
|
}
|
||||||
|
_networkSelector.append(
|
||||||
|
$("<option></option>").val(element.ssid).html(element.ssid)
|
||||||
|
);
|
||||||
|
_networks[element.ssid] = element;
|
||||||
|
});
|
||||||
|
if(foundCurrentNetwork) {
|
||||||
|
_networkSelector.val(_currentNetwork);
|
||||||
|
_self.selectNetwork(_currentNetwork);
|
||||||
|
}
|
||||||
|
if(completeHandler) completeHandler();
|
||||||
|
}/*,
|
||||||
|
function() { // failed
|
||||||
|
clearTimeout(_retryRefreshNetworksDelay);
|
||||||
|
_retryRetrieveStatusDelay = setTimeout(function() { _self.refreshNetworks(completeHandler); },_retryDelay); // retry after delay
|
||||||
|
}*/);
|
||||||
|
};
|
||||||
|
|
||||||
|
this.retrieveNetworkStatus = function(connecting) {
|
||||||
|
//console.log("NetworkPanel:retrieveNetworkStatus");
|
||||||
|
_api.status(function(data) {
|
||||||
|
if(typeof data.status === 'string') {
|
||||||
|
data.status = parseInt(data.status);
|
||||||
|
}
|
||||||
|
//console.log("NetworkPanel:retrievedStatus status: ",data.status,data.statusMessage);
|
||||||
|
|
||||||
|
// if status changed
|
||||||
|
if(data.status != _currentNetworkStatus) {
|
||||||
|
// Determine which network mode ui to show
|
||||||
|
switch(data.status) {
|
||||||
|
case NetworkAPI.STATUS.NOT_CONNECTED:
|
||||||
|
setNetworkMode(NetworkPanel.NETWORK_MODE.NEITHER);
|
||||||
|
break;
|
||||||
|
case NetworkAPI.STATUS.CONNECTING_FAILED:
|
||||||
|
case NetworkAPI.STATUS.CONNECTING:
|
||||||
|
case NetworkAPI.STATUS.CONNECTED:
|
||||||
|
setNetworkMode(NetworkPanel.NETWORK_MODE.CLIENT);
|
||||||
|
break;
|
||||||
|
case NetworkAPI.STATUS.CREATING:
|
||||||
|
case NetworkAPI.STATUS.CREATED:
|
||||||
|
setNetworkMode(NetworkPanel.NETWORK_MODE.ACCESS_POINT);
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
// update info
|
||||||
|
switch(data.status) {
|
||||||
|
case NetworkAPI.STATUS.CONNECTED:
|
||||||
|
_currentNetwork = data.ssid;
|
||||||
|
_currentLocalIP = data.localip;
|
||||||
|
_self.selectNetwork(data.ssid);
|
||||||
|
break;
|
||||||
|
case NetworkAPI.STATUS.CONNECTING_FAILED:
|
||||||
|
case NetworkAPI.STATUS.CONNECTING:
|
||||||
|
_currentLocalIP = "";
|
||||||
|
break;
|
||||||
|
case NetworkAPI.STATUS.CREATING:
|
||||||
|
case NetworkAPI.STATUS.CREATED:
|
||||||
|
_currentNetwork = undefined;
|
||||||
|
_self.selectNetwork(NOT_CONNECTED);
|
||||||
|
if(data.ssid && data.status == NetworkAPI.STATUS.CREATED) {
|
||||||
|
_currentAP = data.ssid;
|
||||||
|
}
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
// update ui
|
||||||
|
updateClientModeUI(data.status,data.statusMessage);
|
||||||
|
updateAPModeUI(data.status,"");
|
||||||
|
}
|
||||||
|
|
||||||
|
// Keep checking for updates?
|
||||||
|
if(connecting) {
|
||||||
|
switch(data.status) {
|
||||||
|
case NetworkAPI.STATUS.CONNECTING:
|
||||||
|
case NetworkAPI.STATUS.CREATING:
|
||||||
|
clearTimeout(_retryRetrieveStatusDelay);
|
||||||
|
_retryRetrieveStatusDelay = setTimeout(function() { _self.retrieveNetworkStatus(connecting); },_retryRetrieveStatusDelayTime); // retry after delay
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
_currentNetworkStatus = data.status;
|
||||||
|
}, function() {
|
||||||
|
//console.log("NetworkPanel:retrieveStatus failed");
|
||||||
|
clearTimeout(_retryRetrieveStatusDelay);
|
||||||
|
_retryRetrieveStatusDelay = setTimeout(function() { _self.retrieveNetworkStatus(connecting); }, _retryRetrieveStatusDelayTime); // retry after delay
|
||||||
|
});
|
||||||
|
};
|
||||||
|
function setNetworkMode(mode) {
|
||||||
|
//console.log("NetworkPanel:setNetworkMode: ",_networkMode,">",mode);
|
||||||
|
if(mode == _networkMode) return;
|
||||||
|
switch(mode) {
|
||||||
|
case NetworkPanel.NETWORK_MODE.NEITHER:
|
||||||
|
_apFieldSet.show();
|
||||||
|
_clientFieldSet.show();
|
||||||
|
break;
|
||||||
|
case NetworkPanel.NETWORK_MODE.CLIENT:
|
||||||
|
_clientRadioButton.prop('checked',true);
|
||||||
|
_apFieldSet.hide();
|
||||||
|
_clientFieldSet.show();
|
||||||
|
break;
|
||||||
|
case NetworkPanel.NETWORK_MODE.ACCESS_POINT:
|
||||||
|
_apRadioButton.prop('checked',true);
|
||||||
|
_apFieldSet.show();
|
||||||
|
_clientFieldSet.hide();
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
_networkMode = mode;
|
||||||
|
if(_networkModeChangedHandler) _networkModeChangedHandler(_networkMode);
|
||||||
|
}
|
||||||
|
|
||||||
|
this.selectNetwork = function(ssid) {
|
||||||
|
//console.log("NetworkPanel:selectNetwork: ",ssid);
|
||||||
|
if(ssid == "") return;
|
||||||
|
_selectedNetwork = ssid;
|
||||||
|
|
||||||
|
var network = _networks[ssid];
|
||||||
|
if(network === undefined || network.encryption == "none") {
|
||||||
|
_passwordLabel.hide();
|
||||||
|
_passwordField.hide();
|
||||||
|
} else {
|
||||||
|
_passwordLabel.show();
|
||||||
|
_passwordField.show();
|
||||||
|
}
|
||||||
|
_passwordField.val("");
|
||||||
|
};
|
||||||
|
|
||||||
|
function updateClientModeUI(state,statusMessage) {
|
||||||
|
//console.log("NetworkPanel:updateClientModeUI ",state,statusMessage);
|
||||||
|
var msg = "";
|
||||||
|
switch(state) {
|
||||||
|
case NetworkAPI.STATUS.NOT_CONNECTED:
|
||||||
|
case NetworkAPI.STATUS.CREATING:
|
||||||
|
case NetworkAPI.STATUS.CREATED:
|
||||||
|
_btnConnect.removeAttr("disabled");
|
||||||
|
msg = "Not connected";
|
||||||
|
_networkSelector.val(NOT_CONNECTED);
|
||||||
|
break;
|
||||||
|
case NetworkAPI.STATUS.CONNECTED:
|
||||||
|
_btnConnect.removeAttr("disabled");
|
||||||
|
msg = "Connected to: <b>"+_currentNetwork+"</b>.";
|
||||||
|
if(_currentLocalIP != undefined && _currentLocalIP != "") {
|
||||||
|
var a = "<a href='http://"+_currentLocalIP+"' target='_black'>"+_currentLocalIP+"</a>";
|
||||||
|
msg += " (IP: "+a+")";
|
||||||
|
}
|
||||||
|
_networkSelector.val(_currentNetwork);
|
||||||
|
break;
|
||||||
|
case NetworkAPI.STATUS.CONNECTING:
|
||||||
|
_btnConnect.attr("disabled", true);
|
||||||
|
msg = "Connecting... Reconnect by connecting your device to <b>"+_selectedNetwork+"</b> and going to <a href='http://connect.doodle3d.com'>connect.doodle3d.com</a>";
|
||||||
|
break;
|
||||||
|
case NetworkAPI.STATUS.CONNECTING_FAILED:
|
||||||
|
_btnConnect.removeAttr("disabled");
|
||||||
|
msg = statusMessage;
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
//console.log(" client display msg: ",msg);
|
||||||
|
_clientStateDisplay.html(msg);
|
||||||
|
};
|
||||||
|
function updateAPModeUI(state,statusMessage) {
|
||||||
|
var msg = "";
|
||||||
|
switch(state) {
|
||||||
|
case NetworkAPI.STATUS.CONNECTING_FAILED:
|
||||||
|
case NetworkAPI.STATUS.NOT_CONNECTED:
|
||||||
|
case NetworkAPI.STATUS.CONNECTING:
|
||||||
|
case NetworkAPI.STATUS.CONNECTED:
|
||||||
|
_btnCreate.removeAttr("disabled");
|
||||||
|
msg = "Not currently a access point";
|
||||||
|
break;
|
||||||
|
case NetworkAPI.STATUS.CREATED:
|
||||||
|
_btnCreate.removeAttr("disabled");
|
||||||
|
msg = "Is access point: <b>"+_currentAP+"</b>";
|
||||||
|
break;
|
||||||
|
case NetworkAPI.STATUS.CREATING:
|
||||||
|
_btnCreate.attr("disabled", true);
|
||||||
|
msg = "Creating access point... Reconnect by connecting your device to <b>"+_substituted_ssid+"</b> and going to <a href='http://draw.doodle3d.com'>draw.doodle3d.com</a>";
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
//console.log(" ap display msg: ",msg);
|
||||||
|
_apModeStateDisplay.html(msg);
|
||||||
|
};
|
||||||
|
|
||||||
|
this.connectToNetwork = function() {
|
||||||
|
//console.log("NetworkPanel:connectToNetwork");
|
||||||
|
if(_selectedNetwork == undefined) return;
|
||||||
|
// save network related settings and on complete, connect to network
|
||||||
|
_form.saveSettings(_form.readForm(),function(validated, data) {
|
||||||
|
if(!validated) return;
|
||||||
|
updateClientModeUI(NetworkAPI.STATUS.CONNECTING,"");
|
||||||
|
_api.associate(_selectedNetwork,_passwordField.val(),true);
|
||||||
|
|
||||||
|
// after switching wifi network or creating a access point we delay the status retrieval
|
||||||
|
// because the webserver needs time to switch it's status
|
||||||
|
clearTimeout(_retrieveNetworkStatusDelay);
|
||||||
|
_retrieveNetworkStatusDelay = setTimeout(function() { _self.retrieveNetworkStatus(true); }, _retrieveNetworkStatusDelayTime);
|
||||||
|
});
|
||||||
|
};
|
||||||
|
|
||||||
|
this.createAP = function() {
|
||||||
|
//console.log("createAP");
|
||||||
|
// save network related settings and on complete, create access point
|
||||||
|
_form.saveSettings(_form.readForm(),function(validated, data) {
|
||||||
|
if(!validated) return;
|
||||||
|
_substituted_ssid = data.substituted_ssid;
|
||||||
|
updateAPModeUI(NetworkAPI.STATUS.CREATING,"");
|
||||||
|
_api.openAP();
|
||||||
|
|
||||||
|
// after switching wifi network or creating a access point we delay the status retrieval
|
||||||
|
// because the webserver needs time to switch it's status
|
||||||
|
clearTimeout(_retrieveNetworkStatusDelay);
|
||||||
|
_retrieveNetworkStatusDelay = setTimeout(function() { _self.retrieveNetworkStatus(true); }, _retrieveNetworkStatusDelayTime);
|
||||||
|
});
|
||||||
|
};
|
||||||
|
|
||||||
|
this.setNetworkModeChangedHandler = function(handler) {
|
||||||
|
_networkModeChangedHandler = handler;
|
||||||
|
}
|
||||||
|
}
|
59
js/settings/PrinterPanel.js
Normal file
59
js/settings/PrinterPanel.js
Normal file
@ -0,0 +1,59 @@
|
|||||||
|
/*
|
||||||
|
* This file is part of the Doodle3D project (http://doodle3d.com).
|
||||||
|
*
|
||||||
|
* Copyright (c) 2013, Doodle3D
|
||||||
|
* This software is licensed under the terms of the GNU GPL v2 or later.
|
||||||
|
* See file LICENSE.txt or visit http://www.gnu.org/licenses/gpl.html for full license details.
|
||||||
|
*/
|
||||||
|
|
||||||
|
function PrinterPanel() {
|
||||||
|
|
||||||
|
this.printerType;
|
||||||
|
var _api = new PrinterAPI();
|
||||||
|
var _form = new FormPanel();
|
||||||
|
|
||||||
|
// ui elements
|
||||||
|
var _element;
|
||||||
|
var _printerSelector;
|
||||||
|
var _printerSettings;
|
||||||
|
|
||||||
|
var _self = this;
|
||||||
|
|
||||||
|
this.init = function(wifiboxURL,wifiboxCGIBinURL,panelElement) {
|
||||||
|
|
||||||
|
_form.init(wifiboxURL,wifiboxCGIBinURL,panelElement)
|
||||||
|
_api.init(wifiboxURL,wifiboxCGIBinURL);
|
||||||
|
_element = panelElement;
|
||||||
|
_printerSelector = _element.find("#printerType");
|
||||||
|
_printerSelector.change(_self.printerSelectorChanged);
|
||||||
|
|
||||||
|
// we use readForm to get all the settings we need to
|
||||||
|
// reload after changing printer type
|
||||||
|
_printerSettings = _form.readForm();
|
||||||
|
|
||||||
|
var gcodePanel = _element.find("#gcodePanel");
|
||||||
|
gcodePanel.coolfieldset({collapsed:true});
|
||||||
|
}
|
||||||
|
this.load = function(completeHandler) {
|
||||||
|
|
||||||
|
_api.listAll(function(data) {
|
||||||
|
$.each(data.printers, function(key, value) {
|
||||||
|
// console.log(key,value);
|
||||||
|
$('#printerType').append($('<option>').text(value).attr('value', key));
|
||||||
|
});
|
||||||
|
completeHandler();
|
||||||
|
});
|
||||||
|
}
|
||||||
|
this.printerSelectorChanged = function(e) {
|
||||||
|
_self.printerType = _printerSelector.find("option:selected").val();
|
||||||
|
var settings = {};
|
||||||
|
settings[_printerSelector.attr("name")] = _self.printerType;
|
||||||
|
|
||||||
|
_form.saveSettings(settings,function(validated) {
|
||||||
|
if(!validated) return;
|
||||||
|
_form.loadSettings(_printerSettings,function(settings) {
|
||||||
|
_form.fillForm(settings);
|
||||||
|
});
|
||||||
|
});
|
||||||
|
}
|
||||||
|
}
|
234
js/settings/SettingsWindow.js
Normal file
234
js/settings/SettingsWindow.js
Normal file
@ -0,0 +1,234 @@
|
|||||||
|
/*
|
||||||
|
* This file is part of the Doodle3D project (http://doodle3d.com).
|
||||||
|
*
|
||||||
|
* Copyright (c) 2013, Doodle3D
|
||||||
|
* This software is licensed under the terms of the GNU GPL v2 or later.
|
||||||
|
* See file LICENSE.txt or visit http://www.gnu.org/licenses/gpl.html for full license details.
|
||||||
|
*/
|
||||||
|
|
||||||
|
//these settings are defined in the firmware (conf_defaults.lua) and will be initialized in loadSettings()
|
||||||
|
var settings = {};
|
||||||
|
var settingsPopup;
|
||||||
|
//wrapper to prevent scoping issues in showSettings()
|
||||||
|
function openSettingsWindow() {
|
||||||
|
settingsWindow.loadSettings(function() { // reload settings
|
||||||
|
settingsPopup.open();
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
function SettingsWindow() {
|
||||||
|
|
||||||
|
var _window;
|
||||||
|
var _btnOK;
|
||||||
|
|
||||||
|
var _wifiboxURL;
|
||||||
|
var _restoredStateHideDelayTime = 3000;
|
||||||
|
var _restoredStateHideDelay; // setTimout instance
|
||||||
|
|
||||||
|
// Events
|
||||||
|
SettingsWindow.SETTINGS_LOADED = "settingsLoaded";
|
||||||
|
|
||||||
|
var _form = new FormPanel();
|
||||||
|
var _updatePanel = new UpdatePanel();
|
||||||
|
var _printerPanel = new PrinterPanel();
|
||||||
|
var _networkPanel = new NetworkPanel();
|
||||||
|
var _networkAPI = new NetworkAPI();
|
||||||
|
|
||||||
|
var _restoreStateField
|
||||||
|
|
||||||
|
var self = this;
|
||||||
|
|
||||||
|
this.init = function(wifiboxURL,wifiboxCGIBinURL) {
|
||||||
|
|
||||||
|
_wifiboxURL = wifiboxURL;
|
||||||
|
|
||||||
|
_window = $("#popupSettings");
|
||||||
|
_btnOK = _window.find(".btnOK");
|
||||||
|
settingsPopup = new Popup($("#popupSettings"), $("#popupMask"));
|
||||||
|
settingsPopup.setEnterEnabled(false);
|
||||||
|
settingsPopup.setAutoCloseEnabled(false);
|
||||||
|
|
||||||
|
_btnOK.on('touchstart mousedown',settingsPopup.commit);
|
||||||
|
$("#popupSettings").bind("onPopupCancel", function() { settingsPopup.close(); } );
|
||||||
|
$("#popupSettings").bind("onPopupCommit", self.submitwindow);
|
||||||
|
|
||||||
|
_networkAPI.init(wifiboxURL,wifiboxCGIBinURL);
|
||||||
|
|
||||||
|
// Load external settings.html into SettingsWindow
|
||||||
|
_window.find("#settingsContainer").load("settings.html", function() {
|
||||||
|
console.log("Settings:finished loading settings.html");
|
||||||
|
|
||||||
|
var formElement = _window.find("form");
|
||||||
|
formElement.submit(function (e) { self.submitwindow(e); });
|
||||||
|
|
||||||
|
_form.init(wifiboxURL,wifiboxCGIBinURL,formElement);
|
||||||
|
|
||||||
|
// printer panel
|
||||||
|
var printerPanelElement = formElement.find("#printerPanel");
|
||||||
|
_printerPanel.init(wifiboxURL,wifiboxCGIBinURL,printerPanelElement);
|
||||||
|
|
||||||
|
// Load printer types list
|
||||||
|
// First, because after the settings are loaded the printer type need to be selected
|
||||||
|
_printerPanel.load(function() {
|
||||||
|
|
||||||
|
_restoreStateField = formElement.find("#restoreState");
|
||||||
|
self.btnRestoreSettings = formElement.find("#restoreSettings");
|
||||||
|
self.btnRestoreSettings.on('touchstart mousedown',self.resetSettings);
|
||||||
|
|
||||||
|
// network panel
|
||||||
|
var $networkPanelElement = formElement.find("#networkPanel");
|
||||||
|
_networkPanel.init(wifiboxURL,wifiboxCGIBinURL,$networkPanelElement);
|
||||||
|
|
||||||
|
|
||||||
|
// update panel
|
||||||
|
var updatePanelElement = formElement.find("#updatePanel");
|
||||||
|
_updatePanel.init(wifiboxURL,updatePanelElement);
|
||||||
|
_networkPanel.setNetworkModeChangedHandler(function(networkMode) {
|
||||||
|
var inAccessPointMode = (networkMode == NetworkPanel.NETWORK_MODE.ACCESS_POINT);
|
||||||
|
_updatePanel.setInAccessPointMode(inAccessPointMode);
|
||||||
|
});
|
||||||
|
|
||||||
|
self.loadSettings();
|
||||||
|
|
||||||
|
});
|
||||||
|
}); //this.window.find
|
||||||
|
}; //this.init
|
||||||
|
|
||||||
|
this.openSettings = function() {
|
||||||
|
self.loadSettings(function() { // reload settings
|
||||||
|
settingsPopup.open();
|
||||||
|
});
|
||||||
|
};
|
||||||
|
|
||||||
|
// this.closeSettings = function(complete) {
|
||||||
|
// settingsPopup.close(complete);
|
||||||
|
// };
|
||||||
|
|
||||||
|
this.submitwindow = function(e) {
|
||||||
|
_btnOK.attr("disabled",true);
|
||||||
|
e.preventDefault();
|
||||||
|
e.stopPropagation();
|
||||||
|
var newSettings = _form.readForm();
|
||||||
|
_form.saveSettings(newSettings,function(validated, data){
|
||||||
|
if(validated) {
|
||||||
|
settings = newSettings; // store new settings in global settings
|
||||||
|
settingsPopup.close();
|
||||||
|
self.signin();
|
||||||
|
}
|
||||||
|
_btnOK.removeAttr("disabled");
|
||||||
|
});
|
||||||
|
};
|
||||||
|
|
||||||
|
this.loadSettings = function(complete) {
|
||||||
|
_form.loadAllSettings(function(loadedSettings){
|
||||||
|
console.log("Settings:loaded settings: ",loadedSettings);
|
||||||
|
settings = loadedSettings;
|
||||||
|
_form.fillForm(settings);
|
||||||
|
$(document).trigger(SettingsWindow.SETTINGS_LOADED);
|
||||||
|
if(complete) complete();
|
||||||
|
});
|
||||||
|
_networkPanel.update();
|
||||||
|
};
|
||||||
|
|
||||||
|
this.resetSettings = function() {
|
||||||
|
console.log("resetSettings");
|
||||||
|
self.btnRestoreSettings.attr("disabled", true);
|
||||||
|
clearTimeout(_restoredStateHideDelay);
|
||||||
|
self.setRestoreState("Restoring...");
|
||||||
|
_form.resetAllSettings(function(restoredSettings) {
|
||||||
|
//console.log(" settings: ",restoredSettings);
|
||||||
|
settings = restoredSettings;
|
||||||
|
_form.fillForm(restoredSettings);
|
||||||
|
$(document).trigger(SettingsWindow.SETTINGS_LOADED);
|
||||||
|
|
||||||
|
self.btnRestoreSettings.removeAttr("disabled");
|
||||||
|
self.setRestoreState("Settings restored");
|
||||||
|
// auto hide status
|
||||||
|
clearTimeout(_restoredStateHideDelay);
|
||||||
|
_restoredStateHideDelay = setTimeout(function() { self.setRestoreState(""); },_restoredStateHideDelayTime);
|
||||||
|
});
|
||||||
|
};
|
||||||
|
|
||||||
|
this.setRestoreState = function(text) {
|
||||||
|
_restoreStateField.html(text);
|
||||||
|
};
|
||||||
|
|
||||||
|
this.signin = function() {
|
||||||
|
_networkAPI.signin();
|
||||||
|
};
|
||||||
|
|
||||||
|
this.downloadlogs = function() {
|
||||||
|
window.location.href = _wifiboxURL + "/info/logfiles";
|
||||||
|
};
|
||||||
|
|
||||||
|
this.downloadGcode = function() {
|
||||||
|
var gcode = generate_gcode();
|
||||||
|
if (gcode!=undefined) {
|
||||||
|
var blob = new Blob([gcode.join("\n")], {type: "text/plain;charset=utf-8"});
|
||||||
|
saveAs(blob, "doodle3d.gcode");
|
||||||
|
}
|
||||||
|
};
|
||||||
|
|
||||||
|
this.downloadSvg = function() {
|
||||||
|
var svg = saveToSvg();
|
||||||
|
if (svg!=undefined) {
|
||||||
|
var blob = new Blob([svg], {type: "text/plain;charset=utf-8"});
|
||||||
|
saveAs(blob, "doodle3d.svg");
|
||||||
|
}
|
||||||
|
};
|
||||||
|
}
|
||||||
|
|
||||||
|
/*************************
|
||||||
|
*
|
||||||
|
*
|
||||||
|
* FROM DOODLE3D.INI
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
|
||||||
|
//TODO: find all references to these variables, replace them and finally remove these.
|
||||||
|
var objectHeight = 20;
|
||||||
|
var layerHeight = .2;
|
||||||
|
//var wallThickness = .5;
|
||||||
|
//var hop = 0;
|
||||||
|
//var speed = 70;
|
||||||
|
//var travelSpeed = 200;
|
||||||
|
var enableTraveling = true;
|
||||||
|
//var filamentThickness = 2.89;
|
||||||
|
var minScale = .3;
|
||||||
|
var maxScale = 1;
|
||||||
|
var shape = "%";
|
||||||
|
var twists = 0;
|
||||||
|
//var useSubLayers = true;
|
||||||
|
//var debug = false; // debug moved to main.js
|
||||||
|
var loglevel = 2;
|
||||||
|
//var zOffset = 0;
|
||||||
|
var serverport = 8888;
|
||||||
|
var autoLoadImage = "hand.txt";
|
||||||
|
var loadOffset = [0, 0]; // x en y ?
|
||||||
|
var showWarmUp = true;
|
||||||
|
var loopAlways = false;
|
||||||
|
var firstLayerSlow = true;
|
||||||
|
var useSubpathColors = false;
|
||||||
|
var autoWarmUp = true;
|
||||||
|
//var maxObjectHeight = 150;
|
||||||
|
var maxScaleDifference = .1;
|
||||||
|
var frameRate = 60;
|
||||||
|
var quitOnEscape = true;
|
||||||
|
var screenToMillimeterScale = .3; // 0.3
|
||||||
|
//var targetTemperature = 220;
|
||||||
|
//var simplifyiterations = 10;
|
||||||
|
//var simplifyminNumPoints = 15;
|
||||||
|
//var simplifyminDistance = 3;
|
||||||
|
//var retractionspeed = 50;
|
||||||
|
//var retractionminDistance = 5;
|
||||||
|
//var retractionamount = 3;
|
||||||
|
var sideis3D = true;
|
||||||
|
var sidevisible = true;
|
||||||
|
var sidebounds = [900, 210, 131, 390];
|
||||||
|
var sideborder = [880, 169, 2, 471];
|
||||||
|
var windowbounds = [0, 0, 800, 500];
|
||||||
|
var windowcenter = true;
|
||||||
|
var windowfullscreen = false;
|
||||||
|
var autoWarmUpCommand = "M104 S230";
|
||||||
|
//var checkTemperatureInterval = 3;
|
||||||
|
var autoWarmUpDelay = 3;
|
@ -23,6 +23,7 @@ function UpdatePanel() {
|
|||||||
this.newestVersion;
|
this.newestVersion;
|
||||||
this.progress;
|
this.progress;
|
||||||
this.imageSize;
|
this.imageSize;
|
||||||
|
var _inAccessPointMode;
|
||||||
|
|
||||||
// states from api, see Doodle3D firmware src/script/d3d-updater.lua
|
// states from api, see Doodle3D firmware src/script/d3d-updater.lua
|
||||||
UpdatePanel.NONE = 1; // default state
|
UpdatePanel.NONE = 1; // default state
|
||||||
@ -36,8 +37,6 @@ function UpdatePanel() {
|
|||||||
this.state; // update state from api
|
this.state; // update state from api
|
||||||
this.stateText = ""; // update state text from api
|
this.stateText = ""; // update state text from api
|
||||||
|
|
||||||
this.networkMode; // network modes from SettingsWindow
|
|
||||||
|
|
||||||
var self = this;
|
var self = this;
|
||||||
|
|
||||||
this.init = function(wifiboxURL,updatePanelElement) {
|
this.init = function(wifiboxURL,updatePanelElement) {
|
||||||
@ -56,8 +55,7 @@ function UpdatePanel() {
|
|||||||
this.checkStatus(false);
|
this.checkStatus(false);
|
||||||
}
|
}
|
||||||
this.retainChanged = function(e) {
|
this.retainChanged = function(e) {
|
||||||
console.log("UpdatePanel:retainChanged");
|
//console.log("UpdatePanel:retainChanged");
|
||||||
|
|
||||||
self.setState(self.state,true);
|
self.setState(self.state,true);
|
||||||
}
|
}
|
||||||
this.update = function() {
|
this.update = function() {
|
||||||
@ -97,7 +95,7 @@ function UpdatePanel() {
|
|||||||
console.log("UpdatePanel:installUpdate response: ",response);
|
console.log("UpdatePanel:installUpdate response: ",response);
|
||||||
}
|
}
|
||||||
}).fail(function() {
|
}).fail(function() {
|
||||||
console.log("UpdatePanel:installUpdate: no respons (there shouldn't be)");
|
//console.log("UpdatePanel:installUpdate: no respons (there shouldn't be)");
|
||||||
});
|
});
|
||||||
self.setState(UpdatePanel.INSTALLING);
|
self.setState(UpdatePanel.INSTALLING);
|
||||||
|
|
||||||
@ -172,26 +170,26 @@ function UpdatePanel() {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
this.setState = function(newState,refresh) {
|
this.setState = function(newState,refresh) {
|
||||||
console.log("UpdatePanel:setState");
|
//console.log("UpdatePanel:setState");
|
||||||
if(!refresh && this.state == newState) return;
|
if(!refresh && this.state == newState) return;
|
||||||
console.log("UpdatePanel:setState: ",this.state," > ",newState,"(",this.stateText,") (networkMode: ",self.networkMode,") (newestVersion: ",self.newestVersion,") (refresh: ",refresh,")");
|
console.log("UpdatePanel:setState: ",this.state," > ",newState,"(",this.stateText,") (in Access Point Mode: ",_inAccessPointMode,") (newestVersion: ",self.newestVersion,") (refresh: ",refresh,")");
|
||||||
this.state = newState;
|
this.state = newState;
|
||||||
|
|
||||||
// should personal sketches and settings be retained over update?
|
// should personal sketches and settings be retained over update?
|
||||||
var retain = self.retainCheckbox.prop('checked');
|
var retain = self.retainCheckbox.prop('checked');
|
||||||
console.log(" retain", retain);
|
//console.log(" retain", retain);
|
||||||
|
|
||||||
// download button
|
// download button
|
||||||
// if there isn't newestVersion data something went wrong,
|
// if there isn't newestVersion data something went wrong,
|
||||||
// probably accessing the internet
|
// probably accessing the internet
|
||||||
console.log(" self.newestVersion: ",self.newestVersion);
|
//console.log(" self.newestVersion: ",self.newestVersion);
|
||||||
if(self.newestVersion != undefined) {
|
if(self.newestVersion != undefined) {
|
||||||
console.log(" this.state: ",this.state);
|
//console.log(" this.state: ",this.state);
|
||||||
switch(this.state){
|
switch(this.state){
|
||||||
case UpdatePanel.NONE:
|
case UpdatePanel.NONE:
|
||||||
case UpdatePanel.DOWNLOAD_FAILED:
|
case UpdatePanel.DOWNLOAD_FAILED:
|
||||||
case UpdatePanel.INSTALL_FAILED:
|
case UpdatePanel.INSTALL_FAILED:
|
||||||
console.log(" self.canUpdate: ",self.canUpdate);
|
//console.log(" self.canUpdate: ",self.canUpdate);
|
||||||
if(self.canUpdate || !retain) {
|
if(self.canUpdate || !retain) {
|
||||||
self.btnUpdate.removeAttr("disabled");
|
self.btnUpdate.removeAttr("disabled");
|
||||||
} else {
|
} else {
|
||||||
@ -239,7 +237,7 @@ function UpdatePanel() {
|
|||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
} else {
|
} else {
|
||||||
if(self.networkMode == SettingsWindow.NETWORK_MODE_ACCESS_POINT) {
|
if(_inAccessPointMode) {
|
||||||
text = "Can't access internet in access point mode.";
|
text = "Can't access internet in access point mode.";
|
||||||
} else {
|
} else {
|
||||||
text = "Can't access internet.";
|
text = "Can't access internet.";
|
||||||
@ -256,7 +254,9 @@ function UpdatePanel() {
|
|||||||
}
|
}
|
||||||
self.infoDisplay.html(html);
|
self.infoDisplay.html(html);
|
||||||
}
|
}
|
||||||
this.setNetworkMode = function(networkMode) {
|
|
||||||
self.networkMode = networkMode;
|
this.setInAccessPointMode = function(inAccessPointMode) {
|
||||||
|
_inAccessPointMode = inAccessPointMode;
|
||||||
|
self.updateStatusDisplay();
|
||||||
}
|
}
|
||||||
}
|
}
|
@ -6,7 +6,7 @@
|
|||||||
"type": "git",
|
"type": "git",
|
||||||
"url": "https://github.com/Doodle3D/doodle3d-client.git"
|
"url": "https://github.com/Doodle3D/doodle3d-client.git"
|
||||||
},
|
},
|
||||||
"author": "Peter Uithoven, Adriaan Wormgoor, Rick Companje",
|
"author": "Peter Uithoven, Adriaan Wormgoor, Rick Companje, Wouter Reckman",
|
||||||
"readmeFilename": "README.md",
|
"readmeFilename": "README.md",
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
"grunt": "~0.4.1",
|
"grunt": "~0.4.1",
|
||||||
|
BIN
www/img/buttons/collapsed.gif
Normal file
BIN
www/img/buttons/collapsed.gif
Normal file
Binary file not shown.
After Width: | Height: | Size: 106 B |
BIN
www/img/buttons/expanded.gif
Normal file
BIN
www/img/buttons/expanded.gif
Normal file
Binary file not shown.
After Width: | Height: | Size: 107 B |
@ -123,7 +123,7 @@
|
|||||||
<label for="tourEnabled">Enable tour:</label><input id="tourEnabled" type="checkbox" name="doodle3d.tour.enabled" value="tourEnabled"><br>
|
<label for="tourEnabled">Enable tour:</label><input id="tourEnabled" type="checkbox" name="doodle3d.tour.enabled" value="tourEnabled"><br>
|
||||||
</fieldset>
|
</fieldset>
|
||||||
|
|
||||||
<fieldset>
|
<fieldset id="networkPanel">
|
||||||
<legend>Network settings</legend>
|
<legend>Network settings</legend>
|
||||||
<label>Connection type:</label>
|
<label>Connection type:</label>
|
||||||
<div>
|
<div>
|
||||||
|
Loading…
Reference in New Issue
Block a user