ManageIQ/manageiq-ui-classic

View on GitHub
app/helpers/application_helper/toolbar/ansible_credential_center.rb

Summary

Maintainability
A
1 hr
Test Coverage
A
100%
class ApplicationHelper::Toolbar::AnsibleCredentialCenter < ApplicationHelper::Toolbar::Basic
  button_group('ansible_repository', [
    select(
      :ansible_credential_configuration,
      nil,
      t = N_('Configuration'),
      t,
      :items => [
        button(
          :embedded_automation_manager_credentials_edit,
          'pficon pficon-edit fa-lg',
          t = N_('Edit this Credential'),
          t,
          :klass => ApplicationHelper::Button::EmbeddedAnsible,
          :url => "/edit"),
        button(
          :embedded_automation_manager_credentials_delete,
          'pficon pficon-delete fa-lg',
          t = N_('Remove this Credential from Inventory'),
          t,
          :klass => ApplicationHelper::Button::EmbeddedAnsible,
          :data  => {'function'      => 'sendDataWithRx',
                     'function-data' => {:controller     => 'provider_dialogs',
                                         :modal_title    => N_('Delete Credential'),
                                         :modal_text     => N_('Are you sure you want to delete the following credential?'),
                                         :api_url        => 'authentications',
                                         :async_delete   => true,
                                         :redirect_url   => '/ansible_credential/show_list',
                                         :component_name => 'RemoveGenericItemModal'}}),
      ]
    ),
  ])
  button_group('embedded_ansible_credentials_policy', [
                 select(
                   :embedded_ansible_credentials_policy_choice,
                   nil,
                   t = N_('Policy'),
                   t,
                   :items => [
                     button(
                       :embedded_automation_manager_credential_tag,
                       'pficon pficon-edit fa-lg',
                       N_('Edit Tags for this Ansible Credential'),
                       N_('Edit Tags'),
                     ),
                   ]
                 )
               ])
end