Module: Ci::StatusHelper

Defined in:
app/helpers/ci/status_helper.rb

Instance Method Summary collapse

Instance Method Details

#ci_icon_class_for_status(status) ⇒ Object

rubocop:enable Metrics/CyclomaticComplexity



57
58
59
60
61
# File 'app/helpers/ci/status_helper.rb', line 57

def ci_icon_class_for_status(status)
  group = detailed_status?(status) ? status.group : status.dasherize

  "ci-status-icon-#{group}"
end

#ci_icon_for_status(status, size: 16) ⇒ Object

rubocop:disable Metrics/CyclomaticComplexity



18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
# File 'app/helpers/ci/status_helper.rb', line 18

def ci_icon_for_status(status, size: 16)
  if detailed_status?(status)
    return sprite_icon(status.icon, size: size)
  end

  icon_name =
    case status
    when 'success'
      'status_success'
    when 'success-with-warnings'
      'status_warning'
    when 'failed'
      'status_failed'
    when 'pending'
      'status_pending'
    when 'waiting_for_resource'
      'status_pending'
    when 'preparing'
      'status_preparing'
    when 'running'
      'status_running'
    when 'play'
      'play'
    when 'created'
      'status_created'
    when 'skipped'
      'status_skipped'
    when 'manual'
      'status_manual'
    when 'scheduled'
      'status_scheduled'
    else
      'status_canceled'
    end

  sprite_icon(icon_name, size: size)
end

#ci_status_for_statuseable(subject) ⇒ Object



12
13
14
15
# File 'app/helpers/ci/status_helper.rb', line 12

def ci_status_for_statuseable(subject)
  status = subject.try(:status) || 'not found'
  status.humanize
end

#pipeline_status_cache_key(pipeline_status) ⇒ Object



63
64
65
# File 'app/helpers/ci/status_helper.rb', line 63

def pipeline_status_cache_key(pipeline_status)
  "pipeline-status/#{pipeline_status.sha}-#{pipeline_status.status}"
end

#render_commit_status(commit, status, ref: nil, tooltip_placement: 'left') ⇒ Object



67
68
69
70
71
72
73
74
75
76
# File 'app/helpers/ci/status_helper.rb', line 67

def render_commit_status(commit, status, ref: nil, tooltip_placement: 'left')
  project = commit.project
  path = pipelines_project_commit_path(project, commit, ref: ref)

  render_status_with_link(
    status,
    path,
    tooltip_placement: tooltip_placement,
    icon_size: 16)
end


78
79
80
81
82
83
84
85
86
87
88
89
# File 'app/helpers/ci/status_helper.rb', line 78

def render_status_with_link(status, path = nil, type: _('pipeline'), tooltip_placement: 'left', cssclass: '', container: 'body', icon_size: 16)
  variant = badge_variant(status)
  klass = "ci-status-link #{ci_icon_class_for_status(status)} d-inline-flex gl-line-height-1 #{cssclass}"
  title = "#{type.titleize}: #{ci_label_for_status(status)}"
  data = { toggle: 'tooltip', placement: tooltip_placement, container: container }
  badge_classes = 'gl-px-2 gl-ml-3'

  gl_badge_tag(variant: variant, size: :md, href: path, class: badge_classes, title: title, data: data) do
     :span, ci_icon_for_status(status, size: icon_size),
      class: klass
  end
end