gitlab-org--gitlab-foss/app/helpers/preferences_helper.rb

92 lines
2.5 KiB
Ruby
Raw Normal View History

# frozen_string_literal: true
# Helper methods for per-User preferences
module PreferencesHelper
def layout_choices
[
['Fixed', :fixed],
['Fluid', :fluid]
]
end
2015-06-13 00:39:48 +00:00
# Maps `dashboard` values to more user-friendly option text
DASHBOARD_CHOICES = {
projects: _("Your Projects (default)"),
stars: _("Starred Projects"),
project_activity: _("Your Projects' Activity"),
starred_project_activity: _("Starred Projects' Activity"),
groups: _("Your Groups"),
todos: _("Your To-Do List"),
issues: _("Assigned Issues"),
merge_requests: _("Assigned Merge Requests"),
operations: _("Operations Dashboard")
2015-06-13 00:39:48 +00:00
}.with_indifferent_access.freeze
2015-06-13 00:39:48 +00:00
# Returns an Array usable by a select field for more user-friendly option text
def dashboard_choices
dashboards = User.dashboards.keys
validate_dashboard_choices!(dashboards)
dashboards -= excluded_dashboard_choices
dashboards.map do |key|
# Use `fetch` so `KeyError` gets raised when a key is missing
[DASHBOARD_CHOICES.fetch(key), key]
end
end
def project_view_choices
[
['Files and Readme (default)', :files],
2017-10-16 20:21:51 +00:00
['Activity', :activity],
['Readme', :readme]
]
end
2018-11-06 21:16:49 +00:00
def first_day_of_week_choices
[
2018-11-13 18:38:26 +00:00
[_('Sunday'), 0],
[_('Monday'), 1],
[_('Saturday'), 6]
2018-11-06 21:16:49 +00:00
]
end
2018-11-13 18:38:26 +00:00
def first_day_of_week_choices_with_default
2019-01-10 21:06:42 +00:00
first_day_of_week_choices.unshift([_('System default (%{default})') % { default: default_first_day_of_week }, nil])
2018-11-13 18:38:26 +00:00
end
def user_application_theme
@user_application_theme ||= Gitlab::Themes.for_user(current_user).css_class
end
def user_color_scheme
Gitlab::ColorSchemes.for_user(current_user).css_class
end
2019-02-20 22:58:53 +00:00
def language_choices
Gitlab::I18n::AVAILABLE_LANGUAGES.map { |value, label| [label, value] }
end
private
# Ensure that anyone adding new options updates `DASHBOARD_CHOICES` too
def validate_dashboard_choices!(user_dashboards)
if user_dashboards.size != DASHBOARD_CHOICES.size
raise "`User` defines #{user_dashboards.size} dashboard choices," \
" but `DASHBOARD_CHOICES` defined #{DASHBOARD_CHOICES.size}."
end
end
# List of dashboard choice to be excluded from CE.
# EE would override this.
def excluded_dashboard_choices
['operations']
end
2019-02-06 16:49:39 +00:00
def default_first_day_of_week
first_day_of_week_choices.rassoc(Gitlab::CurrentSettings.first_day_of_week).first
end
end
PreferencesHelper.prepend_if_ee('EE::PreferencesHelper')