-
Notifications
You must be signed in to change notification settings - Fork 293
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fixes #4702: Only include selected repositories in UI when filtering …
…for content view.
- Loading branch information
Showing
9 changed files
with
101 additions
and
6 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
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
33 changes: 33 additions & 0 deletions
33
engines/bastion/app/assets/javascripts/bastion/utils/as.filter.js
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,33 @@ | ||
/** | ||
* Copyright 2014 Red Hat, Inc. | ||
* | ||
* This software is licensed to you under the GNU General Public | ||
* License as published by the Free Software Foundation; either version | ||
* 2 of the License (GPLv2) or (at your option) any later version. | ||
* There is NO WARRANTY for this software, express or implied, | ||
* including the implied warranties of MERCHANTABILITY, | ||
* NON-INFRINGEMENT, or FITNESS FOR A PARTICULAR PURPOSE. You should | ||
* have received a copy of GPLv2 along with this software; if not, see | ||
* http://www.gnu.org/licenses/old-licenses/gpl-2.0.txt. | ||
**/ | ||
|
||
/** | ||
* @ngdoc filter | ||
* @name Bastion.utils.filter:as | ||
* | ||
* @requires $parse | ||
* | ||
* @description | ||
* Adds variable to scope with the value passed in. This allows adding to the | ||
* scope a variable that contains the result of multiple applied filters. | ||
* | ||
* @example | ||
* <ul> | ||
<li ng-repeat="item in items | filter:customFilter | as:filteredItems"></li> | ||
</ul> | ||
*/ | ||
angular.module('Bastion.utils').filter('as', ['$parse', function ($parse) { | ||
return function (value, path) { | ||
return $parse(path).assign(this, value); | ||
}; | ||
}]); |
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,33 @@ | ||
/** | ||
* Copyright 2014 Red Hat, Inc. | ||
* | ||
* This software is licensed to you under the GNU General Public | ||
* License as published by the Free Software Foundation; either version | ||
* 2 of the License (GPLv2) or (at your option) any later version. | ||
* There is NO WARRANTY for this software, express or implied, | ||
* including the implied warranties of MERCHANTABILITY, | ||
* NON-INFRINGEMENT, or FITNESS FOR A PARTICULAR PURPOSE. You should | ||
* have received a copy of GPLv2 along with this software; if not, see | ||
* http://www.gnu.org/licenses/old-licenses/gpl-2.0.txt. | ||
*/ | ||
|
||
describe('Filter:as', function() { | ||
var array, scope = {}; | ||
|
||
beforeEach(module('Bastion.utils')); | ||
|
||
beforeEach(inject(function($filter) { | ||
array = [ | ||
{id: 1, name: 'one'}, | ||
{id: 2, name: 'two'}, | ||
{id: 3, name: 'three'} | ||
]; | ||
scope.asFilter = $filter('as') | ||
})); | ||
|
||
it("should set items to the value of array", function() { | ||
expect(scope.asFilter(array, 'items')).toEqual(array); | ||
expect(scope.items).toEqual(array); | ||
}); | ||
|
||
}); |