Last active
November 7, 2019 21:10
-
-
Save katowulf/bee266e31aa60cb0eed6 to your computer and use it in GitHub Desktop.
Filter records loaded into AngularFire based on some criteria.
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 will be much more efficient than $watch() | |
app.factory('FilteredArray', function($firebaseArray) { | |
function FilteredArray(ref, filterFn) { | |
this.filterFn = filterFn; | |
return $firebaseArray.call(this, ref); | |
} | |
FilteredArray.prototype.$$added = function(snap) { | |
var rec = $firebaseArray.prototype.$$added.call(this, snap); | |
if( !this.filterFn || this.filterFn(rec) ) { | |
return rec; | |
} | |
}; | |
return $firebaseArray.$extend(FilteredArray); | |
}); | |
app.controller('...', function($scope, FilteredArray) { | |
var ref = new Firebase('https://kato-books.firebaseio.com/'); | |
$scope.data = FilteredArray(ref, function(rec) { | |
return rec.author !== 'Stephen King'; | |
}) | |
}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
I know it is are a couple of years later :). but how can this be used in combination with updates / removals?