/* file: ui.categorySelector.js - v1.1.0 | minified on 2011/01/28 with http://jscompress.com/ */ (function($) {var publicMethods={init:function(opt) {return this.each(function() {var $this=$(this),data=$this.data('options'),objects=$this.data('objects'),properties=$this.data('properties'),options={autoLoad:true,galleryRoot:true,displayStatus:true,listMaxWidth:0,listMaxHeight:0,levelIndent:16,iconWidthEC:15,serverUrl:'plugins/GrumPluginClasses/gpc_ajax.php',filter:'accessible',popup:null,change:null,load:null,multiple:false,userMode:'public',popupMode:'click',displayPath:false,downArrow:'⇓'};$this.data('options',options);if(!properties) {$this.data('properties',{index:-1,initialized:false,selectorVisible:false,categories:[],labelStatus:['',''],mouseOver:false,isValid:true});properties=$this.data('properties');} if(!objects) {objects={container:$('
',{'class':'ui-category-selector',tabindex:0,css:{width:'100%'}}).bind('click.categorySelector',function() {privateMethods.displaySelector($this,!$this.data('properties').selectorVisible);$(this).focus();}),containerName:$('
',{html:' ','class':'ui-category-selector-name'}),containerList:null,containerStatus:$('
',{'class':'ui-category-selector-status',css:{float:'right',display:(options.displayStatus)?'block':'none'}}),containerArrow:$('
',{html:'⇓','class':'ui-category-selector-arrow',css:{'float':'right',cursor:'pointer'}}).bind('mousedown',function() {$(this).addClass('ui-category-selector-arrow-active');}).bind('mouseup',function() {$(this).removeClass('ui-category-selector-arrow-active');}),listContainer:$('
',{html:"",'class':'ui-category-selector-list',css:{overflow:"auto",display:'none',position:'absolute'}}),list:$('
    ',{css:{listStyle:'none',padding:'0px',margin:'0px'}})};} $this.data('objects',objects);privateMethods.setOptions($this,opt);if($this.html()!='')privateMethods.setItems($this,$this.html());$this.html('').append(objects.container.append(objects.containerArrow).append(objects.containerStatus).append(objects.containerName)).append(objects.listContainer.append(objects.list));});},destroy:function() {return this.each(function() {var $this=$(this),objects=$this.data('objects');objects.container.unbind().remove();objects.list.children().unbind();objects.listContainer.remove();$this.unbind('.categorySelector').css({width:'',height:''});});},options:function(value) {return this.each(function() {privateMethods.setOptions($(this),value);});},autoLoad:function(value) {if(value!=null) {return this.each(function() {privateMethods.setAutoLoad($(this),value);});} else {var options=this.data('options');if(options) {return(options.autoLoad);} else {return(true);}}},galleryRoot:function(value) {if(value!=null) {return this.each(function() {privateMethods.setGalleryRoot($(this),value);});} else {var options=this.data('options');if(options) {return(options.galleryRoot);} else {return(true);}}},listMaxWidth:function(value) {if(value!=null) {return this.each(function() {privateMethods.setListMaxWidth($(this),value);});} else {var options=this.data('options');if(options) {return(options.listMaxWidth);} else {return(0);}}},listMaxHeight:function(value) {if(value!=null) {return this.each(function() {privateMethods.setListMaxHeight($(this),value);});} else {var options=this.data('options');if(options) {return(options.listMaxHeight);} else {return(0);}}},displayStatus:function(value) {if(value!=null) {return this.each(function() {privateMethods.setDisplayStatus($(this),value);});} else {var options=this.data('options');if(options) {return(options.displayStatus);} else {return(true);}}},levelIndent:function(value) {if(value!=null) {return this.each(function() {privateMethods.setLevelIndent($(this),value);});} else {var options=this.data('options');if(options) {return(options.levelIndent);} else {return(0);}}},serverUrl:function(value) {if(value!=null) {return this.each(function() {privateMethods.setServerUrl($(this),value);});} else {var options=this.data('options');if(options) {return(options.serverUrl);} else {return('');}}},filter:function(value) {if(value!=null) {return this.each(function() {privateMethods.setFilter($(this),value);});} else {var options=this.data('options');if(options) {return(options.filter);} else {return('');}}},collapse:function(value) {return this.each(function() {if(!value)value=':all';privateMethods.setExpandCollapse($(this),value,'C');});},expand:function(value) {return this.each(function() {if(!value)value=':all';privateMethods.setExpandCollapse($(this),value,'E');});},iconWidthEC:function(value) {if(value!=null) {return this.each(function() {privateMethods.setIconWidthEC($(this),value);});} else {var options=this.data('options');if(options) {return(options.iconWidthEC);} else {return(0);}}},userMode:function(value) {if(value!=null) {return this.each(function() {privateMethods.setUserMode($(this),value);});} else {var options=this.data('options');if(options) {return(options.userMode);} else {return(0);}}},name:function() {var options=this.data('options'),properties=this.data('properties');if(!options.multiple) {return(properties.categories[properties.index].name);} else {var listNames=[];for(var i=0;i-1&&properties.index-1&&properties.index[i]0) {return(properties.categories[0]);} else if(properties&&properties.index!=null&&(value==':selected'||value==null)&&properties.categories.length>0) {if(!options.multiple&&properties.index>-1&&properties.index-1&&properties.index-1) {var index=privateMethods.findIndexByValue(this,value);if(index>-1) {return(properties.categories[index]);} return(null);} else {return(null);}}};var privateMethods={setOptions:function(object,value) {var properties=object.data('properties'),options=object.data('options');if(!$.isPlainObject(value))return(false);properties.initialized=false;privateMethods.setAutoLoad(object,(value.autoLoad!=null)?value.autoLoad:options.autoLoad);privateMethods.setGalleryRoot(object,(value.galleryRoot!=null)?value.galleryRoot:options.galleryRoot);privateMethods.setDisplayStatus(object,(value.displayStatus!=null)?value.displayStatus:options.displayStatus);privateMethods.setListMaxWidth(object,(value.listMaxWidth!=null)?value.listMaxWidth:options.listMaxWidth);privateMethods.setListMaxHeight(object,(value.listMaxHeight!=null)?value.listMaxHeight:options.listMaxHeight);privateMethods.setLevelIndent(object,(value.levelIndent!=null)?value.levelIndent:options.levelIndent);privateMethods.setIconWidthEC(object,(value.iconWidthEC!=null)?value.iconWidthEC:options.iconWidthEC);privateMethods.setServerUrl(object,(value.serverUrl!=null)?value.serverUrl:options.serverUrl);privateMethods.setFilter(object,(value.filter!=null)?value.filter:options.filter);privateMethods.setUserMode(object,(value.userMode!=null)?value.userMode:options.userMode);privateMethods.setPopupMode(object,(value.popupMode!=null)?value.popupMode:options.popupMode);privateMethods.setDisplayPath(object,(value.displayPath!=null)?value.displayPath:options.displayPath);privateMethods.setDownArrow(object,(value.downArrow!=null)?value.downArrow:options.downArrow);privateMethods.setEventPopup(object,(value.popup!=null)?value.popup:options.popup);privateMethods.setEventChange(object,(value.change!=null)?value.change:options.change);privateMethods.setEventLoad(object,(value.load!=null)?value.load:options.load);privateMethods.setMultiple(object,(value.multiple!=null)?value.multiple:options.multiple);if(options.autoLoad)privateMethods.load(object);properties.initialized=true;},setIsValid:function(object,value) {var objects=object.data('objects'),properties=object.data('properties');if(properties.isValid!=value) {properties.isValid=value;if(properties.isValid) {objects.container.removeClass('ui-error');} else {objects.container.addClass('ui-error');}} return(properties.isValid);},setAutoLoad:function(object,value) {var options=object.data('options'),properties=object.data('properties');if((!properties.initialized||options.autoLoad!=value)&&(value==true||value==false)) {options.autoLoad=value;} return(options.autoLoad);},setGalleryRoot:function(object,value) {var options=object.data('options'),properties=object.data('properties');if((!properties.initialized||options.galleryRoot!=value)&&(value==true||value==false)) {options.galleryRoot=value;if(options.autoLoad&&properties.initialized)privateMethods.load(object);} return(options.galleryRoot);},setListMaxWidth:function(object,value) {var options=object.data('options'),properties=object.data('properties'),objects=object.data('objects');if((!properties.initialized||options.listMaxWidth!=value)&&value>=0) {options.listMaxWidth=value;if(options.listMaxWidth>0) {objects.listContainer.css('max-width',options.listMaxWidth+'px');} else {objects.listContainer.css('max-width','');}} return(options.listMaxWidth);},setListMaxHeight:function(object,value) {var options=object.data('options'),properties=object.data('properties'),objects=object.data('objects');if((!properties.initialized||options.listMaxHeight!=value)&&value>=0) {options.listMaxHeight=value;if(options.listMaxHeight>0) {objects.listContainer.css('max-height',options.listMaxHeight+'px');} else {objects.listContainer.css('max-height','');}} return(options.listMaxHeight);},setDisplayStatus:function(object,value) {var options=object.data('options'),properties=object.data('properties'),objects=object.data('objects');if((!properties.initialized||options.displayStatus!=value)&&(value==true||value==false)) {options.displayStatus=value;if(options.displayStatus) {object.find('.ui-category-selector-status').show();} else {object.find('.ui-category-selector-status').hide();}} return(options.displayStatus);},setLevelIndent:function(object,value) {var options=object.data('options'),properties=object.data('properties'),objects=object.data('objects');if((!properties.initialized||options.levelIndent!=value)&&value>=0) {options.levelIndent=value;objects.list.find('.ui-category-selector-item').each(function() {$(this).css('padding-left',(options.iconWidthEC+$(this).attr('level')*options.levelIndent)+'px');});} return(options.levelIndent);},setServerUrl:function(object,value) {var options=object.data('options'),properties=object.data('properties');if(!properties.initialized||options.serverUrl!=value) {options.serverUrl=value;if(options.autoLoad&&properties.initialized)privateMethods.load(object);} return(options.serverUrl);},setFilter:function(object,value) {var options=object.data('options'),properties=object.data('properties');if((!properties.initialized||options.filter!=value)&&(value=='none'||value=='accessible'||value=='public')) {options.filter=value;if(options.autoLoad&&properties.initialized)privateMethods.load(object);} return(options.filter);},setIconWidthEC:function(object,value) {var options=object.data('options'),properties=object.data('properties'),objects=object.data('objects');if((!properties.initialized||options.iconWidthEC!=value)&&value>=0) {options.iconWidthEC=value;objects.list.find('.ui-category-selector-item').each(function() {$(this).css('padding-left',(options.iconWidthEC+$(this).attr('level')*options.levelIndent)+'px');});} return(options.iconWidthEC);},setMultiple:function(object,value) {var options=object.data('options'),properties=object.data('properties'),objects=object.data('objects');if((!properties.initialized||options.multiple!=value)&&(value==true||value==false)) {if(!value) {properties.index=-1;if(objects.containerList!=null) {objects.containerList.remove();objects.containerList=null;}} else {properties.index=[];objects.listContainer.addClass('ui-category-selector-multiple');if(objects.containerList==null) {objects.containerList=$('
      ',{css:{listStyle:'none',padding:'0px',margin:'0px',overflow:"auto"},html:'
    • '});objects.containerName.html('').append(objects.containerList);}} options.multiple=value;} return(options.multiple);},setUserMode:function(object,value) {var options=object.data('options'),properties=object.data('properties');if((!properties.initialized||options.userMode!=value)&&(value=='admin'||value=='public')) {options.userMode=value;if(options.autoLoad&&properties.initialized)privateMethods.load(object);} return(options.userMode);},setPopupMode:function(object,value) {var options=object.data('options'),properties=object.data('properties'),objects=object.data('objects');if((!properties.initialized||options.popupMode!=value)&&(value=='click'||value=='mouseout')) {options.popupMode=value;if(value=='mouseout') {objects.listContainer.unbind('mouseleave.categorySelector').unbind('mouseenter.categorySelector').bind('mouseleave.categorySelector',function() {privateMethods.displaySelector(object,false);});} else {objects.listContainer.unbind('mouseleave.categorySelector').bind('mouseleave.categorySelector',function() {properties.mouseOver=false;}).bind('mouseenter.categorySelector',function() {properties.mouseOver=true;});$(document).bind('focusout focusin',function(event) {if(!properties.mouseOver)privateMethods.displaySelector(object,false);});}} return(options.popupMode);},setDisplayPath:function(object,value) {var options=object.data('options'),properties=object.data('properties'),objects=object.data('objects');if((!properties.initialized||options.displayPath!=value)&&(value==true||value==false)) {options.displayPath=value;} return(options.userMode);},setDownArrow:function(object,value) {var options=object.data('options'),properties=object.data('properties'),objects=object.data('objects');if(!properties.initialized||options.downArrow!=value) {options.downArrow=value;objects.containerArrow.html(options.downArrow);} return(options.downArrow);},setItems:function(object,value) {var properties=object.data('properties'),options=object.data('options'),objects=object.data('objects');if(value==''||value==null) {value={status:['',''],categories:[]}} else if($.isArray(value)) {value={status:'public',categories:value}} else {try {value=$.parseJSON($.trim(value));} catch(e) {return(false);}} properties.labelStatus=value.status;privateMethods.listClear(object);if(value.categories.length>0)privateMethods.listAddItems(object,value.categories,objects.list);properties.initialized=false;if(options.multiple) {privateMethods.setValue(object,':none');} else {privateMethods.setValue(object,':first');} properties.initialized=true;if(options.load)object.trigger('categorySelectorLoad');},setExpandCollapse:function(object,value,mode) {var objects=object.data('objects');re=/^(?:(:all)(?:(=|<|>|\+)(\d+))?)|(?:(\d+)(<|>|\+))?$/i;target=re.exec(value);if(target!=null) {switch(mode) {case'C':applyExpandCollapse=privateMethods.applyCollapse;break;case'E':applyExpandCollapse=privateMethods.applyExpand;break;} if(target[1]==':all') {objects.list.find('.ui-category-selector-expandable-item, .ui-category-selector-collapsable-item').each(applyExpandCollapse);} else if(target[4]!=null) {switch(target[5]) {case'+':objects.list.find('.ui-category-selector-expandable-item, .ui-category-selector-collapsable-item').each(privateMethods.applyCollapse);objects.list.find(':has([catId='+target[4]+'])').prev().each(privateMethods.applyExpand);objects.list.find('[catId='+target[4]+']').each(applyExpandCollapse);break;case'>':objects.list.find('[catId='+target[4]+'] + ul').find('.ui-category-selector-expandable-item, .ui-category-selector-collapsable-item').each(applyExpandCollapse);objects.list.find('[catId='+target[4]+']').each(applyExpandCollapse);break;case'<':objects.list.find(':has([catId='+target[4]+'])').prev().each(applyExpandCollapse);objects.list.find('[catId='+target[4]+']').each(applyExpandCollapse);break;default:objects.list.find('[catId='+target[4]+']').each(applyExpandCollapse);break;}}}},applyExpand:function(index,domElt) {privateMethods.applyExpandCollapse(index,domElt,'E');},applyCollapse:function(index,domElt) {privateMethods.applyExpandCollapse(index,domElt,'C');},applyExpandCollapse:function(index,domElt,mode) {action='';var $domElt=$(domElt);if(target.length>2&&target[2]!=null&&target[3]!=null) {switch(target[2]) {case'=':if($domElt.attr('level')==target[3])action=mode;break;case'>':if($domElt.attr('level')>=target[3])action=mode;break;case'<':if($domElt.attr('level')<=target[3])action=mode;break;case'+':if((mode=='E'&&$domElt.attr('level')<=target[3])||(mode=='C'&&$domElt.attr('level')>=target[3])) {action=mode;} else {action=(mode=='C')?'E':'C';} break;}} else action=mode;switch(action) {case'C':$domElt.removeClass('ui-category-selector-expandable-item ui-category-selector-collapsable-item').addClass('ui-category-selector-expandable-item').next().hide();break;case'E':$domElt.removeClass('ui-category-selector-expandable-item ui-category-selector-collapsable-item').addClass('ui-category-selector-collapsable-item').next().show();break;}},setValue:function(object,value,trigger) {var options=object.data('options'),properties=object.data('properties'),objects=object.data('objects'),index=-1;re=/^(:invert|:all|:none)(?:(=|<|>)(\d+))$/i;target=re.exec(value);if(target!=null)value=target[1];switch(value) {case':first':if(properties.categories.length>0)index=0;break;case':last':index=properties.categories.length-1;break;case':invert':if(!options.multiple)return(false);properties.index=[];objects.list.find('.ui-category-selector-item').each(function() {var $this=$(this),apply=true;if(target!=null) {switch(target[2]) {case'=':apply=($this.attr('level')==target[3]);break;case'>':apply=($this.attr('level')>=target[3]);break;case'<':apply=($this.attr('level')<=target[3]);break;}} if(apply) {if($this.hasClass('ui-category-selector-selected-item')) {$this.removeClass('ui-category-selector-selected-item');} else {$this.addClass('ui-category-selector-selected-item');tmp=privateMethods.findIndexByValue(object,$this.attr('catId'));if(tmp>-1)properties.index.push(tmp);}}});privateMethods.setValue(object,[],false);return(false);break;case':none':if(!options.multiple)return(false);properties.index=[];objects.list.find('.ui-category-selector-selected-item').each(function() {var $this=$(this),apply=true;if(target!=null) {switch(target[2]) {case'=':apply=($this.attr('level')==target[3]);break;case'>':apply=($this.attr('level')>=target[3]);break;case'<':apply=($this.attr('level')<=target[3]);break;}} if(apply)$this.removeClass('ui-category-selector-selected-item');});privateMethods.setValue(object,[],false);return(false);break;case':all':if(!options.multiple)return(false);properties.index=[];objects.list.find('.ui-category-selector-item').each(function() {var $this=$(this),apply=true;if(target!=null) {switch(target[2]) {case'=':apply=($this.attr('level')==target[3]);break;case'>':apply=($this.attr('level')>=target[3]);break;case'<':apply=($this.attr('level')<=target[3]);break;}} if(apply) {tmp=privateMethods.findIndexByValue(object,$this.attr('catId'));if(tmp>-1)properties.index.push(tmp);$this.addClass('ui-category-selector-selected-item');}});privateMethods.setValue(object,[],false);return(false);break;default:if($.isArray(value)&&options.multiple) {index=[];for(var i=0;i-1)index.push(tmp);}} else {index=privateMethods.findIndexByValue(object,value);} break;} if(!options.multiple&&(!properties.initialized||properties.index!=index)&&index>-1) {objects.list.find('.ui-category-selector-selected-item').removeClass('ui-category-selector-selected-item');objects.list.find('[catId="'+value+'"]').addClass('ui-category-selector-selected-item');title=privateMethods.getParentName(object,objects.list.find('[catId="'+value+'"] div.ui-category-selector-name')).replace('&','&').replace('>','>').replace('<','<');properties.index=index;objects.containerName.html(properties.categories[properties.index].name).attr('title',title);objects.containerStatus.html(properties.labelStatus[properties.categories[properties.index].status]);if(trigger&&options.change)object.trigger('categorySelectorChange',[properties.categories[properties.index].id]);if(properties.index>-1)return(properties.categories[properties.index].id);} else if(options.multiple) {if(!$.isArray(index)) {if(index<0||index==null)return(-1);index=[index];} tmp=[];for(var i=0;i-1)properties.index.splice(tmpIndex,1);} else {item.addClass('ui-category-selector-selected-item');properties.index.push(index[i]);} tmp.push(properties.categories[index[i]].id);} objects.containerList.html('');objects.list.find('.ui-category-selector-selected-item div.ui-category-selector-name').each(function() {var path='';title=privateMethods.getParentName(object,$(this)).replace('&','&').replace('>','>').replace('<','<');if(!options.displayPath) {path=$(this).html();} else {path=title;} objects.containerList.append($('
    • ',{html:path,title:title,'class':'ui-category-selector-selected-cat'}).prepend($('',{html:'x'}).bind('click.categorySelector',{object:object,value:$(this).parent().parent().attr('catid')},function(event) {event.stopPropagation();privateMethods.setValue(event.data.object,event.data.value);})))});if(objects.containerList.children().length==0)objects.containerList.append('
    • ');if(trigger&&options.change)object.trigger('categorySelectorChange',[tmp]);return(tmp);} return(null);},getParentName:function(object,item) {if(item==null||item.length==0)return('');foundItem=item.parent().parent().parent().prev().find('div.ui-category-selector-name');if(foundItem.length==0)return(item.html());return(privateMethods.getParentName(object,foundItem)+' / '+item.html());},displaySelector:function(object,value) {var options=object.data('options'),properties=object.data('properties'),objects=object.data('objects');if(properties.selectorVisible!=value) {properties.selectorVisible=value;if(properties.selectorVisible&&properties.categories.length>0) {var index=0;objects.listContainer.css({display:'block','min-width':objects.listContainer.parent().css('width')});if($.isArray(properties.index)) {if(properties.index.length>0)index=properties.index[0];} else if(properties.index>-1) {index=properties.index;} objects.listContainer.scrollTop(objects.listContainer.scrollTop()+objects.list.find('[catId="'+properties.categories[index].id+'"]').position().top);} else {objects.listContainer.css('display','none');} if(options.popup)object.trigger('categorySelectorPopup',[properties.selectorVisible]);} return(properties.selectorVisible);},load:function(object) {var options=object.data('options'),objects=object.data('objects');if(options.serverUrl=='')return(false);$.ajax({type:"POST",url:options.serverUrl,async:true,data:{ajaxfct:options.userMode+'.categorySelector.getList',filter:options.filter,galleryRoot:options.galleryRoot?'y':'n',tree:'y'},success:function(msg) {privateMethods.setItems(object,msg);},error:function(msg) {objects.listContainer.html('Error ! '+msg);}});},listClear:function(object) {var objects=object.data('objects'),options=object.data('options'),properties=object.data('properties');objects.list.children().unbind();objects.list.html('');if(options.multiple) {properties.index=[];} else {properties.index=-1;} properties.categories=[];},listAddItems:function(object,listItems,parent) {var options=object.data('options'),properties=object.data('properties'),objects=object.data('objects');var previousLevel=-1;for(var i=0;i";} else {status="";} var spaceWidth=(options.iconWidthEC+listItems[i].level*options.levelIndent),li=$('
    • ',{'class':'ui-category-selector-item',html:"
      "+status+"
      "+listItems[i].name+"
      ",catId:listItems[i].id,level:listItems[i].level,css:{'padding-left':spaceWidth+'px'}}).bind('click.categorySelector',{object:object,expandArea:spaceWidth,nbchilds:listItems[i].childs.length},function(event) {event.layerX=event.pageX-$(event.currentTarget).offset().left;event.layerY=event.pageY-$(event.currentTarget).offset().top;if(event.layerX0) {if($(this).hasClass('ui-category-selector-expandable-item')) {$(this).removeClass('ui-category-selector-expandable-item').addClass('ui-category-selector-collapsable-item').next().show();} else {$(this).removeClass('ui-category-selector-collapsable-item').addClass('ui-category-selector-expandable-item').next().hide();}} else {privateMethods.setValue(event.data.object,$(this).attr('catId'),true);if(options.multiple) {} else {privateMethods.displaySelector(event.data.object,false);}} if(options.multiple)objects.container.focus();});if(listItems[i].childs.length>0) {li.addClass('ui-category-selector-collapsable-item').css('background-position',(options.levelIndent*listItems[i].level)+'px 0px');} if(options.multiple) {li.children().prepend('
      ');} parent.append(li);if(listItems[i].childs.length>0) {var ul=$('
        ',{'class':'ui-category-selector-group',css:{listStyle:'none',padding:'0px',margin:'0px','font-size':(100-listItems[i].level*2)+'%'}});li.after(ul);privateMethods.listAddItems(object,listItems[i].childs,ul);}}},findIndexByValue:function(object,value) {var properties=object.data('properties');for(var i=0;i