2016-05-19 06:50:32 +02:00
|
|
|
(function() {
|
|
|
|
|
|
|
|
'use strict';
|
|
|
|
|
|
|
|
angular
|
|
|
|
.module('harbor.layout.search')
|
|
|
|
.controller('SearchController', SearchController);
|
|
|
|
|
2016-07-01 12:37:17 +02:00
|
|
|
SearchController.$inject = ['$location', 'SearchService', '$scope', '$filter', 'trFilter', 'getParameterByName'];
|
2016-05-19 06:50:32 +02:00
|
|
|
|
2016-07-01 12:37:17 +02:00
|
|
|
function SearchController($location, SearchService, $scope, $filter, trFilter, getParameterByName) {
|
2016-05-19 06:50:32 +02:00
|
|
|
var vm = this;
|
2016-07-01 12:37:17 +02:00
|
|
|
|
|
|
|
vm.q = getParameterByName('q', $location.absUrl());
|
|
|
|
console.log('vm.q:' + vm.q);
|
|
|
|
SearchService(vm.q)
|
|
|
|
.success(searchSuccess)
|
|
|
|
.error(searchFailed);
|
|
|
|
|
|
|
|
//Error message dialog handler for search.
|
|
|
|
$scope.$on('modalTitle', function(e, val) {
|
|
|
|
vm.modalTitle = val;
|
|
|
|
});
|
|
|
|
|
|
|
|
$scope.$on('modalMessage', function(e, val) {
|
|
|
|
vm.modalMessage = val;
|
|
|
|
});
|
|
|
|
|
|
|
|
$scope.$on('raiseError', function(e, val) {
|
|
|
|
if(val) {
|
|
|
|
vm.action = function() {
|
|
|
|
$scope.$broadcast('showDialog', false);
|
|
|
|
};
|
|
|
|
vm.contentType = 'text/plain';
|
|
|
|
vm.confirmOnly = true;
|
|
|
|
$scope.$broadcast('showDialog', true);
|
|
|
|
}
|
|
|
|
});
|
2016-05-19 06:50:32 +02:00
|
|
|
|
|
|
|
function searchSuccess(data, status) {
|
|
|
|
vm.repository = data['repository'];
|
|
|
|
vm.project = data['project'];
|
|
|
|
}
|
|
|
|
|
|
|
|
function searchFailed(data, status) {
|
2016-07-01 12:37:17 +02:00
|
|
|
|
|
|
|
$scope.$emit('modalTitle', $filter('tr')('error'));
|
|
|
|
$scope.$emit('modalMessage', $filter('tr')('failed_in_search'));
|
|
|
|
$scope.$emit('raiseError', true);
|
|
|
|
|
2016-07-04 06:34:34 +02:00
|
|
|
console.log('Failed to search:' + data);
|
2016-05-19 06:50:32 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
})();
|