Sha256: 0546f1b4140aa630a389193215e71e86e25c029f09ed3c029f0d55ecb125b4fe

Contents?: true

Size: 1.98 KB

Versions: 34

Compression:

Stored size: 1.98 KB

Contents

# frozen_string_literal:true

module JobInvocationsHelper
  def minicard(icon, number, text, tooltip: nil)
    tooltip_options = tooltip ? { :'data-original-title' => tooltip, :rel => 'twipsy' } : {}
    content_tag(:div, :class => 'card-pf card-pf-accented
                card-pf-aggregate-status card-pf-aggregate-status-mini') do
      content_tag(:h2, { :class => 'card-pf-title', :style => 'line-height: 1.1' }.merge(tooltip_options)) do
        icon_text(icon, '', :kind => 'pficon') +
        content_tag(:span, number, :class =>'card-pf-aggregate-status-count') +
        text
      end
    end
  end

  def template_name_and_provider_link(template)
    template_name = content_tag(:strong, template.name)
    provider = template.provider.humanized_name
    link_content = template_name + ' - ' + provider + ' ' +
      icon_text('edit', '', :kind => 'pficon')
    link_to_if_authorized(link_content,
      hash_for_edit_job_template_path(:id => template.id))
  end

  def preview_hosts(template_invocation)
    hosts = template_invocation.targeting.hosts.authorized(:view_hosts, Host).take(20)
    hosts.map do |host|
      collapsed_preview(host) +
        render(:partial => 'job_invocations/user_input',
          :locals => { :template_invocation => template_invocation,
                       :target => host })
    end.reduce(:+)
  end

  def collapsed_preview(target)
    title = target.try(:name) || 'N/A'
    content_tag(:h5,
      :class => "expander collapsed out",
      :data => { :toggle => 'collapse',
                 :target => "#preview_#{target.id}" }) do
      content_tag(:span, '', :class => 'caret') + title
    end
  end

  def show_job_organization(organization)
    organization.presence || _('Any Organization')
  end

  def show_job_location(location)
    location.presence || _('Any Location')
  end

  def input_safe_value(input)
    template_input = input.template_input
    template_input.respond_to?(:hidden_value) && template_input.hidden_value ? '*' * 5 : input.value
  end
end

Version data entries

34 entries across 34 versions & 1 rubygems

Version Path
foreman_remote_execution-12.0.7 app/helpers/job_invocations_helper.rb
foreman_remote_execution-10.1.3 app/helpers/job_invocations_helper.rb
foreman_remote_execution-12.0.5 app/helpers/job_invocations_helper.rb
foreman_remote_execution-12.0.4 app/helpers/job_invocations_helper.rb
foreman_remote_execution-12.0.1 app/helpers/job_invocations_helper.rb
foreman_remote_execution-12.0.2 app/helpers/job_invocations_helper.rb
foreman_remote_execution-11.1.3 app/helpers/job_invocations_helper.rb
foreman_remote_execution-10.1.2 app/helpers/job_invocations_helper.rb
foreman_remote_execution-12.0.0 app/helpers/job_invocations_helper.rb
foreman_remote_execution-10.1.1 app/helpers/job_invocations_helper.rb
foreman_remote_execution-11.1.1 app/helpers/job_invocations_helper.rb
foreman_remote_execution-11.1.0 app/helpers/job_invocations_helper.rb
foreman_remote_execution-10.1.0 app/helpers/job_invocations_helper.rb
foreman_remote_execution-8.3.3 app/helpers/job_invocations_helper.rb
foreman_remote_execution-8.3.2 app/helpers/job_invocations_helper.rb
foreman_remote_execution-11.0.0 app/helpers/job_invocations_helper.rb
foreman_remote_execution-10.0.7 app/helpers/job_invocations_helper.rb
foreman_remote_execution-8.3.1 app/helpers/job_invocations_helper.rb
foreman_remote_execution-10.0.6 app/helpers/job_invocations_helper.rb
foreman_remote_execution-10.0.5 app/helpers/job_invocations_helper.rb