mirror of
https://gitlab.easter-eggs.com/ee/ldapsaisie.git
synced 2024-12-18 22:43:47 +01:00
- LSdefault.js :
-> Trie, ménage, rangement -> Commentaire -> Meilleur gestion des affichages des LSdebug et des LSerror
This commit is contained in:
parent
7aa2cceec3
commit
6a7a135d3c
1 changed files with 80 additions and 33 deletions
|
@ -1,19 +1,32 @@
|
||||||
var LSdefault = new Class({
|
var LSdefault = new Class({
|
||||||
initialize: function(){
|
initialize: function(){
|
||||||
|
// LSdebug
|
||||||
this.LSdebug = $('LSdebug');
|
this.LSdebug = $('LSdebug');
|
||||||
this.LSdebug.addEvent('dblclick',this.hideLSdebug.bind(this));
|
this.LSdebug.addEvent('dblclick',this.hideLSdebug.bind(this));
|
||||||
this.LSdebugInfos = $('LSdebug_infos');
|
this.LSdebugInfos = $('LSdebug_infos');
|
||||||
this.LSdebug.setOpacity(0);
|
this.LSdebug.setOpacity(0);
|
||||||
|
this.LSdebug_open = 0;
|
||||||
|
|
||||||
this.LSdebugHidden = $('LSdebug_hidden');
|
this.LSdebugHidden = $('LSdebug_hidden');
|
||||||
this.LSdebugHidden.addEvent('click',this.hideLSdebug.bind(this));
|
this.LSdebugHidden.addEvent('click',this.hideLSdebug.bind(this));
|
||||||
|
|
||||||
|
// LSerror
|
||||||
this.LSerror = $('LSerror');
|
this.LSerror = $('LSerror');
|
||||||
this.LSerror.setOpacity(0);
|
this.LSerror.setOpacity(0);
|
||||||
|
this.LSerror_open = 0;
|
||||||
this.LSerror.addEvent('dblclick',this.hideLSerror.bind(this));
|
this.LSerror.addEvent('dblclick',this.hideLSerror.bind(this));
|
||||||
|
|
||||||
|
// LSinfos
|
||||||
this.LSinfos = $('LSinfos');
|
this.LSinfos = $('LSinfos');
|
||||||
|
|
||||||
|
// FX
|
||||||
|
this.fx = {
|
||||||
|
LSdebug: new Fx.Tween(this.LSdebug,{property: 'opacity',duration:600}),
|
||||||
|
LSerror: new Fx.Tween(this.LSerror,{property: 'opacity',duration:500}),
|
||||||
|
LSinfos: new Fx.Tween(this.LSinfos,{property: 'opacity',duration:500})
|
||||||
|
};
|
||||||
|
|
||||||
|
// LSjsConfig
|
||||||
this.LSjsConfigEl = $('LSjsConfig');
|
this.LSjsConfigEl = $('LSjsConfig');
|
||||||
if ($type(this.LSjsConfigEl)) {
|
if ($type(this.LSjsConfigEl)) {
|
||||||
this.LSjsConfig = JSON.decode(this.LSjsConfigEl.innerHTML);
|
this.LSjsConfig = JSON.decode(this.LSjsConfigEl.innerHTML);
|
||||||
|
@ -25,17 +38,13 @@ var LSdefault = new Class({
|
||||||
this.loading_img=[];
|
this.loading_img=[];
|
||||||
this.loading_img_id=-1;
|
this.loading_img_id=-1;
|
||||||
|
|
||||||
|
// LSsession_topDn
|
||||||
this.LSsession_topDn = $('LSsession_topDn');
|
this.LSsession_topDn = $('LSsession_topDn');
|
||||||
if (this.LSsession_topDn) {
|
if (this.LSsession_topDn) {
|
||||||
this.LSsession_topDn.addEvent('change',this.onLSsession_topDnChange.bind(this));
|
this.LSsession_topDn.addEvent('change',this.onLSsession_topDnChange.bind(this));
|
||||||
}
|
}
|
||||||
|
|
||||||
this.fx = {
|
// Display Infos
|
||||||
LSdebug: new Fx.Tween(this.LSdebug,{property: 'opacity',duration:600}),
|
|
||||||
LSerror: new Fx.Tween(this.LSerror,{property: 'opacity',duration:500}),
|
|
||||||
LSinfos: new Fx.Tween(this.LSinfos,{property: 'opacity',duration:500})
|
|
||||||
};
|
|
||||||
|
|
||||||
if (this.LSdebugInfos.innerHTML != '') {
|
if (this.LSdebugInfos.innerHTML != '') {
|
||||||
this.displayDebugBox();
|
this.displayDebugBox();
|
||||||
}
|
}
|
||||||
|
@ -48,38 +57,45 @@ var LSdefault = new Class({
|
||||||
this.displayInfosBox();
|
this.displayInfosBox();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// :)
|
||||||
var getMoo = /moo$/;
|
var getMoo = /moo$/;
|
||||||
if (getMoo.exec(window.location)) {
|
if (getMoo.exec(window.location)) {
|
||||||
var mooTxt = " (__)\n (oo)\n /------\\\/\n / | ||\n * /\---/\\\n ~~ ~~";
|
this.moo();
|
||||||
var ulMoo = this.LSinfos.getElement('ul');
|
|
||||||
var preMoo = new Element('pre');
|
|
||||||
preMoo.set('html',mooTxt);
|
|
||||||
if ($type(ulMoo)) {
|
|
||||||
var liMoo = new Element('li');
|
|
||||||
liMoo.injectInside(ulMoo);
|
|
||||||
preMoo.injectInside(liMoo);
|
|
||||||
}
|
|
||||||
else {
|
|
||||||
preMoo.injectInside(this.LSinfos);
|
|
||||||
}
|
|
||||||
this.displayInfosBox();
|
|
||||||
}
|
}
|
||||||
|
document.addEvent('keyup',this.onWantMoo.bindWithEvent(this));
|
||||||
|
|
||||||
this.LStips = new Tips('.LStips');
|
this.LStips = new Tips('.LStips');
|
||||||
},
|
},
|
||||||
|
|
||||||
|
onWantMoo: function(event) {
|
||||||
|
event=new Event(event);
|
||||||
|
if ((event.control) && (event.shift) && (event.key=='m')) {
|
||||||
|
this.moo.run(null,this);
|
||||||
|
}
|
||||||
|
},
|
||||||
|
|
||||||
|
moo: function() {
|
||||||
|
var mooTxt = " (__) .ooooooooooooooooooo.\n (oo) °°°°0 I love LdapSaisie 0\n /------\\\/ °ooooooooooooooooooo°\n / | ||\n * /\---/\\\n ~~ ~~";
|
||||||
|
var ulMoo = this.LSinfos.getElement('ul');
|
||||||
|
var preMoo = new Element('pre');
|
||||||
|
preMoo.set('html',mooTxt);
|
||||||
|
if ($type(ulMoo)) {
|
||||||
|
ulMoo.empty();
|
||||||
|
var liMoo = new Element('li');
|
||||||
|
liMoo.injectInside(ulMoo);
|
||||||
|
preMoo.injectInside(liMoo);
|
||||||
|
}
|
||||||
|
else {
|
||||||
|
this.LSinfos.empty();
|
||||||
|
preMoo.injectInside(this.LSinfos);
|
||||||
|
}
|
||||||
|
this.displayInfosBox();
|
||||||
|
},
|
||||||
|
|
||||||
onLSsession_topDnChange: function() {
|
onLSsession_topDnChange: function() {
|
||||||
$('LSsession_topDn_form').submit();
|
$('LSsession_topDn_form').submit();
|
||||||
},
|
},
|
||||||
|
|
||||||
hideLSdebug: function(){
|
|
||||||
this.fx.LSdebug.start(0.8,0);
|
|
||||||
},
|
|
||||||
|
|
||||||
hideLSerror: function(){
|
|
||||||
this.fx.LSerror.start(0.9,0);
|
|
||||||
},
|
|
||||||
|
|
||||||
checkAjaxReturn: function(data) {
|
checkAjaxReturn: function(data) {
|
||||||
if ($type(data) == 'object') {
|
if ($type(data) == 'object') {
|
||||||
if (($type(data.LSredirect)) && (!$type(data.LSdebug)) ) {
|
if (($type(data.LSredirect)) && (!$type(data.LSdebug)) ) {
|
||||||
|
@ -116,6 +132,9 @@ var LSdefault = new Class({
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
|
||||||
|
/*
|
||||||
|
* Set and Display Methods
|
||||||
|
*/
|
||||||
displayError: function(html) {
|
displayError: function(html) {
|
||||||
this.LSerror.set('html',html);
|
this.LSerror.set('html',html);
|
||||||
this.displayErrorBox();
|
this.displayErrorBox();
|
||||||
|
@ -131,9 +150,42 @@ var LSdefault = new Class({
|
||||||
this.displayInfosBox();
|
this.displayInfosBox();
|
||||||
},
|
},
|
||||||
|
|
||||||
|
/*
|
||||||
|
* Display Methods
|
||||||
|
*/
|
||||||
displayErrorBox: function() {
|
displayErrorBox: function() {
|
||||||
this.LSerror.setStyle('top',getScrollTop()+10);
|
this.LSerror.setStyle('top',getScrollTop()+10);
|
||||||
|
if (this.LSerror_open) {
|
||||||
|
return true;
|
||||||
|
}
|
||||||
this.fx.LSerror.start(0,0.8);
|
this.fx.LSerror.start(0,0.8);
|
||||||
|
this.LSerror_open = 1;
|
||||||
|
},
|
||||||
|
|
||||||
|
displayDebugBox: function() {
|
||||||
|
this.LSdebug.setStyle('top',getScrollTop()+10);
|
||||||
|
if (this.LSdebug_open) {
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
this.fx.LSdebug.start(0,0.8);
|
||||||
|
this.LSdebug_open = 1;
|
||||||
|
},
|
||||||
|
|
||||||
|
/*
|
||||||
|
* Hide Methods
|
||||||
|
*/
|
||||||
|
hideLSdebug: function(){
|
||||||
|
if (this.LSdebug_open) {
|
||||||
|
this.fx.LSdebug.start(0.8,0);
|
||||||
|
this.LSdebug_open = 0;
|
||||||
|
}
|
||||||
|
},
|
||||||
|
|
||||||
|
hideLSerror: function(){
|
||||||
|
if (this.LSerror_open) {
|
||||||
|
this.fx.LSerror.start(0.9,0);
|
||||||
|
this.LSerror_open = 0;
|
||||||
|
}
|
||||||
},
|
},
|
||||||
|
|
||||||
displayInfosBox: function() {
|
displayInfosBox: function() {
|
||||||
|
@ -142,11 +194,6 @@ var LSdefault = new Class({
|
||||||
(function(){this.fx.LSinfos.start(0.9,0);}).delay(5000, this);
|
(function(){this.fx.LSinfos.start(0.9,0);}).delay(5000, this);
|
||||||
},
|
},
|
||||||
|
|
||||||
displayDebugBox: function() {
|
|
||||||
this.LSdebug.setStyle('top',getScrollTop()+10);
|
|
||||||
this.fx.LSdebug.start(0,0.8);
|
|
||||||
},
|
|
||||||
|
|
||||||
loadingImgDisplay: function(el,position,size) {
|
loadingImgDisplay: function(el,position,size) {
|
||||||
this.loading_img_id++;
|
this.loading_img_id++;
|
||||||
this.loading_img[this.loading_img_id] = new Element('img');
|
this.loading_img[this.loading_img_id] = new Element('img');
|
||||||
|
|
Loading…
Reference in a new issue