Skip to content

Instantly share code, notes, and snippets.

@khrome
Created December 13, 2011 07:17
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save khrome/1471040 to your computer and use it in GitHub Desktop.
Save khrome/1471040 to your computer and use it in GitHub Desktop.
Grouping and aggregating elements in MooTools
if(!Element.siblingsBefore){
Element.implement({
siblingsBefore : function(){
var results = [];
var found = false;
this.getParent().getChildren().each(function(child){
if(this == child) found = true;
if(!found) results.push(child);
});
return new Elements(results);
}
});
}
if(!Element.siblingsAfter){
Element.implement({
siblingsAfter : function(){
var results = [];
var found = false;
this.getParent().getChildren().each(function(child){
if(found) results.push(child);
if(this == child) found = true;
});
return new Elements(results);
}
});
}
if(!Array.sumStrings){
Array.implement({
sumStrings : function(){
var result = 0;
this.each(function(child){
var val = parseInt(Number.from(child));
if(val) result += val;
});
return result;
}
});
}
if(!Element.hasStyle){
Element.implement({
hasStyle : function(name, style){
var result = false;
var num = Number.from(this.getStyle(name));
if(num != null){
switch(style.substring(0,1)){
case '>' :
if(num > Number.from(style.substring(1))) result = true;
break;
case '<' :
if(num > Number.from(style.substring(1))) result = true;
break;
default:
if(num == Number.from(style)) result = true;
}
}else{
switch(style.substring(0,1)){
case '>' :
if(this.getStyle(name) > style.substring(1)) result = true;
break;
case '<' :
if(this.getStyle(name) > style.substring(1)) result = true;
break;
default:
if(this.getStyle(name) == style) result = true;
}
}
return result;
}
})
}
if(!Elements.mergedStyles){
Elements.implement({
mergedStyles : function(styles){
results = [];
if(typeOf(styles) == 'string'){
styles = styles.split(',');
}
styles.each(function(style){
results = results.concat(this.getStyle(style));
}.bind(this));
return results;
}
});
}
if(!Elements.excludeStyles){
Elements.implement({
excludeStyles : function(styles){
var results = [];
this.each(function(element){
var found = false;
Object.each(styles, function(style, name){
if(typeOf(style) == 'array'){
style.each(function(thisStyle){
found = found || element.hasStyle(name, thisStyle);
}.bind(this));
}else{
found = found || element.hasStyle(name, style);
}
}.bind(this));
if(!found) results.push(element);
}.bind(this));
return new Elements(results);
}
});
}
if(!Elements.includeStyles){
Elements.implement({
includeStyles : function(styles){
results = [];
this.each(function(element){
var found = false;
Object.each(styles, function(style, name){
if(typeOf(style) == 'array'){
style.each(function(thisStyle){
found = found || element.hasStyle(name, thisStyle);
}.bind(this));
}else{
found = found || element.hasStyle(name, style);
}
}.bind(this));
if(found) results.push(element);
}.bind(this));
return new Elements(results);
}
});
}
document.id('element_id').siblingsBefore().excludeStyles(
{position:'absolute', height:'0px'}
).mergedStyles(
'height,margin-top,margin-bottom,padding-top,padding-bottom'
).sumStrings()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment