Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

added support to group by multiple key #178

Open
wants to merge 3 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
54 changes: 37 additions & 17 deletions dist/angular-filter.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
/**
* Bunch of useful filters for angularJS(with no external dependencies!)
* @version v0.5.7 - 2015-10-04 * @link https://github.com/a8m/angular-filter
* @version v0.5.8 - 2015-12-21 * @link https://github.com/a8m/angular-filter
* @author Ariel Mashraki <[email protected]>
* @license MIT License, http://www.opensource.org/licenses/MIT
*/
Expand Down Expand Up @@ -622,7 +622,7 @@ angular.module('a8m.every', [])
*/
angular.module('a8m.filter-by', [])
.filter('filterBy', ['$parse', function( $parse ) {
return function(collection, properties, search) {
return function(collection, properties, search, strict) {
var comparator;

search = (isString(search) || isNumber(search)) ?
Expand All @@ -646,16 +646,19 @@ angular.module('a8m.filter-by', [])
if(!~prop.indexOf('+')) {
comparator = $parse(prop)(elm)
} else {
var propList = prop.replace(new RegExp('\\s', 'g'), '').split('+');
comparator = propList.reduce(function(prev, cur, index) {
return (index === 1) ? $parse(prev)(elm) + ' ' + $parse(cur)(elm) :
prev + ' ' + $parse(cur)(elm);
});
var propList = prop.replace(/\s+/g, '').split('+');
comparator = propList
.map(function(prop) { return $parse(prop)(elm); })
.join(' ');
}

return (isString(comparator) || isNumber(comparator))
? String(comparator).toLowerCase().contains(search)
: false;
if (!isString(comparator) && !isNumber(comparator)) {
return false;
}

comparator = String(comparator).toLowerCase();

return strict ? comparator === search : comparator.contains(search);
});
});
}
Expand Down Expand Up @@ -848,6 +851,7 @@ angular.module('a8m.fuzzy', [])
* each key is an array of the elements.
*/


angular.module('a8m.group-by', [ 'a8m.filter-watcher' ])
.filter('groupBy', [ '$parse', 'filterWatcher', function ( $parse, filterWatcher ) {
return function (collection, property) {
Expand All @@ -856,22 +860,38 @@ angular.module('a8m.group-by', [ 'a8m.filter-watcher' ])
return collection;
}

return filterWatcher.isMemoized('groupBy', arguments) ||
filterWatcher.memoize('groupBy', arguments, this,
_groupBy(collection, $parse(property)));
if (filterWatcher.isMemoized('groupBy', arguments))
return filterWatcher.isMemoized('groupBy', arguments);

var getters = [];
if (angular.isArray(property)) {
forEach(property, function(prop) {
getters.push($parse(prop));
})
} else {
getters.push($parse(property));
}
return filterWatcher.memoize('groupBy', arguments, this,
_groupBy(collection, getters));

/**
* groupBy function
* @param collection
* @param getter
* @param getters
* @returns {{}}
*/
function _groupBy(collection, getter) {
function _groupBy(collection, getters) {
var result = {};
var prop;

forEach( collection, function( elm ) {
prop = getter(elm);
var prop = [];

forEach(getters, function(getter) {
var p = getter(elm);
if (angular.isUndefined(p))
p = 'undefined';
prop.push(p);
})

if(!result[prop]) {
result[prop] = [];
Expand Down
Loading