Introduce some pre-commit hooks

This commit is contained in:
Benjamin Renard 2024-09-21 17:23:21 +02:00
parent 84716b4527
commit 28e6e167ee
Signed by: bn8
GPG key ID: 3E2E1CE1907115BC
10 changed files with 1275 additions and 1043 deletions

7
.phplint.yml Normal file
View file

@ -0,0 +1,7 @@
path: ./
jobs: 10
extensions:
- php
exclude:
- vendor
warning: true

26
.pre-commit-config.yaml Normal file
View file

@ -0,0 +1,26 @@
# Pre-commit hooks to run tests and ensure code is cleaned.
# See https://pre-commit.com for more information
---
repos:
- repo: https://github.com/adrienverge/yamllint
rev: v1.32.0
hooks:
- id: yamllint
ignore: .github/
- repo: https://github.com/pre-commit/mirrors-prettier
rev: v2.7.1
hooks:
- id: prettier
- repo: https://github.com/digitalpulp/pre-commit-php.git
rev: 1.4.0
hooks:
- id: php-stan
files: ^(?!example/).*\.(php)$
args: ["--configuration=phpstan.neon"]
- repo: https://github.com/pre-commit/pre-commit-hooks
rev: v4.4.0
hooks:
- id: check-executables-have-shebangs
stages: [manual]
- id: check-json
exclude: (.vscode|.devcontainer)

2
.prettierignore Normal file
View file

