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
|
2019-06-14 09:01:24 -04:00
|
|
|
SUGGEST_POPOVER_DISMISSED = 'suggest_popover_dismissed'.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
|
|
|
|
|
2019-01-04 18:14:15 -05:00
|
|
|
def render_flash_user_callout(flash_type, message, feature_name)
|
|
|
|
render 'shared/flash_user_callout', flash_type: flash_type, message: message, feature_name: feature_name
|
|
|
|
end
|
|
|
|
|
2019-02-19 16:26:07 -05:00
|
|
|
def render_dashboard_gold_trial(user)
|
|
|
|
end
|
|
|
|
|
2019-06-14 09:01:24 -04:00
|
|
|
def show_suggest_popover?
|
|
|
|
!user_dismissed?(SUGGEST_POPOVER_DISMISSED)
|
|
|
|
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
|