summaryrefslogtreecommitdiff
path: root/app/helpers/builds_helper.rb
blob: 9662ac7e341a39a1e2949b9b7bd7dab2d7936b37 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
module BuildsHelper
  def sidebar_build_class(build, current_build)
    build_class = ''
    build_class += ' active' if build == current_build
    build_class += ' retried' if build.retried?
    build_class
  end

  def javascript_build_options
    {
      page_url: namespace_project_build_url(@project.namespace, @project, @build),
      build_url: namespace_project_build_url(@project.namespace, @project, @build, :json),
      build_status: @build.status,
      build_stage: @build.stage,
      state1: @build.trace_with_state[:state].to_s
    }
  end
end