2018-12-13 13:39:08 +05:30
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2017-08-17 22:00:37 +05:30
|
|
|
module Gitlab
|
|
|
|
module Ci
|
|
|
|
module Status
|
|
|
|
# Base abstract class fore core status
|
|
|
|
#
|
|
|
|
class Core
|
|
|
|
include Gitlab::Routing
|
|
|
|
include Gitlab::Allowable
|
|
|
|
|
|
|
|
attr_reader :subject, :user
|
|
|
|
|
|
|
|
def initialize(subject, user)
|
|
|
|
@subject = subject
|
|
|
|
@user = user
|
|
|
|
end
|
|
|
|
|
|
|
|
def icon
|
|
|
|
raise NotImplementedError
|
|
|
|
end
|
|
|
|
|
|
|
|
def favicon
|
|
|
|
raise NotImplementedError
|
|
|
|
end
|
|
|
|
|
2018-05-09 12:01:36 +05:30
|
|
|
def illustration
|
|
|
|
raise NotImplementedError
|
|
|
|
end
|
|
|
|
|
2017-08-17 22:00:37 +05:30
|
|
|
def label
|
|
|
|
raise NotImplementedError
|
|
|
|
end
|
|
|
|
|
|
|
|
def group
|
|
|
|
self.class.name.demodulize.underscore
|
|
|
|
end
|
|
|
|
|
|
|
|
def has_details?
|
|
|
|
false
|
|
|
|
end
|
|
|
|
|
|
|
|
def details_path
|
|
|
|
raise NotImplementedError
|
|
|
|
end
|
|
|
|
|
|
|
|
def has_action?
|
|
|
|
false
|
|
|
|
end
|
|
|
|
|
|
|
|
def action_icon
|
|
|
|
raise NotImplementedError
|
|
|
|
end
|
|
|
|
|
|
|
|
def action_path
|
|
|
|
raise NotImplementedError
|
|
|
|
end
|
|
|
|
|
|
|
|
def action_method
|
|
|
|
raise NotImplementedError
|
|
|
|
end
|
|
|
|
|
|
|
|
def action_title
|
|
|
|
raise NotImplementedError
|
|
|
|
end
|
2018-05-09 12:01:36 +05:30
|
|
|
|
|
|
|
def action_button_title
|
|
|
|
raise NotImplementedError
|
|
|
|
end
|
|
|
|
|
|
|
|
# Hint that appears on all the pipeline graph tooltips and builds on the right sidebar in Job detail view
|
|
|
|
def status_tooltip
|
|
|
|
label
|
|
|
|
end
|
|
|
|
|
|
|
|
# Hint that appears on the build badges
|
|
|
|
def badge_tooltip
|
|
|
|
subject.status
|
|
|
|
end
|
2017-08-17 22:00:37 +05:30
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|