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"),
|
|
|
|
todos: _("Your Todos"),
|
|
|
|
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
|
|
|
|
|
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
|
|
|
|
|
|
|
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
|
2015-06-05 15:53:57 -04:00
|
|
|
end
|