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

74 lines
2.2 KiB
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
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'
2021-04-29 21:17:54 +05:30
SERVICE_TEMPLATES_DEPRECATED_CALLOUT = 'service_templates_deprecated_callout'
2020-01-01 13:55:28 +05:30
TABS_POSITION_HIGHLIGHT = 'tabs_position_highlight'
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'
2021-01-29 00:20:46 +05:30
REGISTRATION_ENABLED_CALLOUT = 'registration_enabled_callout'
2021-03-11 19:13:27 +05:30
UNFINISHED_TAG_CLEANUP_CALLOUT = 'unfinished_tag_cleanup_callout'
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
2021-04-17 20:07:23 +05:30
def render_dashboard_ultimate_trial(user)
2019-07-07 11:18:12 +05:30
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
2021-04-29 21:17:54 +05:30
def show_service_templates_deprecated_callout?
!Gitlab.com? &&
current_user&.admin? &&
2021-06-08 01:23:25 +05:30
Integration.for_template.active.exists? &&
2021-04-29 21:17:54 +05:30
!user_dismissed?(SERVICE_TEMPLATES_DEPRECATED_CALLOUT)
2020-11-24 15:15:51 +05:30
end
2021-04-29 21:17:54 +05:30
def show_customize_homepage_banner?
!user_dismissed?(CUSTOMIZE_HOMEPAGE)
2020-10-24 23:57:45 +05:30
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
2021-03-11 19:13:27 +05:30
def show_unfinished_tag_cleanup_callout?
!user_dismissed?(UNFINISHED_TAG_CLEANUP_CALLOUT)
end
2021-01-29 00:20:46 +05:30
def show_registration_enabled_user_callout?
2021-02-22 17:27:13 +05:30
!Gitlab.com? &&
current_user&.admin? &&
signup_enabled? &&
!user_dismissed?(REGISTRATION_ENABLED_CALLOUT)
2021-01-29 00:20:46 +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
2021-06-08 01:23:25 +05:30
UserCalloutsHelper.prepend_mod_with('UserCalloutsHelper')