mirror of
https://github.com/ansible/awx.git
synced 2026-02-04 02:58:13 -03:30
i removed the lines of code that would resize the portal containers and moved it to the portal jobs list widget b/c resizing logic already happens there. But I added formatting of the 'Action' columns for both widgets to change them to 'Launch' and 'Details' respectively
146 lines
4.3 KiB
JavaScript
146 lines
4.3 KiB
JavaScript
/************************************
|
|
* Copyright (c) 2014 AnsibleWorks, Inc.
|
|
*
|
|
*
|
|
* Portal.js
|
|
*
|
|
* Controller functions for portal mode
|
|
*
|
|
*/
|
|
|
|
|
|
/**
|
|
* @ngdoc function
|
|
* @name controllers.function:Portal
|
|
* @description This controller's for portal mode
|
|
*/
|
|
'use strict';
|
|
|
|
/**
|
|
* @ngdoc method
|
|
* @name controllers.function:Portal#Portal
|
|
* @methodOf controllers.function:Portal
|
|
* @description portal mode woohoo
|
|
*
|
|
*
|
|
*/
|
|
function PortalController($scope, $compile, $routeParams, $rootScope, $location, $log, Wait, ClearScope, Stream, Rest, GetBasePath, ProcessErrors,
|
|
Button, PortalJobsWidget, GenerateList, PortalJobTemplateList, SearchInit, PaginateInit, PlaybookRun){
|
|
|
|
ClearScope('portal');
|
|
|
|
var html,
|
|
e,
|
|
// winHeight,
|
|
// available_height,
|
|
list = PortalJobTemplateList,
|
|
view= GenerateList,
|
|
defaultUrl = GetBasePath('job_templates'),
|
|
buttons = {
|
|
refresh: {
|
|
mode: 'all',
|
|
awToolTip: "Refresh the page",
|
|
ngClick: "refresh()",
|
|
ngShow:"socketStatus == 'error'"
|
|
}
|
|
// ,
|
|
// stream: {
|
|
// ngClick: "showActivity()",
|
|
// awToolTip: "View Activity Stream",
|
|
// mode: 'all'
|
|
// }
|
|
};
|
|
|
|
html = Button({
|
|
btn: buttons.refresh,
|
|
action: 'refresh',
|
|
toolbar: true
|
|
});
|
|
|
|
// html += Button({
|
|
// btn: buttons.stream,
|
|
// action: 'stream',
|
|
// toolbar: true
|
|
// });
|
|
|
|
e = angular.element(document.getElementById('portal-list-actions'));
|
|
e.html(html);
|
|
$compile(e)($scope);
|
|
|
|
if ($scope.removeLoadPortal) {
|
|
$scope.removeLoadPortal();
|
|
}
|
|
$scope.removeLoadPortal = $scope.$on('LoadPortal', function () {
|
|
|
|
view.inject( list, {
|
|
id : 'portal-job-template',
|
|
mode: 'edit',
|
|
scope: $scope,
|
|
breadCrumbs: false,
|
|
searchSize: 'col-lg-6 col-md-6'
|
|
});
|
|
|
|
$rootScope.flashMessage = null;
|
|
|
|
SearchInit({
|
|
scope: $scope,
|
|
set: 'job_templates',
|
|
list: list,
|
|
url: defaultUrl
|
|
});
|
|
PaginateInit({
|
|
scope: $scope,
|
|
list: list,
|
|
url: defaultUrl
|
|
});
|
|
|
|
// Called from Inventories tab, host failed events link:
|
|
if ($routeParams.name) {
|
|
$scope[list.iterator + 'SearchField'] = 'name';
|
|
$scope[list.iterator + 'SearchValue'] = $routeParams.name;
|
|
$scope[list.iterator + 'SearchFieldLabel'] = list.fields.name.label;
|
|
}
|
|
|
|
$scope.search(list.iterator);
|
|
|
|
PortalJobsWidget({
|
|
scope: $scope,
|
|
target: 'portal-jobs',
|
|
searchSize: 'col-lg-6 col-md-6'
|
|
});
|
|
});
|
|
if ($scope.removeWidgetLoaded) {
|
|
$scope.removeWidgetLoaded();
|
|
}
|
|
$scope.removeWidgetLoaded = $scope.$on('WidgetLoaded', function () {
|
|
$('.actions-column:eq(0)').text('Launch');
|
|
$('.actions-column:eq(1)').text('Details');
|
|
$('.list-well:eq(1)').css('margin-top' , '0px');
|
|
});
|
|
|
|
$scope.submitJob = function (id) {
|
|
PlaybookRun({ scope: $scope, id: id });
|
|
};
|
|
|
|
$scope.refresh = function () {
|
|
$scope.$emit('LoadPortal');
|
|
// Wait('start');
|
|
// loadedCount = 0;
|
|
// Rest.setUrl(GetBasePath('dashboard'));
|
|
// Rest.get()
|
|
// .success(function (data) {
|
|
// $scope.$emit('dashboardReady', data);
|
|
// })
|
|
// .error(function (data, status) {
|
|
// ProcessErrors($scope, data, status, null, { hdr: 'Error!', msg: 'Failed to get dashboard: ' + status });
|
|
// });
|
|
};
|
|
|
|
$scope.refresh();
|
|
|
|
}
|
|
|
|
PortalController.$inject = ['$scope', '$compile', '$routeParams', '$rootScope', '$location', '$log','Wait', 'ClearScope', 'Stream', 'Rest', 'GetBasePath', 'ProcessErrors',
|
|
'Button', 'PortalJobsWidget', 'GenerateList' , 'PortalJobTemplateList', 'SearchInit', 'PaginateInit', 'PlaybookRun'
|
|
];
|