@ -0,0 +1,2 @@
/static/lib/*
/locales/*

9
.yamllint.yaml Normal file
View file

@ -0,0 +1,9 @@
extends: default
ignore: |
static/lib/*
rules:
line-length:
max: 100
level: warning

View file

@ -1,29 +1,29 @@
{
"name": "brenard/mysc",
"description": "My Sweetcase",
"type": "project",
"require": {
"brenard/eesyphp": "dev-master"
},
"license": "GPL3",
"autoload": {
"psr-4": {
"MySC\\": "src/"
}
},
"authors": [
{
"name": "Benjamin Renard",
"email": "brenard@zionetrix.net"
}
],
"minimum-stability": "dev",
"config": {
"allow-plugins": {
"php-http/discovery": true
}
},
"require-dev": {
"phpstan/phpstan": "2.0.x-dev"
"name": "brenard/mysc",
"description": "My Sweetcase",
"type": "project",
"require": {
"brenard/eesyphp": "dev-master"
},
"license": "GPL3",
"autoload": {
"psr-4": {
"MySC\\": "src/"
}
},
"authors": [
{
"name": "Benjamin Renard",
"email": "brenard@zionetrix.net"
}
],
"minimum-stability": "dev",
"config": {
"allow-plugins": {
"php-http/discovery": true
}
},
"require-dev": {
"phpstan/phpstan": "2.0.x-dev"
}
}

View file

@ -116,8 +116,8 @@ db:
options: null
# Date/Datetime format in database (strptime format)
date_format: '%s'
datetime_format: '%s'
date_format: "%s"
datetime_format: "%s"
# Postgresql
#dsn: "pgsql:host=localhost;port=5432;dbname=items"

4
setup.cfg Normal file
View file

@ -0,0 +1,4 @@
[codespell]
ignore-words-list=fro,hass
exclude-file=.codespell-exclusions
quiet-level=2

View file

@ -1,8 +1,10 @@
body{
body {
margin-top: 4em;
}
div.panel-heading, li.list-group-item, a {
div.panel-heading,
li.list-group-item,
a {
cursor: pointer;
}
@ -19,7 +21,7 @@ div.panel-heading, li.list-group-item, a {
}
.checkable:before {
content: '\2713';
content: "\2713";
margin-right: 0.2em;
font-style: italic;
color: #999;
@ -43,12 +45,14 @@ div.panel-heading, li.list-group-item, a {
font-size: 1.5em;
}
.add_thing_label, #edit_thing_label {
.add_thing_label,
#edit_thing_label {
width: 80%;
display: inline-block;
}
.add_thing_nb, #edit_thing_nb {
.add_thing_nb,
#edit_thing_nb {
width: 18%;
display: inline-block;
}
@ -58,7 +62,8 @@ div.panel-heading, li.list-group-item, a {
background: rgba(66, 215, 252, 0.95);
}
.alertify .ajs-header, .alertify .ajs-footer {
.alertify .ajs-header,
.alertify .ajs-footer {
background-color: #4e5d6c;
}

File diff suppressed because it is too large Load diff

View file

@ -1,61 +1,60 @@
function SCaseList() {
lastChange=0;
lastChange = 0;
this.importExampleData=function() {
var exampleData={
'Vacances': {
'Papier': {
'color': '#f00',
'things': [
{'label': 'Papier blanc', 'nb': 1 },
{'label': 'Stylo', 'nb': 3 },
{'label': "Carte d'identité", 'nb': 1 },
]
this.importExampleData = function () {
var exampleData = {
Vacances: {
Papier: {
color: "#f00",
things: [
{ label: "Papier blanc", nb: 1 },
{ label: "Stylo", nb: 3 },
{ label: "Carte d'identité", nb: 1 },
],
},
'Multimédia' : {
'color': '#0f0',
'things': [
{'label': 'Montre', 'nb': 1 },
{'label': 'Chargeur montre', 'nb': 1 },
{'label': 'PC portable', 'nb': 1 },
]
}
}
Multimédia: {
color: "#0f0",
things: [
{ label: "Montre", nb: 1 },
{ label: "Chargeur montre", nb: 1 },
{ label: "PC portable", nb: 1 },
],
},
},
};
for (scaseName in exampleData) {
var scase=this.newSCase(scaseName);
var scase = this.newSCase(scaseName);
for (catName in exampleData[scaseName]) {
var cat=scase.cats.newCat(catName);
var cat = scase.cats.newCat(catName);
for (idx in exampleData[scaseName][catName].things) {
cat.newThing(exampleData[scaseName][catName].things[idx]['label'],exampleData[scaseName][catName].things[idx]['nb']);
cat.newThing(
exampleData[scaseName][catName].things[idx]["label"],
exampleData[scaseName][catName].things[idx]["nb"]
);
}
}
}
}
};
this.loadFromLocalStorage=function(data) {
if (jQuery.type(localStorage.scases)!='undefined') {
this.loadFromLocalStorage = function (data) {
if (jQuery.type(localStorage.scases) != "undefined") {
try {
return this.loadFromJsonData(JSON.parse(localStorage.scases));
}
catch(e) {
} catch (e) {
return false;
}
}
return null;
}
};
this.loadFromJsonData=function(data) {
this.loadFromJsonData = function (data) {
try {
this.lastChange=data.lastChange;
this.lastChange = data.lastChange;
for (el in data.scases) {
this[el]=new SCase(false,false,data.scases[el]);
this[el] = new SCase(false, false, data.scases[el]);
}
return true;
}
catch(e) {
} catch (e) {
for (el in this) {
if (this.isSCase(this[el])) {
delete this[el];
@ -63,179 +62,181 @@ function SCaseList() {
}
}
return false;
}
};
this.export=function() {
this.export = function () {
return {
'lastChange': this.lastChange,
'scases': this.each(function(idx,scase) {
lastChange: this.lastChange,
scases: this.each(function (idx, scase) {
return scase.export();
})
}),
};
}
};
this.import=function(data) {
ret={};
this.import = function (data) {
ret = {};
for (el in this) {
if (this.isSCase(this[el])) {
delete ret[el];
}
}
this.lastChange=data.lastChange;
this.lastChange = data.lastChange;
for (el in data.scases) {
this[el]=new SCase(false,false,data.scases[el]);
this[el] = new SCase(false, false, data.scases[el]);
}
return true;
}
};
this.save=function() {
localStorage.scases=JSON.stringify(this.export());
}
this.save = function () {
localStorage.scases = JSON.stringify(this.export());
};
this.each=function(fct) {
var idx=0;
var ret={};
this.each = function (fct) {
var idx = 0;
var ret = {};
for (el in this) {
if(this.isSCase(this[el])) {
ret[el]=fct(idx++,this[el]);
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;
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.isSCase = function (el) {
return (
jQuery.type(el) == "object" &&
jQuery.type(el.isSCase) == "function" &&
el.isSCase()
);
};
this.byName=function(name) {
this.byName = function (name) {
for (el in this) {
if(this.isSCase(this[el])) {
if (this[el].name==name) {
if (this.isSCase(this[el])) {
if (this[el].name == name) {
return this[el];
}
}
}
return false;
}
};
this.byUUID=function(uuid) {
this.byUUID = function (uuid) {
return this.isCase(this[uuid]) ? this[uuid] : null;
}
};
this.removeSCase=function(name) {
this.removeSCase = function (name) {
for (el in this) {
if (this.isSCase(this[el]) && this[el].name==name) {
if (this.isSCase(this[el]) && this[el].name == name) {
this[el].remove();
return true;
}
}
return false;
}
};
this.newSCase=function(name) {
this.newSCase = function (name) {
if (this.byName(this[name])) {
var scase=this.byName(name);
var scase = this.byName(name);
if (scase.removed) {
scase.restore();
return true;
}
}
else {
var uuid=uuid||generate_uuid();
this[uuid]=new SCase(uuid,name);
} else {
var uuid = uuid || generate_uuid();
this[uuid] = new SCase(uuid, name);
return this[uuid];
}
return false;
}
};
this.renameSCase=function(name,newname) {
var scase=this.byName(name);
this.renameSCase = function (name, newname) {
var scase = this.byName(name);
if (scase && !this.byName(newname)) {
scase.name=newname;
scase.lastChange=new Date().getTime();
scase.name = newname;
scase.lastChange = new Date().getTime();
return scase;
}
return false;
}
};
this.copySCase=function(name,newname) {
var orig_scase=this.byName(name);
this.copySCase = function (name, newname) {
var orig_scase = this.byName(name);
if (this.isSCase(orig_scase) && !this.byName(newname)) {
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;
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];
}
return false;
}
};
this.resetSCase=function(name) {
this.resetSCase = function (name) {
for (el in this) {
if (this.isSCase(this[el]) && this[el].name==name) {
if (this.isSCase(this[el]) && this[el].name == name) {
return this[el].reset();
}
}
return false;
}
};
}
function SCase(uuid,name,data) {
this.uuid=uuid||generate_uuid();
this.name=name;
this.cats=new CatList();
this.lastChange=new Date().getTime();
this.removed=false;
function SCase(uuid, name, data) {
this.uuid = uuid || generate_uuid();
this.name = name;
this.cats = new CatList();
this.lastChange = new Date().getTime();
this.removed = false;
this.isSCase=function() {
this.isSCase = function () {
return true;
}
};
this.import=function(data) {
this.uuid=data.uuid || generate_uuid();
this.lastChange=data.lastChange || new Date().getTime();
this.name=decodeURIComponent(data.name);
this.removed=data.removed||false;
if (jQuery.type(data.cats) == 'object') {
this.cats=new CatList(data.cats);
this.import = function (data) {
this.uuid = data.uuid || generate_uuid();
this.lastChange = data.lastChange || new Date().getTime();
this.name = decodeURIComponent(data.name);
this.removed = data.removed || false;
if (jQuery.type(data.cats) == "object") {
this.cats = new CatList(data.cats);
}
return true;
}
};
this.export=function() {
this.export = function () {
return {
'uuid': this.uuid,
'lastChange': this.lastChange,
'name': encodeURIComponent(this.name),
'removed': this.removed,
'cats': this.cats.export()
uuid: this.uuid,
lastChange: this.lastChange,
name: encodeURIComponent(this.name),
removed: this.removed,
cats: this.cats.export(),
};
}
};
this.byName=function(name) {
this.byName = function (name) {
for (idx in this.cats) {
if (name==this.cats[idx].name) {
if (name == this.cats[idx].name) {
return this.cats[idx];
}
}
return false;
}
};
this.stats=function() {
var cats=0;
var things=0;
var things_done=0;
this.cats.each(function(cidx,cat) {
this.stats = function () {
var cats = 0;
var things = 0;
var things_done = 0;
this.cats.each(function (cidx, cat) {
if (cat.removed) {
return true;
}
@ -251,399 +252,405 @@ function SCase(uuid,name,data) {
}
});
return {
'cats': cats,
'things': things,
'done': things_done
}
}
cats: cats,
things: things,
done: things_done,
};
};
this.reset=function() {
this.cats.each(function(idx,cat) {
this.reset = function () {
this.cats.each(function (idx, cat) {
for (idx in cat.things) {
if (cat.things[idx].checked) {
cat.things[idx].checked=false;
cat.things[idx].checked = false;
}
}
});
this.lastChange=new Date().getTime();
this.lastChange = new Date().getTime();
return true;
}
};
this.remove=function() {
this.removed=true;
this.lastChange=new Date().getTime();
}
this.remove = function () {
this.removed = true;
this.lastChange = new Date().getTime();
};
this.restore=function() {
this.removed=false;
this.lastChange=new Date().getTime();
}
this.restore = function () {
this.removed = false;
this.lastChange = new Date().getTime();
};
/*
* Contructor
*/
if (jQuery.type(data)=='object') {
if (jQuery.type(data) == "object") {
try {
this.import(data);
}
catch (e) {
} catch (e) {
console.log(e);
alert('Une erreur est survenue en chargeant la valise '+this.name+' depuis le cache');
alert(
"Une erreur est survenue en chargeant la valise " +
this.name +
" depuis le cache"
);
}
}
}
function CatList(data) {
this.export=function() {
return this.each(function(idx,cat) {
this.export = function () {
return this.each(function (idx, cat) {
return cat.export();
});
}
};
this.import=function(data) {
this.import = function (data) {
for (el in this) {
if (this.isCat(this[el])) {
delete this[el];
}
}
for (el in data) {
this[el]=new Cat(el,false,false,data[el]);
this[el] = new Cat(el, false, false, data[el]);
}
return true;
}
};
this.each=function(fct) {
var idx=0;
var ret={};
this.each = function (fct) {
var idx = 0;
var ret = {};
for (el in this) {
if(this.isCat(this[el])) {
ret[el]=fct(idx++,this[el]);
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;
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.isCat = function (el) {
return (
jQuery.type(el) == "object" &&
jQuery.type(el.isCat) == "function" &&
el.isCat()
);
};
this.byName=function(name) {
this.byName = function (name) {
for (el in this) {
if(this.isCat(this[el])) {
if (this[el].name==name) {
if (this.isCat(this[el])) {
if (this[el].name == name) {
return this[el];
}
}
}
return false;
}
};
this.byUUID=function(uuid) {
this.byUUID = function (uuid) {
return this.isCas(this[uuid]) ? this[uuid] : null;
}
};
this.newCat=function(name) {
this.newCat = function (name) {
if (this.byName(name)) {
var cat=this.byName(name);
var cat = this.byName(name);
if (cat.removed) {
cat.restore();
return true;
}
}
else {
var uuid=uuid||generate_uuid();
this[uuid]=new Cat(uuid,name);
} else {
var uuid = uuid || generate_uuid();
this[uuid] = new Cat(uuid, name);
return this[uuid];
}
return false;
}
};
this.renameCat=function(name,newname) {
var cat=this.byName(name);
this.renameCat = function (name, newname) {
var cat = this.byName(name);
if (cat && !this.byName(newname)) {
cat.name=newname;
cat.lastChange=new Date().getTime();
cat.name = newname;
cat.lastChange = new Date().getTime();
return cat;
}
return false;
}
};
this.removeCat=function(name) {
this.removeCat = function (name) {
for (el in this) {
if (this.isCat(this[el]) && this[el].name==name) {
if (this.isCat(this[el]) && this[el].name == name) {
this[el].remove();
return true;
}
}
return false;
}
};
this.restoreCat=function(name) {
this.restoreCat = function (name) {
for (el in this) {
if (this.isCat(this[el]) && this[el].name==name && this[el].removed) {
if (this.isCat(this[el]) && this[el].name == name && this[el].removed) {
this[el].restore();
return true;
}
}
return false;
}
};
/*
* Contructor
*/
if (jQuery.type(data)=='object') {
if (jQuery.type(data) == "object") {
try {
this.import(data);
}
catch (e) {
} catch (e) {
console.log(e);
alert('Une erreur est survenue en chargeant la liste de catégorie depuis le cache');
alert(
"Une erreur est survenue en chargeant la liste de catégorie depuis le cache"
);
}
}
}
function Cat(uuid,name,color,data) {
this.uuid=generate_uuid();
this.lastChange=new Date().getTime();
this.name=name;
this.color=color || '#'+(0x1000000+(Math.random())*0xffffff).toString(16).substr(1,6);
this.things={};
this.removed=false;
function Cat(uuid, name, color, data) {
this.uuid = generate_uuid();
this.lastChange = new Date().getTime();
this.name = name;
this.color =
color ||
"#" + (0x1000000 + Math.random() * 0xffffff).toString(16).substr(1, 6);
this.things = {};
this.removed = false;
this.isCat=function() {
this.isCat = function () {
return true;
}
};
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;
this.removed=data.removed||false;
if (jQuery.type(data.things) == 'object') {
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;
this.removed = data.removed || false;
if (jQuery.type(data.things) == "object") {
for (tuuid in data.things) {
this.things[tuuid]=new Thing(tuuid);
this.things[tuuid] = new Thing(tuuid);
this.things[tuuid].import(data.things[tuuid]);
}
}
return true;
}
};
this.export=function() {
var things={};
this.export = function () {
var things = {};
for (tuuid in this.things) {
things[tuuid]=this.things[tuuid].export();
things[tuuid] = this.things[tuuid].export();
}
return {
'uuid': this.uuid,
'lastChange': this.lastChange,
'name': encodeURIComponent(this.name),
'color': this.color,
'removed': this.removed,
'things': things
uuid: this.uuid,
lastChange: this.lastChange,
name: encodeURIComponent(this.name),
color: this.color,
removed: this.removed,
things: things,
};
}
};
this.byLabel=function(label) {
this.byLabel = function (label) {
for (idx in this.things) {
if (label==this.things[idx].label) {
if (label == this.things[idx].label) {
return this.things[idx];
}
}
return false;
}
};
this.count=function() {
this.count = function () {
return keys(this.things).length;
}
};
this.stats=function() {
var count=0;
var done=0;
this.stats = function () {
var count = 0;
var done = 0;
for (idx in this.things) {
if (this.things[idx].removed) {
continue;
}
if (this.things[idx].checked) {
done+=1;
done += 1;
}
count+=1;
count += 1;
}
return {
'things': count,
'done': done
things: count,
done: done,
};
}
};
this.newThing=function(label,nb) {
this.newThing = function (label, nb) {
if (this.byLabel(label)) {
var thing=this.byLabel(label);
var thing = this.byLabel(label);
if (thing.removed) {
thing.restore();
thing.setChecked(false);
thing.setNb(nb);
return true;
}
}
else {
var uuid=generate_uuid();
this.things[uuid]=new Thing(uuid,label,nb);
} else {
var uuid = generate_uuid();
this.things[uuid] = new Thing(uuid, label, nb);
return true;
}
return false;
}
};
this.renameThing=function(label,newlabel) {
var thing=this.byLabel(label);
this.renameThing = function (label, newlabel) {
var thing = this.byLabel(label);
if (thing && !this.byLabel(newlabel)) {
thing.label=newlabel;
thing.lastChange=new Date().getTime();
thing.label = newlabel;
thing.lastChange = new Date().getTime();
return thing;
}
return false;
}
};
this.removeThing=function(label) {
this.removeThing = function (label) {
for (idx in this.things) {
if (this.things[idx].label==label) {
if (this.things[idx].label == label) {
this.things[idx].remove();
return true;
}
}
return false;
}
};
this.restoreThing=function(label) {
this.restoreThing = function (label) {
for (idx in this.things) {
if (this.things[idx].label==label && this.things[idx].removed) {
if (this.things[idx].label == label && this.things[idx].removed) {
this.things[idx].restore();
return true;
}
}
return false;
}
};
this.remove=function() {
this.removed=true;
this.lastChange=new Date().getTime();
}
this.restore=function() {
this.removed=false;
this.lastChange=new Date().getTime();
}
this.remove = function () {
this.removed = true;
this.lastChange = new Date().getTime();
};
this.restore = function () {
this.removed = false;
this.lastChange = new Date().getTime();
};
/*
* Contructor
*/
if (jQuery.type(data)=='object') {
if (jQuery.type(data) == "object") {
try {
this.import(data);
}
catch (e) {
} catch (e) {
console.log(e);
alert('Une erreur est survenue en chargeant la catégorie catégorie '+this.name+' depuis le cache');
alert(
"Une erreur est survenue en chargeant la catégorie catégorie " +
this.name +
" depuis le cache"
);
}
}
}
function Thing(uuid,label,nb,checked) {
this.uuid=uuid||generate_uuid();
this.lastChange=new Date().getTime();
this.label=label;
this.nb=nb || 1;
this.checked=checked;
this.removed=false;
function Thing(uuid, label, nb, checked) {
this.uuid = uuid || generate_uuid();
this.lastChange = new Date().getTime();
this.label = label;
this.nb = nb || 1;
this.checked = checked;
this.removed = false;
this.import=function(data) {
this.uuid=data.uuid||generate_uuid();
this.lastChange=data.lastChange||new Date().getTime();
this.label=decodeURIComponent(data.label),
this.nb=data.nb||1;
this.checked=data.checked;
this.removed=data.removed||false;
}
this.import = function (data) {
this.uuid = data.uuid || generate_uuid();
this.lastChange = data.lastChange || new Date().getTime();
(this.label = decodeURIComponent(data.label)), (this.nb = data.nb || 1);
this.checked = data.checked;
this.removed = data.removed || false;
};
this.export=function() {
this.export = function () {
return {
'uuid': this.uuid,
'lastChange': this.lastChange,
'label': encodeURIComponent(this.label),
'nb': this.nb,
'checked': this.checked,
'removed': this.removed,
uuid: this.uuid,
lastChange: this.lastChange,
label: encodeURIComponent(this.label),
nb: this.nb,
checked: this.checked,
removed: this.removed,
};
}
};
this.setNb=function(nb) {
this.nb=nb;
this.lastChange=new Date().getTime();
}
this.setNb = function (nb) {
this.nb = nb;
this.lastChange = new Date().getTime();
};
this.setChecked=function(value) {
this.checked=value;
this.lastChange=new Date().getTime();
console.log(`Thing<${this.uuid}>.setChecked(${this.checked}): ${this.lastChange}`);
}
this.setChecked = function (value) {
this.checked = value;
this.lastChange = new Date().getTime();
console.log(
`Thing<${this.uuid}>.setChecked(${this.checked}): ${this.lastChange}`
);
};
this.remove=function() {
this.removed=true;
this.lastChange=new Date().getTime();
}
this.remove = function () {
this.removed = true;
this.lastChange = new Date().getTime();
};
this.restore=function() {
this.removed=false;
this.lastChange=new Date().getTime();
}
this.restore = function () {
this.removed = false;
this.lastChange = new Date().getTime();
};
}
function User() {
this.username = null;
this.name = null;
this.token = null;
this.loadFromLocalStorage=function() {
if (jQuery.type(localStorage.user) == 'undefined')
return;
this.loadFromLocalStorage = function () {
if (jQuery.type(localStorage.user) == "undefined") return;
try {
var data=JSON.parse(localStorage.user);
var data = JSON.parse(localStorage.user);
this.username = data.username;
this.name = data.name;
this.token = data.token;
}
catch(e) {
alert('Erreur en chargeant vos informations de connexion. Merci de vous reconnecter.');
} catch (e) {
alert(
"Erreur en chargeant vos informations de connexion. Merci de vous reconnecter."
);
}
};
this.connected=function() {
this.connected = function () {
return this.username && this.token;
}
};
this.reset=function() {
this.reset = function () {
this.username = null;
this.name = null;
this.token = null;
}
};
this.save=function() {
this.save = function () {
localStorage.user = JSON.stringify({
username: this.username,
name: this.name,
token: this.token,
});
}
};
}