-
Notifications
You must be signed in to change notification settings - Fork 3.9k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
refactor new methods to use array awesomeness
- Loading branch information
Showing
8 changed files
with
75 additions
and
35 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -6,6 +6,12 @@ var Zepto = (function() { | |
function compact(array){ return array.filter(function(item){ return item !== undefined && item !== null }) } | ||
function flatten(array){ return array.reduce(function(a,b){ return a.concat(b) }, []) } | ||
function camelize(str){ return str.replace(/-+(.)?/g, function(match, chr){ return chr ? chr.toUpperCase() : '' }) } | ||
function uniq(array){ | ||
var r = []; | ||
for(var i=0,n=array.length;i<n;i++) | ||
if(r.indexOf(array[i])<0) r.push(array[i]); | ||
return r; | ||
} | ||
|
||
fragmentRE = /^\s*<.+>/; | ||
container = document.createElement("div"); | ||
|
@@ -41,6 +47,10 @@ var Zepto = (function() { | |
$.extend = function(target, source){ for (key in source) target[key] = source[key]; return target } | ||
$.qsa = $$ = function(element, selector){ return slice.call(element.querySelectorAll(selector)) } | ||
|
||
function filtered(nodes, selector){ | ||
return selector === undefined ? $(nodes) : $(nodes).filter(selector); | ||
} | ||
|
||
$.fn = { | ||
forEach: [].forEach, | ||
map: [].map, | ||
|
@@ -68,14 +78,15 @@ var Zepto = (function() { | |
}, | ||
not: function(selector){ | ||
var nodes=[]; | ||
if (typeof selector == 'function' && selector.call !== undefined){ | ||
if (typeof selector == 'function' && selector.call !== undefined) | ||
This comment has been minimized.
Sorry, something went wrong.
This comment has been minimized.
Sorry, something went wrong.
This comment has been minimized.
Sorry, something went wrong.
stereobooster
|
||
this.each(function(idx){ | ||
if (!selector.call(this,idx)) nodes.push(this); | ||
}); | ||
}else{ | ||
var ignores=slice.call(typeof selector === "string" ? | ||
this.filter(selector) : | ||
selector instanceof NodeList ? selector : $(selector)); | ||
else { | ||
var ignores = slice.call( | ||
typeof selector === "string" ? | ||
this.filter(selector) : | ||
selector instanceof NodeList ? selector : $(selector)); | ||
slice.call(this).forEach(function(el){ | ||
if (ignores.indexOf(el) < 0) nodes.push(el); | ||
}); | ||
|
@@ -106,34 +117,18 @@ var Zepto = (function() { | |
return node; | ||
} | ||
})); | ||
ancestors = $(ancestors); | ||
return selector === undefined ? ancestors : ancestors.filter(selector); | ||
return filtered(ancestors, selector); | ||
}, | ||
parent: function(selector){ | ||
var node, nodes = []; | ||
this.each(function(){ | ||
if ((node = this.parentNode) && nodes.indexOf(node) < 0) nodes.push(node); | ||
}); | ||
nodes = $(nodes); | ||
return selector === undefined ? nodes : nodes.filter(selector); | ||
return filtered(uniq(compact(this.pluck('parentNode'))), selector); | ||
}, | ||
children: function(selector){ | ||
var nodes=[]; | ||
this.each(function(){ | ||
slice.call(this.children).forEach(function(el){ | ||
nodes.push(el); | ||
}) | ||
}); | ||
return selector === undefined ? $(nodes) : $(nodes).filter(selector); | ||
return filtered(flatten(this.map(function(el){ return slice.call(el.children) })), selector); | ||
}, | ||
siblings: function(selector){ | ||
var node, nodes=[]; | ||
this.each(function(){ | ||
slice.call((node = this).parentNode.children).forEach(function(el){ | ||
if (node !== el) nodes.push(el); | ||
}) | ||
}); | ||
return selector === undefined ? $(nodes) : $(nodes).filter(selector); | ||
return filtered(flatten(this.map(function(el){ | ||
return slice.call(el.parentNode.children).filter(function(child){ return child!==el }); | ||
})), selector); | ||
}, | ||
pluck: function(property){ return this.map(function(element){ return element[property] }) }, | ||
show: function(){ return this.css('display', 'block') }, | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,47 @@ | ||
<!DOCTYPE html> | ||
<html> | ||
<head> | ||
<meta charset="utf-8"> | ||
<title>Zepto Compatibility unit tests</title> | ||
<script src="../src/polyfill.js"></script> | ||
<script src="../src/zepto.js"></script> | ||
<script src="../vendor/evidence.js"></script> | ||
</head> | ||
<body> | ||
<h1>Zepto Compatibility unit tests</h1> | ||
<p> | ||
See the browser console for results. | ||
</p> | ||
<script> | ||
Evidence.TestCase.extend('ZeptoTest', { | ||
|
||
// test to see if we augment String.prototype.trim if not supported natively | ||
testTrim: function(t){ | ||
t.assertEqual("blah", " blah ".trim()); | ||
}, | ||
|
||
// test to see if we augment Array.prototype.reduceif not supported natively | ||
testReduce: function(t){ | ||
t.assertEqual( | ||
10, | ||
[0,1,2,3,4].reduce(function(p,c){ return p+c }) | ||
); | ||
|
||
t.assertEqual( | ||
20, | ||
[0,1,2,3,4].reduce(function(p,c){ return p+c }, 10) | ||
); | ||
|
||
var flattened = [[0,1], [2,3], [4,5]].reduce(function(a,b){ | ||
return a.concat(b); | ||
}); | ||
|
||
t.assertEqual(6, flattened.length); | ||
|
||
for(var i=0;i<6;i++) t.assertEqual(i, flattened[i]); | ||
} | ||
|
||
}); | ||
</script> | ||
</body> | ||
</html> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
what is the case for this check?
selector.call !== undefined