2016-12-07 10:46:37 -05:00
|
|
|
class StatusEntity < Grape::Entity
|
|
|
|
include RequestAwareEntity
|
|
|
|
|
2017-04-13 06:09:20 -04:00
|
|
|
expose :icon, :text, :label, :group
|
2018-04-05 17:04:42 -04:00
|
|
|
expose :status_tooltip, as: :tooltip
|
2016-12-07 10:46:37 -05:00
|
|
|
expose :has_details?, as: :has_details
|
|
|
|
expose :details_path
|
2017-04-13 06:09:20 -04:00
|
|
|
|
2017-04-13 07:14:31 -04:00
|
|
|
expose :favicon do |status|
|
2018-03-27 13:59:14 -04:00
|
|
|
dir =
|
|
|
|
if Gitlab::Utils.to_boolean(ENV['CANARY'])
|
|
|
|
File.join('ci_favicons', 'canary')
|
|
|
|
elsif Rails.env.development?
|
|
|
|
File.join('ci_favicons', 'dev')
|
|
|
|
else
|
|
|
|
'ci_favicons'
|
|
|
|
end
|
2017-04-25 12:15:41 -04:00
|
|
|
|
|
|
|
ActionController::Base.helpers.image_path(File.join(dir, "#{status.favicon}.ico"))
|
2017-04-13 07:14:31 -04:00
|
|
|
end
|
2017-05-06 12:45:46 -04:00
|
|
|
|
|
|
|
expose :action, if: -> (status, _) { status.has_action? } do
|
|
|
|
expose :action_icon, as: :icon
|
|
|
|
expose :action_title, as: :title
|
|
|
|
expose :action_path, as: :path
|
|
|
|
expose :action_method, as: :method
|
|
|
|
end
|
2016-12-07 10:46:37 -05:00
|
|
|
end
|