2019-05-03 06:17:27 +08:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2017-07-04 03:22:44 +08:00
|
|
|
class Rtl
|
2024-06-09 03:24:39 +08:00
|
|
|
LOCALES = %w[ar fa_IR he ug ur]
|
|
|
|
|
2014-08-27 19:38:03 +08:00
|
|
|
attr_reader :user
|
|
|
|
|
|
|
|
def initialize(user)
|
|
|
|
@user = user
|
|
|
|
end
|
|
|
|
|
|
|
|
def enabled?
|
|
|
|
site_locale_rtl? || current_user_rtl?
|
|
|
|
end
|
|
|
|
|
|
|
|
def current_user_rtl?
|
2024-06-09 03:24:39 +08:00
|
|
|
SiteSetting.allow_user_locale && (user&.locale || SiteSetting.default_locale).in?(LOCALES)
|
2014-08-27 19:38:03 +08:00
|
|
|
end
|
|
|
|
|
|
|
|
def site_locale_rtl?
|
2024-06-09 03:24:39 +08:00
|
|
|
!SiteSetting.allow_user_locale && SiteSetting.default_locale.in?(LOCALES)
|
2014-08-27 19:38:03 +08:00
|
|
|
end
|
|
|
|
|
|
|
|
def css_class
|
|
|
|
enabled? ? "rtl" : ""
|
|
|
|
end
|
|
|
|
end
|