2018-08-18 07:19:57 -04:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2018-02-02 16:51:03 -05:00
|
|
|
module UserCalloutsHelper
|
2020-03-24 11:08:44 -04:00
|
|
|
ADMIN_INTEGRATIONS_MOVED = 'admin_integrations_moved'
|
2019-08-31 15:23:12 -04:00
|
|
|
GKE_CLUSTER_INTEGRATION = 'gke_cluster_integration'
|
|
|
|
GCP_SIGNUP_OFFER = 'gcp_signup_offer'
|
|
|
|
SUGGEST_POPOVER_DISMISSED = 'suggest_popover_dismissed'
|
2019-12-02 22:06:35 -05:00
|
|
|
TABS_POSITION_HIGHLIGHT = 'tabs_position_highlight'
|
2020-02-24 13:09:05 -05:00
|
|
|
WEBHOOKS_MOVED = 'webhooks_moved'
|
2020-08-18 17:09:57 -04:00
|
|
|
CUSTOMIZE_HOMEPAGE = 'customize_homepage'
|
2018-01-30 09:30:49 -05:00
|
|
|
|
2020-03-24 11:08:44 -04:00
|
|
|
def show_admin_integrations_moved?
|
|
|
|
!user_dismissed?(ADMIN_INTEGRATIONS_MOVED)
|
|
|
|
end
|
|
|
|
|
2018-01-30 09:30:49 -05:00
|
|
|
def show_gke_cluster_integration_callout?(project)
|
2020-08-12 23:10:13 -04:00
|
|
|
active_nav_link?(controller: sidebar_operations_paths) &&
|
|
|
|
can?(current_user, :create_cluster, project) &&
|
2018-02-05 08:33:49 -05:00
|
|
|
!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
|
|
|
|
|
2020-02-06 13:08:54 -05:00
|
|
|
def render_account_recovery_regular_check
|
|
|
|
end
|
|
|
|
|
2019-06-14 09:01:24 -04:00
|
|
|
def show_suggest_popover?
|
|
|
|
!user_dismissed?(SUGGEST_POPOVER_DISMISSED)
|
|
|
|
end
|
|
|
|
|
2019-12-02 22:06:35 -05:00
|
|
|
def show_tabs_feature_highlight?
|
2020-01-09 19:07:56 -05:00
|
|
|
current_user && !user_dismissed?(TABS_POSITION_HIGHLIGHT) && !Rails.env.test?
|
2019-12-02 22:06:35 -05:00
|
|
|
end
|
|
|
|
|
2020-02-24 13:09:05 -05:00
|
|
|
def show_webhooks_moved_alert?
|
|
|
|
!user_dismissed?(WEBHOOKS_MOVED)
|
|
|
|
end
|
|
|
|
|
2020-08-18 17:09:57 -04:00
|
|
|
def show_customize_homepage_banner?(customize_homepage)
|
|
|
|
customize_homepage && !user_dismissed?(CUSTOMIZE_HOMEPAGE)
|
|
|
|
end
|
|
|
|
|
2018-01-27 11:32:10 -05:00
|
|
|
private
|
|
|
|
|
2020-02-06 13:08:54 -05:00
|
|
|
def user_dismissed?(feature_name, ignore_dismissal_earlier_than = nil)
|
|
|
|
return false unless current_user
|
|
|
|
|
|
|
|
current_user.dismissed_callout?(feature_name: feature_name, ignore_dismissal_earlier_than: ignore_dismissal_earlier_than)
|
2018-01-27 11:32:10 -05:00
|
|
|
end
|
|
|
|
end
|
2019-09-13 09:26:31 -04:00
|
|
|
|
|
|
|
UserCalloutsHelper.prepend_if_ee('EE::UserCalloutsHelper')
|