2018-08-18 07:19:57 -04:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2015-06-05 15:53:57 -04:00
|
|
|
# Helper methods for per-User preferences
|
|
|
|
module PreferencesHelper
|
2015-10-05 11:22:47 -04:00
|
|
|
def layout_choices
|
|
|
|
[
|
2015-10-05 12:09:05 -04:00
|
|
|
['Fixed', :fixed],
|
|
|
|
['Fluid', :fluid]
|
2015-10-05 11:22:47 -04:00
|
|
|
]
|
|
|
|
end
|
|
|
|
|
2015-06-12 20:39:48 -04:00
|
|
|
# Maps `dashboard` values to more user-friendly option text
|
|
|
|
DASHBOARD_CHOICES = {
|
2018-03-27 08:16:12 -04:00
|
|
|
projects: _("Your Projects (default)"),
|
|
|
|
stars: _("Starred Projects"),
|
|
|
|
project_activity: _("Your Projects' Activity"),
|
|
|
|
starred_project_activity: _("Starred Projects' Activity"),
|
|
|
|
groups: _("Your Groups"),
|
2019-07-04 11:45:54 -04:00
|
|
|
todos: _("Your To-Do List"),
|
2018-03-27 08:16:12 -04:00
|
|
|
issues: _("Assigned Issues"),
|
2018-10-12 10:10:34 -04:00
|
|
|
merge_requests: _("Assigned Merge Requests"),
|
|
|
|
operations: _("Operations Dashboard")
|
2015-06-12 20:39:48 -04:00
|
|
|
}.with_indifferent_access.freeze
|
2015-06-10 04:42:02 -04:00
|
|
|
|
2015-06-12 20:39:48 -04:00
|
|
|
# Returns an Array usable by a select field for more user-friendly option text
|
|
|
|
def dashboard_choices
|
2018-10-12 10:10:34 -04:00
|
|
|
dashboards = User.dashboards.keys
|
2015-06-10 04:42:02 -04:00
|
|
|
|
2018-10-12 10:10:34 -04:00
|
|
|
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]
|
2015-06-10 04:42:02 -04:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2015-07-13 12:24:15 -04:00
|
|
|
def project_view_choices
|
|
|
|
[
|
2017-03-06 15:49:31 -05:00
|
|
|
['Files and Readme (default)', :files],
|
2017-10-16 16:21:51 -04:00
|
|
|
['Activity', :activity],
|
|
|
|
['Readme', :readme]
|
2015-07-13 12:24:15 -04:00
|
|
|
]
|
|
|
|
end
|
|
|
|
|
2018-11-06 16:16:49 -05:00
|
|
|
def first_day_of_week_choices
|
|
|
|
[
|
2018-11-13 13:38:26 -05:00
|
|
|
[_('Sunday'), 0],
|
2019-02-24 00:42:22 -05:00
|
|
|
[_('Monday'), 1],
|
|
|
|
[_('Saturday'), 6]
|
2018-11-06 16:16:49 -05:00
|
|
|
]
|
|
|
|
end
|
|
|
|
|
2018-11-13 13:38:26 -05:00
|
|
|
def first_day_of_week_choices_with_default
|
2019-01-10 16:06:42 -05:00
|
|
|
first_day_of_week_choices.unshift([_('System default (%{default})') % { default: default_first_day_of_week }, nil])
|
2018-11-13 13:38:26 -05:00
|
|
|
end
|
|
|
|
|
2017-09-11 11:44:42 -04:00
|
|
|
def user_application_theme
|
|
|
|
@user_application_theme ||= Gitlab::Themes.for_user(current_user).css_class
|
|
|
|
end
|
|
|
|
|
2015-08-26 14:33:44 -04:00
|
|
|
def user_color_scheme
|
|
|
|
Gitlab::ColorSchemes.for_user(current_user).css_class
|
2015-06-05 15:53:57 -04:00
|
|
|
end
|
2018-10-12 10:10:34 -04:00
|
|
|
|
2020-02-06 07:10:29 -05:00
|
|
|
def user_tab_width
|
|
|
|
Gitlab::TabWidth.css_class_for_user(current_user)
|
|
|
|
end
|
|
|
|
|
2019-02-20 17:58:53 -05:00
|
|
|
def language_choices
|
|
|
|
Gitlab::I18n::AVAILABLE_LANGUAGES.map { |value, label| [label, value] }
|
|
|
|
end
|
|
|
|
|
2018-10-12 10:10:34 -04:00
|
|
|
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 11:49:39 -05:00
|
|
|
|
|
|
|
def default_first_day_of_week
|
|
|
|
first_day_of_week_choices.rassoc(Gitlab::CurrentSettings.first_day_of_week).first
|
|
|
|
end
|
2015-06-05 15:53:57 -04:00
|
|
|
end
|
2019-09-13 09:26:31 -04:00
|
|
|
|
|
|
|
PreferencesHelper.prepend_if_ee('EE::PreferencesHelper')
|