2018-12-05 23:21:45 +05:30
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2018-03-17 18:26:18 +05:30
|
|
|
module UserCalloutsHelper
|
2020-04-22 19:07:51 +05:30
|
|
|
ADMIN_INTEGRATIONS_MOVED = 'admin_integrations_moved'
|
2019-12-04 20:38:33 +05:30
|
|
|
GKE_CLUSTER_INTEGRATION = 'gke_cluster_integration'
|
|
|
|
GCP_SIGNUP_OFFER = 'gcp_signup_offer'
|
|
|
|
SUGGEST_POPOVER_DISMISSED = 'suggest_popover_dismissed'
|
2020-11-24 15:15:51 +05:30
|
|
|
SERVICE_TEMPLATES_DEPRECATED = 'service_templates_deprecated'
|
2020-01-01 13:55:28 +05:30
|
|
|
TABS_POSITION_HIGHLIGHT = 'tabs_position_highlight'
|
2020-04-08 14:13:33 +05:30
|
|
|
WEBHOOKS_MOVED = 'webhooks_moved'
|
2020-10-24 23:57:45 +05:30
|
|
|
CUSTOMIZE_HOMEPAGE = 'customize_homepage'
|
2021-01-03 14:25:43 +05:30
|
|
|
FEATURE_FLAGS_NEW_VERSION = 'feature_flags_new_version'
|
2018-03-17 18:26:18 +05:30
|
|
|
|
2020-04-22 19:07:51 +05:30
|
|
|
def show_admin_integrations_moved?
|
|
|
|
!user_dismissed?(ADMIN_INTEGRATIONS_MOVED)
|
|
|
|
end
|
|
|
|
|
2018-03-17 18:26:18 +05:30
|
|
|
def show_gke_cluster_integration_callout?(project)
|
2020-10-24 23:57:45 +05:30
|
|
|
active_nav_link?(controller: sidebar_operations_paths) &&
|
|
|
|
can?(current_user, :create_cluster, project) &&
|
2018-03-17 18:26:18 +05:30
|
|
|
!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
|
|
|
|
|
2020-03-13 15:44:24 +05:30
|
|
|
def render_account_recovery_regular_check
|
|
|
|
end
|
|
|
|
|
2019-09-04 21:01:54 +05:30
|
|
|
def show_suggest_popover?
|
|
|
|
!user_dismissed?(SUGGEST_POPOVER_DISMISSED)
|
|
|
|
end
|
|
|
|
|
2020-11-24 15:15:51 +05:30
|
|
|
def show_service_templates_deprecated?
|
|
|
|
!user_dismissed?(SERVICE_TEMPLATES_DEPRECATED)
|
|
|
|
end
|
|
|
|
|
2020-04-08 14:13:33 +05:30
|
|
|
def show_webhooks_moved_alert?
|
|
|
|
!user_dismissed?(WEBHOOKS_MOVED)
|
|
|
|
end
|
|
|
|
|
2020-10-24 23:57:45 +05:30
|
|
|
def show_customize_homepage_banner?(customize_homepage)
|
|
|
|
customize_homepage && !user_dismissed?(CUSTOMIZE_HOMEPAGE)
|
|
|
|
end
|
|
|
|
|
2021-01-03 14:25:43 +05:30
|
|
|
def show_feature_flags_new_version?
|
|
|
|
!user_dismissed?(FEATURE_FLAGS_NEW_VERSION)
|
2020-11-24 15:15:51 +05:30
|
|
|
end
|
|
|
|
|
2018-03-17 18:26:18 +05:30
|
|
|
private
|
|
|
|
|
2020-03-13 15:44:24 +05:30
|
|
|
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-03-17 18:26:18 +05:30
|
|
|
end
|
|
|
|
end
|
2019-12-04 20:38:33 +05:30
|
|
|
|
|
|
|
UserCalloutsHelper.prepend_if_ee('EE::UserCalloutsHelper')
|