mirror of
https://github.com/gitlabhq/gitlabhq.git
synced 2025-07-25 17:08:32 +00:00
74 lines
1.7 KiB
Ruby
74 lines
1.7 KiB
Ruby
# frozen_string_literal: true
|
|
|
|
module Gitlab
|
|
# Module containing GitLab's color mode definitions and helper methods
|
|
# for accessing them.
|
|
module ColorModes
|
|
# Color mode ID used when no `default_color_mode` configuration setting is provided.
|
|
APPLICATION_DEFAULT = 3
|
|
APPLICATION_LIGHT = 1
|
|
APPLICATION_DARK = 2
|
|
APPLICATION_SYSTEM = 3
|
|
|
|
# Struct class representing a single Mode
|
|
Mode = Struct.new(:id, :name, :css_class)
|
|
|
|
def self.available_modes
|
|
[
|
|
Mode.new(APPLICATION_LIGHT, s_('ColorMode|Light'), 'gl-light'),
|
|
Mode.new(APPLICATION_DARK, s_('ColorMode|Dark'), 'gl-dark'),
|
|
Mode.new(APPLICATION_SYSTEM, s_('ColorMode|Auto'), 'gl-system')
|
|
]
|
|
end
|
|
|
|
# Get a Mode by its ID
|
|
#
|
|
# If the ID is invalid, returns the default Mode.
|
|
#
|
|
# id - Integer ID
|
|
#
|
|
# Returns a Mode
|
|
def self.by_id(id)
|
|
available_modes.detect { |s| s.id == id } || default
|
|
end
|
|
|
|
# Get the default Mode
|
|
#
|
|
# Returns a Mode
|
|
def self.default
|
|
by_id(default_id)
|
|
end
|
|
|
|
# Iterate through each Mode
|
|
#
|
|
# Yields the Mode object
|
|
def self.each(&block)
|
|
available_modes.each(&block)
|
|
end
|
|
|
|
# Get the Mode for the specified user, or the default
|
|
#
|
|
# user - User record
|
|
#
|
|
# Returns a Mode
|
|
def self.for_user(user)
|
|
if user
|
|
by_id(user.color_mode_id)
|
|
else
|
|
default
|
|
end
|
|
end
|
|
|
|
def self.valid_ids
|
|
available_modes.map(&:id)
|
|
end
|
|
|
|
def self.default_id
|
|
@default_id ||= begin
|
|
id = Gitlab.config.gitlab['default_color_mode']&.to_i
|
|
available_modes.detect { |s| s.id == id }&.id || APPLICATION_DEFAULT
|
|
end
|
|
end
|
|
end
|
|
end
|