2013-10-23 06:46:07 +02:00
|
|
|
|
|
|
|
var grandTour;
|
|
|
|
function GrandTour(_name) {
|
|
|
|
console.log("GrandTour");
|
|
|
|
this.tour = "";
|
|
|
|
this.name = _name;
|
2013-10-23 17:01:59 +02:00
|
|
|
this.active = false;
|
2013-10-23 06:46:07 +02:00
|
|
|
var self = this;
|
|
|
|
|
|
|
|
this.init = function() {
|
|
|
|
console.log("GrandTour >> f:init()");
|
|
|
|
|
|
|
|
this.tour = function() {
|
|
|
|
$('#help_d3dIntro').joyride({
|
|
|
|
autoStart: false,
|
|
|
|
modal: true,
|
|
|
|
expose: true,
|
|
|
|
'tipAdjustmentX': 15,
|
|
|
|
'tipAdjustmentY': 15,
|
|
|
|
'tipLocation': 'bottom', // 'top' or 'bottom' in relation to parent
|
|
|
|
'nubPosition': 'auto', // override on a per tooltip bases
|
|
|
|
'scrollSpeed': 300, // Page scrolling speed in ms
|
|
|
|
// 'timer': 2000, // 0 = off, all other numbers = time(ms)
|
2013-10-23 17:01:59 +02:00
|
|
|
// 'startTimerOnClick': true, // true/false to start timer on first click
|
2013-10-23 06:46:07 +02:00
|
|
|
'nextButton': true, // true/false for next button visibility
|
|
|
|
'tipAnimation': 'fade', // 'pop' or 'fade' in each tip
|
2013-10-23 17:01:59 +02:00
|
|
|
// 'pauseAfter': [], // array of indexes where to pause the tour after
|
|
|
|
'tipAnimationFadeSpeed': 350, // if 'fade'- speed in ms of transition
|
2013-10-23 06:46:07 +02:00
|
|
|
// 'cookieMonster': true, // true/false for whether cookies are used
|
|
|
|
// 'cookieDomain': false, // set to false or yoursite.com
|
|
|
|
// 'cookieName': 'Doodle3DFirstTime', // choose your own cookie name
|
|
|
|
// 'localStorage': true, //
|
|
|
|
// 'localStorageKey': 'Doodle3DFirstTime', // choose your own cookie name
|
|
|
|
'preRideCallback' : self.preRideCallback,
|
2013-10-23 17:01:59 +02:00
|
|
|
'preStepCallback': self.preStepCallback, // A method to call before each step
|
2013-10-23 06:46:07 +02:00
|
|
|
'postStepCallback': self.postStepCallback, // A method to call after each step
|
|
|
|
'postRideCallback': self.postRideCallback // a method to call once the tour closes
|
|
|
|
});
|
|
|
|
};
|
|
|
|
this.tour();
|
|
|
|
};
|
|
|
|
|
|
|
|
this.preRideCallback = function(index, tip) {
|
|
|
|
console.log("GrandTour >> f:preRideCallback() >> index: " + index);
|
2013-10-23 17:01:59 +02:00
|
|
|
if (index == 0 && $.cookie("Doodle3DFirstTime") == "ridden") {
|
|
|
|
console.log("GrandTour >> f:preRideCallback() >> we've been here before...");
|
|
|
|
|
|
|
|
if ($.cookie("grandTourFinished")) {
|
|
|
|
// grand tour was previously finished (eh.. is that useful?)
|
|
|
|
|
|
|
|
// executing this 3 times because there doesn't seem to be a 'go to step X' method
|
|
|
|
// $(this).joyride('set_li', false);
|
|
|
|
$(this).joyride('set_li', false);
|
2013-10-23 23:40:26 +02:00
|
|
|
// $(this).joyride('set_li', false);
|
2013-10-23 17:01:59 +02:00
|
|
|
} else {
|
|
|
|
$(this).joyride('set_li', false);
|
|
|
|
}
|
2013-10-23 06:46:07 +02:00
|
|
|
}
|
2013-10-23 17:01:59 +02:00
|
|
|
|
2013-10-23 19:10:32 +02:00
|
|
|
// bring up thermometer and progressbar to explain them
|
2013-10-23 17:01:59 +02:00
|
|
|
thermometer.show();
|
|
|
|
progressbar.show();
|
2013-10-23 23:40:26 +02:00
|
|
|
message.hide();
|
2013-10-23 19:10:32 +02:00
|
|
|
|
2013-10-23 06:46:07 +02:00
|
|
|
};
|
2013-10-23 17:01:59 +02:00
|
|
|
this.preStepCallback = function(index, tip) {
|
2013-10-23 23:40:26 +02:00
|
|
|
// console.log("GrandTour >> f:preStepCallback() >> index: " + index);
|
|
|
|
// console.log("GrandTour >> f:preStepCallback() >> tip: " , tip);
|
|
|
|
// console.log("GrandTour >> f:preStepCallback() >> $(this): " , $(this));
|
|
|
|
// console.log("GrandTour >> f:preStepCallback() >> tipsettings: " , $(this)[0].tipSettings);
|
2013-10-23 17:01:59 +02:00
|
|
|
|
|
|
|
var dataset = $(this)[0].$li[0].dataset;
|
|
|
|
if (dataset.action != undefined) {
|
|
|
|
console.log(" THERE'S AN ACTION!");
|
|
|
|
switch (dataset.action) {
|
|
|
|
case "sayHello":
|
|
|
|
console.log(" action: sayHello");
|
|
|
|
break;
|
|
|
|
case "showMessage":
|
|
|
|
console.log(" action: showMessage");
|
2013-10-23 23:40:26 +02:00
|
|
|
message.set("This is a status message...", Message.NOTICE);
|
|
|
|
// message.show();
|
2013-10-23 17:01:59 +02:00
|
|
|
break;
|
|
|
|
case "showProgressBar":
|
|
|
|
console.log(" action: showProgressBar");
|
|
|
|
progressbar.show();
|
|
|
|
break;
|
|
|
|
case "showThermometer":
|
|
|
|
console.log(" action: showThermometer");
|
|
|
|
thermometer.show();
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
};
|
2013-10-23 06:46:07 +02:00
|
|
|
this.postStepCallback = function(index, tip) {
|
|
|
|
console.log("GrandTour >> f:postStepCallback() >> index: " + index);
|
2013-10-23 17:01:59 +02:00
|
|
|
|
|
|
|
var dataset = $(this)[0].$li[0].dataset;
|
|
|
|
if (dataset.action != undefined) {
|
|
|
|
console.log(" THERE *WAS* AN ACTION!");
|
|
|
|
switch (dataset.action) {
|
|
|
|
case "sayHello":
|
2013-10-23 23:40:26 +02:00
|
|
|
// console.log(" action: sayHello");
|
2013-10-23 17:01:59 +02:00
|
|
|
break;
|
|
|
|
case "showMessage":
|
2013-10-23 23:40:26 +02:00
|
|
|
// console.log(" action: showMessage");
|
2013-10-23 17:01:59 +02:00
|
|
|
// message.hide();
|
|
|
|
break;
|
|
|
|
case "showProgressBar":
|
2013-10-23 23:40:26 +02:00
|
|
|
// console.log(" action: showProgressBar");
|
2013-10-23 17:01:59 +02:00
|
|
|
// progressbar.hide();
|
|
|
|
break;
|
|
|
|
case "showThermometer":
|
2013-10-23 23:40:26 +02:00
|
|
|
// console.log(" action: showThermometer");
|
2013-10-23 17:01:59 +02:00
|
|
|
// thermometer.hide();
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
2013-10-23 06:46:07 +02:00
|
|
|
};
|
|
|
|
this.postRideCallback = function(index, tip) {
|
2013-10-23 17:01:59 +02:00
|
|
|
// console.log("GrandTour >> f:postRideCallback() >> index: " + index + ", self.active: " + self.active);
|
|
|
|
// console.log("GrandTour >> f:postRideCallback() >> this: " , self);
|
|
|
|
|
|
|
|
self.active = false;
|
2013-10-23 06:46:07 +02:00
|
|
|
|
|
|
|
$(document).trigger(helpTours.TOURFINISHED, self.name);
|
|
|
|
|
2013-10-23 17:01:59 +02:00
|
|
|
// hide the elements which were summoned for the purposes of the tour
|
2013-10-23 19:10:32 +02:00
|
|
|
// thermometer.hide();
|
|
|
|
// progressbar.hide();
|
|
|
|
// message.hide();
|
2013-10-23 17:01:59 +02:00
|
|
|
|
|
|
|
// after seeing the grand tour for the first time ever, set cookie 'Doodle3DFirstTime' to true
|
|
|
|
if (!$.cookie("Doodle3DFirstTime")) {
|
|
|
|
$.cookie("Doodle3DFirstTime", 'ridden', { expires: 365, domain: false, path: '/' });
|
|
|
|
}
|
|
|
|
|
2013-10-23 06:46:07 +02:00
|
|
|
if (index < $(this)[0].$tip_content.length - 1) {
|
2013-10-23 17:01:59 +02:00
|
|
|
console.log("GrandTour >> f:postRideCallback() >> tour terminated before its true end");
|
|
|
|
// tour wasn't finished
|
|
|
|
|
|
|
|
// tour was ended prematurely. For only the first few visits, nag the user about being able to revisit the tour..
|
|
|
|
if (parseInt($.cookie("Doodle3DVisitCounter")) < helpTours.numTimesToShowNagPopup) {
|
|
|
|
helpTours.startTour(helpTours.INFOREMINDER, helpTours);
|
|
|
|
}
|
2013-10-23 06:46:07 +02:00
|
|
|
// infoReminderTour.start();
|
|
|
|
} else {
|
2013-10-23 17:01:59 +02:00
|
|
|
// tour was finished
|
|
|
|
console.log("GrandTour >> f:postRideCallback() >> tour ended at its true end");
|
2013-10-23 06:46:07 +02:00
|
|
|
// we should be at the end...
|
2013-10-23 17:01:59 +02:00
|
|
|
if (!$.cookie("grandTourFinished") && parseInt($.cookie("Doodle3DVisitCounter")) < helpTours.numTimesToShowNagPopup) {
|
|
|
|
helpTours.startTour(helpTours.INFOREMINDER, helpTours);
|
|
|
|
}
|
|
|
|
$.cookie("grandTourFinished", 'yes', { expires: 365, domain: false, path: '/' });
|
2013-10-23 06:46:07 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
};
|
|
|
|
|
|
|
|
this.start = function() {
|
2013-10-23 17:01:59 +02:00
|
|
|
console.log("GrandTour >> f:start() >> this: " , this);
|
|
|
|
this.active = true;
|
2013-10-23 06:46:07 +02:00
|
|
|
$(window).joyride('restart');
|
|
|
|
// self.tour();
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|
|
|
|
var infoReminderTour;
|
|
|
|
function InfoReminderTour(_name) {
|
|
|
|
console.log("InfoReminderTour");
|
|
|
|
this.tour = "";
|
|
|
|
this.name = _name;
|
2013-10-23 17:01:59 +02:00
|
|
|
this.active = false;
|
2013-10-23 06:46:07 +02:00
|
|
|
var self = this;
|
|
|
|
|
|
|
|
this.init = function(callback) {
|
|
|
|
console.log("InfoReminderTour >> f:init()");
|
|
|
|
|
|
|
|
this.tour = function() {
|
|
|
|
$('#help_InfoReminder').joyride({
|
|
|
|
autoStart: false,
|
|
|
|
modal: true,
|
|
|
|
expose: true,
|
|
|
|
'tipAdjustmentX': 15,
|
|
|
|
'tipAdjustmentY': 15,
|
2013-10-23 17:01:59 +02:00
|
|
|
'tipLocation': 'bottom', // 'top' or 'bottom' in relation to parent
|
2013-10-23 06:46:07 +02:00
|
|
|
'nubPosition': 'auto', // override on a per tooltip bases
|
|
|
|
'scrollSpeed': 300, // Page scrolling speed in ms
|
|
|
|
'nextButton': true, // true/false for next button visibility
|
|
|
|
'tipAnimation': 'fade', // 'pop' or 'fade' in each tip
|
2013-10-23 17:01:59 +02:00
|
|
|
'tipAnimationFadeSpeed': 350, // if 'fade'- speed in ms of transition
|
2013-10-23 06:46:07 +02:00
|
|
|
'preRideCallback' : self.preRideCallback,
|
|
|
|
'postStepCallback': self.postStepCallback, // A method to call after each step
|
|
|
|
'postRideCallback': self.postRideCallback // a method to call once the tour closes
|
|
|
|
});
|
|
|
|
}
|
|
|
|
this.tour();
|
|
|
|
if (callback != undefined) callback();
|
|
|
|
};
|
|
|
|
|
|
|
|
this.preRideCallback = function(index, tip) {
|
|
|
|
console.log("InfoReminderTour >> f:preRideCallback() >> index: " + index + ", tip: " , tip);
|
|
|
|
};
|
|
|
|
this.postStepCallback = function(index, tip) {
|
|
|
|
console.log("InfoReminderTour >> f:postStepCallback() >> index: " + index + ", tip: " , tip);
|
|
|
|
};
|
|
|
|
this.postRideCallback = function(index, tip) {
|
|
|
|
console.log("InfoReminderTour >> f:postRideCallback() >> index: " + index + ", tip: " , tip);
|
2013-10-23 17:01:59 +02:00
|
|
|
this.active = false;
|
2013-10-23 06:46:07 +02:00
|
|
|
$(document).trigger(helpTours.TOURFINISHED, self.name);
|
|
|
|
};
|
|
|
|
|
|
|
|
this.start = function() {
|
|
|
|
console.log("InfoReminderTour >> f:start()");
|
2013-10-23 17:01:59 +02:00
|
|
|
this.active = true;
|
2013-10-23 06:46:07 +02:00
|
|
|
$(window).joyride('restart');
|
|
|
|
// self.tour();
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|
|
|
|
function initHelp() {
|
|
|
|
console.log("f:initHelp()");
|
|
|
|
|
2013-10-23 17:01:59 +02:00
|
|
|
// track number of visits of this user
|
|
|
|
if ($.cookie("Doodle3DVisitCounter") == null) {
|
|
|
|
$.cookie("Doodle3DVisitCounter", '0');
|
|
|
|
} else {
|
|
|
|
$.cookie("Doodle3DVisitCounter", parseInt($.cookie("Doodle3DVisitCounter")) + 1);
|
|
|
|
}
|
2013-10-23 06:46:07 +02:00
|
|
|
|
2013-10-23 17:01:59 +02:00
|
|
|
// load the html file which describes the tour contents
|
2013-10-23 06:46:07 +02:00
|
|
|
$("#helpContainer").load("helpcontent.html", function() {
|
|
|
|
console.log("helpContent loaded");
|
2013-10-23 17:01:59 +02:00
|
|
|
|
2013-10-23 06:46:07 +02:00
|
|
|
helpTours = new HelpTours();
|
2013-10-23 17:01:59 +02:00
|
|
|
|
|
|
|
helpTours.init( function () {
|
|
|
|
|
2013-10-23 19:10:32 +02:00
|
|
|
|
|
|
|
if (parseInt($.cookie("Doodle3DVisitCounter")) < helpTours.numTimesToShowNagPopup) {
|
2013-10-23 17:01:59 +02:00
|
|
|
console.log("initHelp >> Doodle3DFirstTime cookie is set, Doodle3DVisitCounter is < 4");
|
2013-10-23 19:10:32 +02:00
|
|
|
if ($.cookie("Doodle3DFirstTime") != "ridden") {
|
|
|
|
setTimeout(helpTours.startTour, 750, helpTours.tours.grandTour, helpTours);
|
|
|
|
} else {
|
|
|
|
setTimeout(helpTours.startTour, 750, helpTours.tours.infoReminderTour, helpTours);
|
|
|
|
}
|
2013-10-23 17:01:59 +02:00
|
|
|
// remind user of our nifty tour
|
2013-10-23 19:10:32 +02:00
|
|
|
} else if (parseInt($.cookie("Doodle3DVisitCounter")) == helpTours.numTimesToShowNagPopup && $.cookie("Doodle3DFirstTime") != "ridden") {
|
|
|
|
// remind
|
2013-10-23 17:01:59 +02:00
|
|
|
setTimeout(helpTours.startTour, 750, helpTours.tours.infoReminderTour, helpTours);
|
|
|
|
}
|
2013-10-23 19:10:32 +02:00
|
|
|
// // only trigger starttour if user is seeing Doodle3D for the first time
|
|
|
|
// if ($.cookie("Doodle3DFirstTime") != "ridden") {
|
|
|
|
// console.log("initHelp >> intro tour has not been given yet > let's go!");
|
|
|
|
// setTimeout(helpTours.startTour, 750, helpTours.tours.grandTour, helpTours);
|
|
|
|
// } else if (parseInt($.cookie("Doodle3DVisitCounter")) < helpTours.numTimesToShowNagPopup) {
|
|
|
|
// console.log("initHelp >> Doodle3DFirstTime cookie is set, Doodle3DVisitCounter is < 4");
|
|
|
|
// // remind user of our nifty tour
|
|
|
|
// setTimeout(helpTours.startTour, 750, helpTours.tours.infoReminderTour, helpTours);
|
|
|
|
// }
|
2013-10-23 17:01:59 +02:00
|
|
|
});
|
2013-10-23 06:46:07 +02:00
|
|
|
});
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
var helpTours;
|
|
|
|
function HelpTours() {
|
|
|
|
console.log("HelpTours");
|
|
|
|
|
2013-10-23 19:10:32 +02:00
|
|
|
this.numTimesToShowNagPopup = 2;
|
2013-10-23 17:01:59 +02:00
|
|
|
|
2013-10-23 06:46:07 +02:00
|
|
|
this.WELCOMETOUR = "welcometour";
|
|
|
|
this.INFOREMINDER = "inforeminder";
|
|
|
|
this.TOURFINISHED = "tourfinished";
|
2013-10-23 17:01:59 +02:00
|
|
|
this.tours = {
|
|
|
|
'grandTour' : this.WELCOMETOUR,
|
|
|
|
'infoReminderTour' : this.INFOREMINDER
|
|
|
|
};
|
2013-10-23 06:46:07 +02:00
|
|
|
|
2013-10-23 17:01:59 +02:00
|
|
|
this.currActiveTour = "";
|
2013-10-23 06:46:07 +02:00
|
|
|
this.tourActive = false;
|
|
|
|
|
|
|
|
var self = this;
|
|
|
|
|
2013-10-23 17:01:59 +02:00
|
|
|
this.init = function(callback) {
|
|
|
|
console.log("HelpTours >> f:init >> self: " + self);
|
2013-10-23 06:46:07 +02:00
|
|
|
$(document).on(this.TOURFINISHED, this.tourEnded);
|
|
|
|
|
|
|
|
grandTour = new GrandTour(this.WELCOMETOUR);
|
|
|
|
infoReminderTour = new InfoReminderTour(this.INFOREMINDER);
|
|
|
|
|
2013-10-23 17:01:59 +02:00
|
|
|
// this.tours["grandTour"] = self.WELCOMETOUR;
|
|
|
|
// this.tours["infoReminderTour "]= self.INFOREMINDER;
|
|
|
|
console.log("HelpTours >> f:init >> this.tours: " , this.tours);
|
|
|
|
|
|
|
|
if (callback != undefined) callback();
|
2013-10-23 06:46:07 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
|
2013-10-23 17:01:59 +02:00
|
|
|
this.startTour = function(which, scope) {
|
|
|
|
if (scope == undefined) scope = this;
|
|
|
|
// console.log("HelpTours >> f:startTour >> scope: " , scope);
|
|
|
|
// console.log("HelpTours >> f:startTour >> currActiveTour: " , scope.currActiveTour.name);
|
|
|
|
// console.log("HelpTours >> f:startTour >> currActiveTour.active: " , scope.currActiveTour.active);
|
|
|
|
// console.log("HelpTours >> f:startTour >> target to start: '" + which);
|
|
|
|
|
|
|
|
|
2013-10-23 06:46:07 +02:00
|
|
|
switch (which) {
|
2013-10-23 17:01:59 +02:00
|
|
|
case scope.WELCOMETOUR:
|
2013-10-23 06:46:07 +02:00
|
|
|
// do welcometour
|
2013-10-23 17:01:59 +02:00
|
|
|
// console.log("HelpTours >> f:startTour >> case this.WELCOMETOUR >> scope.tourActive = " + scope.tourActive);
|
|
|
|
console.log("HelpTours >> f:startTour >> case this.WELCOMETOUR");
|
|
|
|
if (scope.tourActive) {
|
|
|
|
if (scope.currActiveTour.active == true) {
|
|
|
|
$(window).joyride('end');
|
|
|
|
scope.currActiveTour = undefined;
|
|
|
|
}
|
|
|
|
scope.tourActive = false;
|
2013-10-23 06:46:07 +02:00
|
|
|
}
|
|
|
|
$(window).joyride('destroy');
|
2013-10-23 17:01:59 +02:00
|
|
|
// var self = this;
|
|
|
|
grandTour.init();
|
|
|
|
setTimeout(function(scp) {
|
|
|
|
grandTour.start();
|
|
|
|
scp.currActiveTour = grandTour;
|
|
|
|
scp.tourActive = true;
|
|
|
|
}, 250, scope);
|
2013-10-23 06:46:07 +02:00
|
|
|
// $(window).joyride('restart');
|
|
|
|
|
|
|
|
break;
|
|
|
|
case self.INFOREMINDER:
|
|
|
|
// do info reminder
|
2013-10-23 17:01:59 +02:00
|
|
|
// console.log("HelpTours >> f:startTour >> case self.INFOREMINDER >> scope.tourActive = " + scope.tourActive);
|
|
|
|
console.log("HelpTours >> f:startTour >> case self.INFOREMINDER");
|
|
|
|
if (scope.tourActive) {
|
|
|
|
// console.log(" killing previous joyride... ");
|
|
|
|
if (scope.currActiveTour.active == true) {
|
|
|
|
$(window).joyride('end');
|
|
|
|
scope.currActiveTour = undefined;
|
|
|
|
}
|
|
|
|
// console.log(" setting tourActive to false....");
|
|
|
|
scope.tourActive = false;
|
|
|
|
// console.log(" scope.tourActive: " + scope.tourActive);
|
2013-10-23 06:46:07 +02:00
|
|
|
}
|
|
|
|
$(window).joyride('destroy');
|
2013-10-23 17:01:59 +02:00
|
|
|
// var self = this;
|
|
|
|
infoReminderTour.init();
|
|
|
|
setTimeout(function(scp) {
|
|
|
|
infoReminderTour.start();
|
|
|
|
scp.currActiveTour = infoReminderTour;
|
|
|
|
scp.tourActive = true;
|
|
|
|
}, 250, scope);
|
2013-10-23 06:46:07 +02:00
|
|
|
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
this.tourEnded = function(e, n) {
|
2013-10-23 19:10:32 +02:00
|
|
|
console.log("HelpTours >> f:tourEnded >> self.tourActive: " + self.tourActive + ", name: " + n);
|
|
|
|
|
|
|
|
$(window).joyride('destroy');
|
|
|
|
self.currActiveTour = undefined;
|
2013-10-23 17:01:59 +02:00
|
|
|
self.tourActive = false;
|
2013-10-23 19:10:32 +02:00
|
|
|
|
|
|
|
thermometer.hide();
|
|
|
|
progressbar.hide();
|
2013-10-23 23:40:26 +02:00
|
|
|
message.hide();
|
2013-10-23 19:10:32 +02:00
|
|
|
printer.checkStatus();
|
2013-10-23 06:46:07 +02:00
|
|
|
}
|
|
|
|
}
|