2018-10-30 06:33:43 -04:00
# frozen_string_literal: true
class ProjectClusterablePresenter < ClusterablePresenter
2018-11-06 20:06:33 -05:00
extend :: Gitlab :: Utils :: Override
include ActionView :: Helpers :: UrlHelper
override :cluster_status_cluster_path
2018-10-31 20:39:01 -04:00
def cluster_status_cluster_path ( cluster , params = { } )
cluster_status_project_cluster_path ( clusterable , cluster , params )
end
2018-11-06 20:06:33 -05:00
override :install_applications_cluster_path
2018-10-31 20:39:01 -04:00
def install_applications_cluster_path ( cluster , application )
install_applications_project_cluster_path ( clusterable , cluster , application )
end
2019-03-04 05:08:53 -05:00
override :update_applications_cluster_path
def update_applications_cluster_path ( cluster , application )
update_applications_project_cluster_path ( clusterable , cluster , application )
end
2019-11-26 04:08:36 -05:00
override :clear_cluster_cache_path
def clear_cluster_cache_path ( cluster )
clear_cache_project_cluster_path ( clusterable , cluster )
end
2018-11-06 20:06:33 -05:00
override :cluster_path
2018-10-31 20:39:01 -04:00
def cluster_path ( cluster , params = { } )
project_cluster_path ( clusterable , cluster , params )
end
2018-11-06 15:26:30 -05:00
2018-11-07 03:07:28 -05:00
override :sidebar_text
def sidebar_text
s_ ( 'ClusterIntegration|With a Kubernetes cluster associated to this project, you can use review apps, deploy your applications, run your pipelines, and much more in an easy way.' )
end
2018-11-06 20:06:33 -05:00
override :learn_more_link
def learn_more_link
link_to ( s_ ( 'ClusterIntegration|Learn more about Kubernetes' ) , help_page_path ( 'user/project/clusters/index' ) , target : '_blank' , rel : 'noopener noreferrer' )
2018-11-06 15:26:30 -05:00
end
2018-10-30 06:33:43 -04:00
end
2019-09-13 09:26:31 -04:00
ProjectClusterablePresenter . prepend_if_ee ( 'EE::ProjectClusterablePresenter' )