2018-08-18 07:19:57 -04:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2018-02-02 16:51:03 -05:00
|
|
|
module UserCalloutsHelper
|
2018-01-30 09:30:49 -05:00
|
|
|
GKE_CLUSTER_INTEGRATION = 'gke_cluster_integration'.freeze
|
2018-05-07 14:06:02 -04:00
|
|
|
GCP_SIGNUP_OFFER = 'gcp_signup_offer'.freeze
|
2018-09-06 16:41:12 -04:00
|
|
|
CLUSTER_SECURITY_WARNING = 'cluster_security_warning'.freeze
|
2018-01-30 09:30:49 -05:00
|
|
|
|
|
|
|
def show_gke_cluster_integration_callout?(project)
|
2018-02-05 08:33:49 -05:00
|
|
|
can?(current_user, :create_cluster, project) &&
|
|
|
|
!user_dismissed?(GKE_CLUSTER_INTEGRATION)
|
2018-01-27 11:32:10 -05:00
|
|
|
end
|
|
|
|
|
2018-05-07 14:06:02 -04:00
|
|
|
def show_gcp_signup_offer?
|
|
|
|
!user_dismissed?(GCP_SIGNUP_OFFER)
|
|
|
|
end
|
|
|
|
|
2018-09-06 16:41:12 -04:00
|
|
|
def show_cluster_security_warning?
|
|
|
|
!user_dismissed?(CLUSTER_SECURITY_WARNING)
|
|
|
|
end
|
|
|
|
|
2018-01-27 11:32:10 -05:00
|
|
|
private
|
|
|
|
|
|
|
|
def user_dismissed?(feature_name)
|
2018-01-10 23:16:27 -05:00
|
|
|
current_user&.callouts&.find_by(feature_name: UserCallout.feature_names[feature_name])
|
2018-01-27 11:32:10 -05:00
|
|
|
end
|
|
|
|
end
|