mirror of
https://github.com/ZwareBear/awx.git
synced 2026-04-17 21:41:47 -05:00
109 lines
3.1 KiB
JavaScript
109 lines
3.1 KiB
JavaScript
/*********************************************
|
|
* Copyright (c) 2014 AnsibleWorks, Inc.
|
|
*
|
|
* InventoryHosts.js
|
|
*
|
|
* Right side of /inventories/N page, showing hosts in the selected group.
|
|
*
|
|
*/
|
|
|
|
|
|
|
|
export default
|
|
angular.module('InventoryHostsDefinition', [])
|
|
.value('InventoryHosts', {
|
|
|
|
name: 'hosts',
|
|
iterator: 'host',
|
|
editTitle: '{{ selected_group }}',
|
|
showTitle: false,
|
|
well: true,
|
|
index: false,
|
|
hover: true,
|
|
hasChildren: true,
|
|
'class': 'table-no-border',
|
|
multiSelect: true,
|
|
|
|
fields: {
|
|
name: {
|
|
key: true,
|
|
label: 'Hosts',
|
|
ngClick: "editHost(host.id)",
|
|
ngClass: "{ 'host-disabled-label': !host.enabled }",
|
|
columnClass: 'col-lg-6 col-md-9 col-sm-9 col-xs-7',
|
|
dataHostId: "{{ host.id }}",
|
|
dataType: "host"
|
|
},
|
|
enabled: {
|
|
label: 'Disabled?',
|
|
searchSingleValue: true,
|
|
searchType: 'boolean',
|
|
searchValue: 'false',
|
|
searchOnly: true
|
|
},
|
|
has_active_failures: {
|
|
label: 'Failed jobs?',
|
|
searchSingleValue: true,
|
|
searchType: 'boolean',
|
|
searchValue: 'true',
|
|
searchOnly: true
|
|
}
|
|
},
|
|
|
|
fieldActions: {
|
|
|
|
columnClass: 'col-lg-6 col-md-3 col-sm-3 col-xs-5 text-right',
|
|
label: false,
|
|
|
|
active_failures: {
|
|
awPopOver: "{{ host.job_status_html }}",
|
|
dataTitle: "{{ host.job_status_title }}",
|
|
awToolTip: "{{ host.badgeToolTip }}",
|
|
awTipPlacement: 'top',
|
|
dataPlacement: 'left',
|
|
iconClass: "{{ 'fa icon-job-' + host.active_failures }}",
|
|
id: 'active-failutes-action'
|
|
},
|
|
edit: {
|
|
//label: 'Edit',
|
|
ngClick: "editHost(host.id)",
|
|
icon: 'icon-edit',
|
|
awToolTip: 'Edit host',
|
|
dataPlacement: 'top'
|
|
},
|
|
copy: {
|
|
mode: 'all',
|
|
ngClick: "copyHost(host.id)",
|
|
awToolTip: 'Copy or move host to another group',
|
|
dataPlacement: "top"
|
|
},
|
|
"delete": {
|
|
//label: 'Delete',
|
|
ngClick: "deleteHost(host.id, host.name)",
|
|
icon: 'icon-trash',
|
|
awToolTip: 'Delete host',
|
|
dataPlacement: 'top'
|
|
}
|
|
},
|
|
|
|
actions: {
|
|
create: {
|
|
mode: 'all',
|
|
ngClick: "createHost()",
|
|
awToolTip: "Create a new host"
|
|
},
|
|
refresh: {
|
|
mode: 'all',
|
|
awToolTip: "Refresh the page",
|
|
ngClick: "refreshGroups()",
|
|
ngShow: "socketStatus == 'error'"
|
|
},
|
|
stream: {
|
|
ngClick: "showHostActivity()",
|
|
awToolTip: "View Activity Stream",
|
|
mode: 'all'
|
|
}
|
|
}
|
|
|
|
});
|