2020-11-24 15:15:51 +05:30
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
module WhatsNewHelper
|
2021-01-03 14:25:43 +05:30
|
|
|
def whats_new_most_recent_release_items_count
|
2021-02-22 17:27:13 +05:30
|
|
|
ReleaseHighlight.most_recent_item_count
|
2021-01-03 14:25:43 +05:30
|
|
|
end
|
2020-11-24 15:15:51 +05:30
|
|
|
|
2021-04-29 21:17:54 +05:30
|
|
|
def whats_new_version_digest
|
|
|
|
ReleaseHighlight.most_recent_version_digest
|
2021-02-22 17:27:13 +05:30
|
|
|
end
|
2020-11-24 15:15:51 +05:30
|
|
|
|
2021-04-29 21:17:54 +05:30
|
|
|
def display_whats_new?
|
2022-05-07 20:08:51 +05:30
|
|
|
(Gitlab.org_or_com? || user_signed_in?) &&
|
2021-06-08 01:23:25 +05:30
|
|
|
!Gitlab::CurrentSettings.current_application_settings.whats_new_variant_disabled?
|
|
|
|
end
|
|
|
|
|
|
|
|
def whats_new_variants
|
|
|
|
ApplicationSetting.whats_new_variants
|
|
|
|
end
|
|
|
|
|
|
|
|
def whats_new_variants_label(variant)
|
|
|
|
case variant
|
|
|
|
when 'all_tiers'
|
|
|
|
_("Enable What's new: All tiers")
|
|
|
|
when 'current_tier'
|
|
|
|
_("Enable What's new: Current tier only")
|
|
|
|
when 'disabled'
|
|
|
|
_("Disable What's new")
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
def whats_new_variants_description(variant)
|
|
|
|
case variant
|
|
|
|
when 'all_tiers'
|
2021-09-30 23:02:18 +05:30
|
|
|
_("Include new features from all tiers.")
|
2021-06-08 01:23:25 +05:30
|
|
|
when 'current_tier'
|
2021-09-30 23:02:18 +05:30
|
|
|
_("Only include features new to your current subscription tier.")
|
2021-06-08 01:23:25 +05:30
|
|
|
when 'disabled'
|
2021-09-30 23:02:18 +05:30
|
|
|
_("%{italic_start}What's new%{italic_end} is inactive and cannot be viewed.").html_safe % { italic_start: '<i>'.html_safe, italic_end: '</i>'.html_safe }
|
2021-06-08 01:23:25 +05:30
|
|
|
end
|
2020-11-24 15:15:51 +05:30
|
|
|
end
|
|
|
|
end
|