debian-mirror-gitlab/app/helpers/user_callouts_helper.rb

34 lines
927 B
Ruby
Raw Normal View History

2018-12-05 23:21:45 +05:30
# frozen_string_literal: true
2018-03-17 18:26:18 +05:30
module UserCalloutsHelper
GKE_CLUSTER_INTEGRATION = 'gke_cluster_integration'.freeze
2018-10-15 14:42:47 +05:30
GCP_SIGNUP_OFFER = 'gcp_signup_offer'.freeze
2019-09-04 21:01:54 +05:30
SUGGEST_POPOVER_DISMISSED = 'suggest_popover_dismissed'.freeze
2018-03-17 18:26:18 +05:30
def show_gke_cluster_integration_callout?(project)
can?(current_user, :create_cluster, project) &&
!user_dismissed?(GKE_CLUSTER_INTEGRATION)
end
2018-10-15 14:42:47 +05:30
def show_gcp_signup_offer?
!user_dismissed?(GCP_SIGNUP_OFFER)
end
2019-02-15 15:39:39 +05:30
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-07-07 11:18:12 +05:30
def render_dashboard_gold_trial(user)
end
2019-09-04 21:01:54 +05:30
def show_suggest_popover?
!user_dismissed?(SUGGEST_POPOVER_DISMISSED)
end
2018-03-17 18:26:18 +05:30
private
def user_dismissed?(feature_name)
current_user&.callouts&.find_by(feature_name: UserCallout.feature_names[feature_name])
end
end