2016-09-08 01:23:15 +02:00
|
|
|
|
|
|
|
|
|
|
|
function SCaseList() {
|
|
|
|
lastChange=0;
|
|
|
|
|
|
|
|
this.importExampleData=function() {
|
|
|
|
var exampleData={
|
|
|
|
'Vacances': {
|
|
|
|
'Papier': {
|
|
|
|
'color': '#f00',
|
|
|
|
'things': ['Papier blanc', 'Stylo', "Carte d'identité"]
|
|
|
|
},
|
|
|
|
'Multimédia' : {
|
|
|
|
'color': '#0f0',
|
|
|
|
'things': ['Montre', 'Chargeur montre', "PC portable"]
|
|
|
|
}
|
|
|
|
}
|
|
|
|
};
|
|
|
|
for (scaseName in exampleData) {
|
|
|
|
var scase=this.newSCase(scaseName);
|
|
|
|
for (catName in exampleData[scaseName]) {
|
|
|
|
var cat=scase.cats.newCat(catName);
|
|
|
|
for (idx in exampleData[scaseName][catName].things) {
|
|
|
|
cat.newThing(exampleData[scaseName][catName].things[idx]);
|
2016-09-06 01:12:46 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
this.loadFromLocalStorage=function() {
|
|
|
|
if (jQuery.type(localStorage.scases)!='undefined') {
|
|
|
|
try {
|
|
|
|
var data=JSON.parse(localStorage.scases);
|
|
|
|
this.lastChange=data.lastChange;
|
|
|
|
for (el in data.scases) {
|
2016-09-08 01:23:15 +02:00
|
|
|
this[el]=new SCase(false,false,data.scases[el]);
|
2016-09-06 01:12:46 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
catch(e) {
|
|
|
|
for (el in this) {
|
|
|
|
if (this.isSCase(this[el])) {
|
|
|
|
delete this[el];
|
|
|
|
}
|
|
|
|
}
|
|
|
|
myconfirm('Erreur en chargeant les données locales. On les purges ?',
|
|
|
|
function(data) {
|
|
|
|
delete localStorage.scases;
|
|
|
|
location.reload();
|
|
|
|
}
|
|
|
|
);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
myconfirm("<h2>Bienvenu !</h2><p>Souhaitez-vous charger les données d'exemple ?</p>",
|
2016-09-08 01:23:15 +02:00
|
|
|
function(scases) {
|
|
|
|
scases.importExampleData();
|
|
|
|
scases.save();
|
|
|
|
show_scases();
|
|
|
|
},
|
|
|
|
false,
|
|
|
|
this
|
2016-09-06 01:12:46 +02:00
|
|
|
);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
this.export=function() {
|
|
|
|
return {
|
|
|
|
'lastChange': this.lastChange,
|
|
|
|
'scases': this.each(function(idx,scase) {
|
|
|
|
return scase.export();
|
|
|
|
})
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|
|
|
|
this.import=function(data) {
|
|
|
|
ret={};
|
|
|
|
for (el in this) {
|
|
|
|
if (this.isSCase(this[el])) {
|
|
|
|
delete ret[el];
|
|
|
|
}
|
|
|
|
}
|
|
|
|
this.lastChange=data.lastChange;
|
|
|
|
for (el in data.scases) {
|
2016-09-08 01:23:15 +02:00
|
|
|
this[el]=new SCase(false,false,data.scases[el]);
|
2016-09-06 01:12:46 +02:00
|
|
|
}
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
this.save=function() {
|
|
|
|
localStorage.scases=JSON.stringify(this.export());
|
|
|
|
}
|
|
|
|
|
|
|
|
this.each=function(fct) {
|
|
|
|
var idx=0;
|
|
|
|
var ret={};
|
|
|
|
for (el in this) {
|
|
|
|
if(this.isSCase(this[el])) {
|
|
|
|
ret[el]=fct(idx++,this[el]);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
this.count=function() {
|
|
|
|
len=0;
|
|
|
|
this.each(function(idx,scase) {
|
|
|
|
len=len+1;
|
|
|
|
});
|
|
|
|
return len;
|
|
|
|
}
|
|
|
|
|
|
|
|
this.isSCase=function(el) {
|
|
|
|
return (jQuery.type(el)=='object' && jQuery.type(el.isSCase)=='function' && el.isSCase());
|
|
|
|
}
|
|
|
|
|
|
|
|
this.byName=function(name) {
|
|
|
|
for (el in this) {
|
|
|
|
if(this.isSCase(this[el])) {
|
|
|
|
if (this[el].name==name) {
|
|
|
|
return this[el];
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
this.removeSCase=function(name) {
|
|
|
|
for (el in this) {
|
|
|
|
if (this.isSCase(this[el]) && this[el].name==name) {
|
|
|
|
delete this[el];
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
this.newSCase=function(name) {
|
2016-09-08 01:23:15 +02:00
|
|
|
if (!this.byName(this[name])) {
|
|
|
|
var uuid=uuid||generate_uuid();
|
|
|
|
this[uuid]=new SCase(uuid,name);
|
|
|
|
return this[uuid];
|
2016-09-06 01:12:46 +02:00
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
this.renameSCase=function(name,newname) {
|
|
|
|
var scase=this.byName(name);
|
|
|
|
if (scase && !this.byName(newname)) {
|
|
|
|
scase.name=newname;
|
2016-09-08 01:23:15 +02:00
|
|
|
scase.lastChange=new Date().getTime();
|
2016-09-06 01:12:46 +02:00
|
|
|
return scase;
|
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
this.copySCase=function(name,newname) {
|
|
|
|
var orig_scase=this.byName(name);
|
|
|
|
if (this.isSCase(orig_scase) && !this.byName(newname)) {
|
2016-09-08 01:23:15 +02:00
|
|
|
var uuid=uuid||generate_uuid();
|
|
|
|
this[uuid]=new SCase(false,false,orig_scase.export());
|
|
|
|
this[uuid].uuid=uuid;
|
|
|
|
this[uuid].lastChange=new Date().getTime();
|
|
|
|
this[uuid].name=newname;
|
|
|
|
return this[uuid];
|
2016-09-06 01:12:46 +02:00
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2016-09-07 00:30:25 +02:00
|
|
|
this.resetSCase=function(name) {
|
|
|
|
for (el in this) {
|
|
|
|
if (this.isSCase(this[el]) && this[el].name==name) {
|
|
|
|
return this[el].reset();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|
2016-09-06 01:12:46 +02:00
|
|
|
}
|
|
|
|
|
2016-09-08 01:23:15 +02:00
|
|
|
function SCase(uuid,name,data) {
|
|
|
|
this.uuid=uuid||generate_uuid();
|
2016-09-06 01:12:46 +02:00
|
|
|
this.name=name;
|
|
|
|
this.cats=new CatList();
|
2016-09-08 01:23:15 +02:00
|
|
|
this.lastChange=new Date().getTime();
|
2016-09-06 01:12:46 +02:00
|
|
|
|
|
|
|
this.isSCase=function() {
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2016-09-08 01:23:15 +02:00
|
|
|
this.import=function(data) {
|
|
|
|
this.uuid=data.uuid || generate_uuid();
|
|
|
|
this.lastChange=data.lastChange || new Date().getTime();
|
|
|
|
this.name=decodeURIComponent(data.name);
|
|
|
|
if (jQuery.type(data.cats) == 'object') {
|
|
|
|
this.cats=new CatList(data.cats);
|
|
|
|
}
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2016-09-06 01:12:46 +02:00
|
|
|
this.export=function() {
|
|
|
|
return {
|
2016-09-08 01:23:15 +02:00
|
|
|
'uuid': this.uuid,
|
|
|
|
'lastChange': this.lastChange,
|
2016-09-06 01:12:46 +02:00
|
|
|
'name': encodeURIComponent(this.name),
|
|
|
|
'cats': this.cats.export()
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|
|
|
|
this.byName=function(name) {
|
|
|
|
for (idx in this.cats) {
|
|
|
|
if (name==this.cats[idx].name) {
|
|
|
|
return this.cats[idx];
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2016-09-07 19:06:11 +02:00
|
|
|
this.stats=function() {
|
|
|
|
var cats=0;
|
|
|
|
var things=0;
|
|
|
|
var things_done=0;
|
|
|
|
this.cats.each(function(cidx,cat) {
|
|
|
|
cats++;
|
|
|
|
for (idx in cat.things) {
|
|
|
|
things++;
|
|
|
|
if (cat.things[idx].checked) {
|
|
|
|
things_done++;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
});
|
|
|
|
return {
|
|
|
|
'cats': cats,
|
|
|
|
'things': things,
|
|
|
|
'done': things_done
|
|
|
|
}
|
2016-09-06 01:12:46 +02:00
|
|
|
}
|
|
|
|
|
2016-09-07 00:30:25 +02:00
|
|
|
this.reset=function() {
|
|
|
|
this.cats.each(function(idx,cat) {
|
|
|
|
for (idx in cat.things) {
|
|
|
|
if (cat.things[idx].checked) {
|
|
|
|
cat.things[idx].checked=false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
});
|
2016-09-08 01:23:15 +02:00
|
|
|
this.lastChange=new Date().getTime();
|
2016-09-07 00:30:25 +02:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2016-09-06 01:12:46 +02:00
|
|
|
/*
|
|
|
|
* Contructor
|
|
|
|
*/
|
|
|
|
if (jQuery.type(data)=='object') {
|
|
|
|
try {
|
2016-09-08 01:23:15 +02:00
|
|
|
this.import(data);
|
2016-09-06 01:12:46 +02:00
|
|
|
}
|
|
|
|
catch (e) {
|
|
|
|
console.log(e);
|
|
|
|
alert('Une erreur est survenue en chargeant la valise '+this.name+' depuis le cache');
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
function CatList(data) {
|
|
|
|
this.export=function() {
|
2016-09-08 01:23:15 +02:00
|
|
|
return this.each(function(idx,cat) {
|
|
|
|
return cat.export();
|
|
|
|
});
|
2016-09-06 01:12:46 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
this.import=function(data) {
|
|
|
|
for (el in this) {
|
|
|
|
if (this.isCat(this[el])) {
|
|
|
|
delete this[el];
|
|
|
|
}
|
|
|
|
}
|
2016-09-08 01:23:15 +02:00
|
|
|
for (el in data) {
|
|
|
|
this[el]=new Cat(el,false,false,data[el]);
|
2016-09-06 01:12:46 +02:00
|
|
|
}
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
this.each=function(fct) {
|
|
|
|
var idx=0;
|
|
|
|
var ret={};
|
|
|
|
for (el in this) {
|
|
|
|
if(this.isCat(this[el])) {
|
|
|
|
ret[el]=fct(idx++,this[el]);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
this.count=function() {
|
|
|
|
len=0;
|
|
|
|
this.each(function(idx,cat) {
|
|
|
|
len=len+1;
|
|
|
|
});
|
|
|
|
return len;
|
|
|
|
}
|
|
|
|
|
|
|
|
this.isCat=function(el) {
|
|
|
|
return (jQuery.type(el)=='object' && jQuery.type(el.isCat)=='function' && el.isCat());
|
|
|
|
}
|
|
|
|
|
|
|
|
this.byName=function(name) {
|
|
|
|
for (el in this) {
|
|
|
|
if(this.isCat(this[el])) {
|
|
|
|
if (this[el].name==name) {
|
|
|
|
return this[el];
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
this.newCat=function(name) {
|
|
|
|
if (!this.isCat(this[name])) {
|
2016-09-08 01:23:15 +02:00
|
|
|
var uuid=uuid||generate_uuid();
|
|
|
|
this[uuid]=new Cat(uuid,name);
|
|
|
|
return this[uuid];
|
2016-09-06 01:12:46 +02:00
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
this.renameCat=function(name,newname) {
|
|
|
|
var cat=this.byName(name);
|
|
|
|
if (cat && !this.byName(newname)) {
|
|
|
|
cat.name=newname;
|
2016-09-08 01:23:15 +02:00
|
|
|
cat.lastChange=new Date().getTime();
|
2016-09-06 01:12:46 +02:00
|
|
|
return cat;
|
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
this.removeCat=function(name) {
|
|
|
|
for (el in this) {
|
|
|
|
if (this.isCat(this[el]) && this[el].name==name) {
|
|
|
|
delete this[el];
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Contructor
|
|
|
|
*/
|
|
|
|
if (jQuery.type(data)=='object') {
|
|
|
|
try {
|
|
|
|
this.import(data);
|
|
|
|
}
|
|
|
|
catch (e) {
|
|
|
|
console.log(e);
|
|
|
|
alert('Une erreur est survenue en chargeant la liste de catégorie depuis le cache');
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
2016-09-08 01:23:15 +02:00
|
|
|
function Cat(uuid,name,color,data) {
|
|
|
|
this.uuid=generate_uuid();
|
|
|
|
this.lastChange=new Date().getTime();
|
2016-09-06 01:12:46 +02:00
|
|
|
this.name=name;
|
|
|
|
this.color=color || '#'+(0x1000000+(Math.random())*0xffffff).toString(16).substr(1,6);
|
2016-09-08 01:23:15 +02:00
|
|
|
this.things={};
|
2016-09-06 01:12:46 +02:00
|
|
|
|
|
|
|
this.isCat=function() {
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2016-09-08 01:23:15 +02:00
|
|
|
this.import=function(data) {
|
|
|
|
this.uuid=data.uuid || generate_uuid();
|
|
|
|
this.lastChange=data.lastChange||new Date().getTime();
|
|
|
|
this.name=decodeURIComponent(data.name);
|
|
|
|
this.color=data.color;
|
|
|
|
if (jQuery.type(data.things) == 'object') {
|
|
|
|
for (tuuid in data.things) {
|
|
|
|
this.things[tuuid]=new Thing(tuuid);
|
|
|
|
this.things[tuuid].import(data.things[tuuid]);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2016-09-06 01:12:46 +02:00
|
|
|
this.export=function() {
|
2016-09-08 01:23:15 +02:00
|
|
|
var things={};
|
|
|
|
for (tuuid in this.things) {
|
|
|
|
things[tuuid]=this.things[tuuid].export();
|
2016-09-06 01:12:46 +02:00
|
|
|
}
|
|
|
|
return {
|
2016-09-08 01:23:15 +02:00
|
|
|
'uuid': this.uuid,
|
|
|
|
'lastChange': this.lastChange,
|
2016-09-06 01:12:46 +02:00
|
|
|
'name': encodeURIComponent(this.name),
|
|
|
|
'color': this.color,
|
|
|
|
'things': things
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|
|
|
|
this.byLabel=function(label) {
|
|
|
|
for (idx in this.things) {
|
|
|
|
if (label==this.things[idx].label) {
|
|
|
|
return this.things[idx];
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
this.count=function() {
|
2016-09-08 01:23:15 +02:00
|
|
|
return keys(this.things).length;
|
2016-09-06 01:12:46 +02:00
|
|
|
}
|
|
|
|
|
2016-09-08 01:23:15 +02:00
|
|
|
this.stats=function() {
|
2016-09-06 01:12:46 +02:00
|
|
|
var count=0;
|
2016-09-08 01:23:15 +02:00
|
|
|
var done=0;
|
2016-09-06 01:12:46 +02:00
|
|
|
for (idx in this.things) {
|
|
|
|
if (this.things[idx].checked) {
|
2016-09-08 01:23:15 +02:00
|
|
|
done+=1;
|
2016-09-06 01:12:46 +02:00
|
|
|
}
|
2016-09-08 01:23:15 +02:00
|
|
|
count+=1;
|
2016-09-06 01:12:46 +02:00
|
|
|
}
|
2016-09-08 01:23:15 +02:00
|
|
|
return {
|
|
|
|
'things': count,
|
|
|
|
'done': done
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|
|
|
|
this.newThing=function(label) {
|
|
|
|
if (!this.byLabel(label)) {
|
|
|
|
var uuid=generate_uuid();
|
|
|
|
this.things[uuid]=new Thing(uuid,label);
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
return false;
|
2016-09-06 01:12:46 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
this.renameThing=function(label,newlabel) {
|
|
|
|
var thing=this.byLabel(label);
|
|
|
|
if (thing && !this.byLabel(newlabel)) {
|
|
|
|
thing.label=newlabel;
|
2016-09-08 01:23:15 +02:00
|
|
|
thing.lastChange=new Date().getTime();
|
2016-09-06 01:12:46 +02:00
|
|
|
return thing;
|
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
this.removeThing=function(label) {
|
|
|
|
for (idx in this.things) {
|
|
|
|
if (this.things[idx].label==label) {
|
|
|
|
delete this.things[idx];
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Contructor
|
|
|
|
*/
|
|
|
|
if (jQuery.type(data)=='object') {
|
|
|
|
try {
|
2016-09-08 01:23:15 +02:00
|
|
|
this.import(data);
|
2016-09-06 01:12:46 +02:00
|
|
|
}
|
|
|
|
catch (e) {
|
|
|
|
console.log(e);
|
|
|
|
alert('Une erreur est survenue en chargeant la catégorie catégorie '+this.name+' depuis le cache');
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
2016-09-08 01:23:15 +02:00
|
|
|
function Thing(uuid,label,checked) {
|
|
|
|
this.uuid=uuid||generate_uuid();
|
|
|
|
this.lastChange=new Date().getTime();
|
2016-09-06 01:12:46 +02:00
|
|
|
this.label=label;
|
|
|
|
this.checked=checked;
|
2016-09-08 01:23:15 +02:00
|
|
|
|
|
|
|
this.import=function(data) {
|
|
|
|
this.uuid=data.uuid||generate_uuid();
|
|
|
|
this.lastChange=data.lastChange||new Date().getTime();
|
|
|
|
this.label=decodeURIComponent(data.label),
|
|
|
|
this.checked=data.checked;
|
|
|
|
}
|
|
|
|
|
2016-09-06 01:12:46 +02:00
|
|
|
this.export=function() {
|
|
|
|
return {
|
2016-09-08 01:23:15 +02:00
|
|
|
'uuid': this.uuid,
|
|
|
|
'lastChange': this.lastChange,
|
2016-09-06 01:12:46 +02:00
|
|
|
'label': encodeURIComponent(this.label),
|
|
|
|
'checked': this.checked
|
|
|
|
};
|
|
|
|
}
|
2016-09-08 01:23:15 +02:00
|
|
|
|
|
|
|
this.setChecked=function(value) {
|
|
|
|
this.checked=value;
|
|
|
|
this.lastChange=new Date().getTime();
|
|
|
|
}
|
2016-09-06 01:12:46 +02:00
|
|
|
}
|