blob: 1d814a790e0e50a0e2f2cd6fb602b5e41df42e8f [file] [log] [blame]
//Copyright 2017 Huawei Technologies Co., Ltd
//
//Licensed under the Apache License, Version 2.0 (the "License");
//you may not use this file except in compliance with the License.
//You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
//Unless required by applicable law or agreed to in writing, software
//distributed under the License is distributed on an "AS IS" BASIS,
//WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
//See the License for the specific language governing permissions and
//limitations under the License.
'use strict';
angular.module('serviceCenter')
.directive('tableData', ['$mdDialog', function($mdDialog) {
return {
restrict: 'E',
scope: {
heading: '=heading',
headers: '=headers',
data: '=data',
pagination: '=pagination',
refresh: '=refresh',
removes: '=removes',
dialogClose: '=dialogClose',
buttons: '=buttons',
enableSearch: '=search',
appList:'=appList',
apiInfo:'=apiInfo'
},
templateUrl: 'scripts/views/tableData.html',
link: function(scope) {
/*
If the table has buttons with functions declared in the controller then the functions must be defined first
and then the buttons configured. Seems like some scope issue need to figure out a better solution
*/
scope.paginationQuery = {
order: 'name',
limit: 10,
page: 1
};
scope.paginationOptions = {
rowSelection: false,
multiSelect: false,
autoSelect: false,
decapitate: false,
largeEditDialog: false,
boundaryLinks: true,
limitSelect: true,
pageSelect: true
};
scope.filter = {
options: {
debounce: 500
},
};
scope.showSearch = false;
scope.searchClose = function() {
scope.showSearch = false;
scope.filter.search = "";
};
scope.searchOpen = function() {
scope.showSearch = true;
};
scope.reload = function() {
scope.refresh();
};
scope.close = function() {
$mdDialog.cancel();
};
scope.remove = function(serviceId, instances) {
scope.removes(serviceId, instances)
};
}
};
}]);