mirror of
https://github.com/ZwareBear/awx.git
synced 2026-04-06 16:11:49 -05:00
114 lines
3.8 KiB
JavaScript
114 lines
3.8 KiB
JavaScript
/*********************************************
|
|
* Copyright (c) 2014 AnsibleWorks, Inc.
|
|
*
|
|
* Inventories.js
|
|
* List view object for Inventories data model.
|
|
*
|
|
*/
|
|
|
|
'use strict';
|
|
|
|
angular.module('InventoriesListDefinition', [])
|
|
.value('InventoryList', {
|
|
|
|
name: 'inventories',
|
|
iterator: 'inventory',
|
|
selectTitle: 'Add Inventories',
|
|
editTitle: 'Inventories',
|
|
selectInstructions: "Click on a row to select it, and click Finished when done. Use the green <i class=\"icon-plus\"></i> " +
|
|
"button to create a new row.",
|
|
index: true,
|
|
hover: true,
|
|
|
|
fields: {
|
|
status: {
|
|
label: 'Status',
|
|
columnClass: 'col-md-2 col-sm-2 col-xs-2',
|
|
searchable: false,
|
|
nosort: true,
|
|
ngClick: "null",
|
|
dataTitle: "Sync Status",
|
|
icons: [{
|
|
icon: "{{ 'icon-cloud-' + inventory.syncStatus }}",
|
|
awToolTip: "{{ inventory.syncTip }}",
|
|
awTipPlacement: "top",
|
|
awPopOver: "{{ inventory.syncPopOver }}",
|
|
dataPlacement: "right"
|
|
},{
|
|
icon: "{{ 'icon-job-' + inventory.hostsStatus }}",
|
|
awToolTip: "{{ inventory.hostsTip }}",
|
|
awTipPlacement: "top",
|
|
awPopOver: "{{ inventory.hostsPopOver }}",
|
|
dataPlacement: "right"
|
|
}]
|
|
},
|
|
name: {
|
|
key: true,
|
|
label: 'Name'
|
|
},
|
|
organization: {
|
|
label: 'Organization',
|
|
ngBind: 'inventory.summary_fields.organization.name',
|
|
linkTo: '/#/organizations/{{ inventory.organization }}',
|
|
sourceModel: 'organization',
|
|
sourceField: 'name',
|
|
excludeModal: true
|
|
},
|
|
has_inventory_sources: {
|
|
label: 'Cloud sourced?',
|
|
searchSingleValue: true,
|
|
searchType: 'boolean',
|
|
searchValue: 'true',
|
|
searchOnly: true
|
|
},
|
|
has_active_failures: {
|
|
label: 'Failed hosts?',
|
|
searchSingleValue: true,
|
|
searchType: 'boolean',
|
|
searchValue: 'true',
|
|
searchOnly: true
|
|
},
|
|
inventory_sources_with_failures: {
|
|
label: 'Sync failures?',
|
|
searchType: 'gtzero',
|
|
searchValue: 'true',
|
|
searchOnly: true
|
|
}
|
|
},
|
|
|
|
actions: {
|
|
add: {
|
|
mode: 'all', // One of: edit, select, all
|
|
ngClick: 'addInventory()',
|
|
awToolTip: 'Create a new inventory'
|
|
},
|
|
stream: {
|
|
ngClick: "showActivity()",
|
|
awToolTip: "View Activity Stream",
|
|
icon: "icon-comments-alt",
|
|
mode: 'edit'
|
|
}
|
|
},
|
|
|
|
fieldActions: {
|
|
failed_hosts: {
|
|
//label: 'Failures',
|
|
ngHref: "{{ inventory.failed_hosts_link }}",
|
|
iconClass: "{{ 'fa icon-failures-' + inventory.failed_hosts_class }}",
|
|
awToolTip: "{{ inventory.failed_hosts_tip }}",
|
|
dataPlacement: "top"
|
|
},
|
|
edit: {
|
|
label: 'Edit',
|
|
ngClick: 'editInventoryProperties(inventory.id)',
|
|
awToolTip: 'Edit inventory',
|
|
dataPlacement: 'top'
|
|
},
|
|
"delete": {
|
|
label: 'Delete',
|
|
ngClick: "deleteInventory(inventory.id, inventory.names)",
|
|
awToolTip: 'Delete inventory',
|
|
dataPlacement: 'top'
|
|
}
|
|
}
|
|
}); |