Sha256: b74f7841b24c822f2ea83db93fb5c445d79386127709680683c7860691be7355

Contents?: true

Size: 1.81 KB

Versions: 13

Compression:

Stored size: 1.81 KB

Contents

 module Locomotive
  module Concerns
    module LocaleHelpersController

      extend ActiveSupport::Concern

      included do
        helper_method :current_content_locale, :localized?
      end

      def current_content_locale
        ::Mongoid::Fields::I18n.locale
      end

      def set_current_content_locale
        if params[:content_locale].present?
          session[:content_locale] = params[:content_locale]
        end

        unless current_site.locales.include?(session[:content_locale])
          session[:content_locale] = current_site.default_locale
        end

        ::Mongoid::Fields::I18n.locale = session[:content_locale]

        # set also the locale in the session steam uses for the preview
        # This is important because all the sites in preview mode belong to the same domain
        session["steam-locale-#{current_site.handle}"] = session[:content_locale]

        self.setup_i18n_fallbacks

        # logger.debug "*** content locale = #{session[:content_locale]} / #{::Mongoid::Fields::I18n.locale}"
      end

      def back_to_default_site_locale
        # we do force the content locale to the site default locale
        params.delete(:content_locale)

        session[:content_locale] = ::Mongoid::Fields::I18n.locale = current_site.default_locale
      end

      def setup_i18n_fallbacks
        ::Mongoid::Fields::I18n.clear_fallbacks
        (current_site.try(:locales) || []).each do |locale|
          ::Mongoid::Fields::I18n.fallbacks_for(locale, current_site.locale_fallbacks(locale))
        end
      end

      def localized?
        !!@locomotive_localized
      end

      module ClassMethods

        def localized(enable_it = true)
          before_action do |c|
            c.instance_variable_set(:@locomotive_localized, enable_it)
          end
        end

      end

    end
  end
end

Version data entries

13 entries across 13 versions & 1 rubygems

Version Path
locomotivecms-4.2.0.alpha2 app/controllers/locomotive/concerns/locale_helpers_controller.rb
locomotivecms-4.2.0.alpha1 app/controllers/locomotive/concerns/locale_helpers_controller.rb
locomotivecms-4.1.1 app/controllers/locomotive/concerns/locale_helpers_controller.rb
locomotivecms-4.1.0 app/controllers/locomotive/concerns/locale_helpers_controller.rb
locomotivecms-4.1.0.rc1 app/controllers/locomotive/concerns/locale_helpers_controller.rb
locomotivecms-4.0.3 app/controllers/locomotive/concerns/locale_helpers_controller.rb
locomotivecms-4.0.2 app/controllers/locomotive/concerns/locale_helpers_controller.rb
locomotivecms-4.0.1 app/controllers/locomotive/concerns/locale_helpers_controller.rb
locomotivecms-4.0.0 app/controllers/locomotive/concerns/locale_helpers_controller.rb
locomotivecms-4.0.0.rc0 app/controllers/locomotive/concerns/locale_helpers_controller.rb
locomotivecms-4.0.0.alpha3 app/controllers/locomotive/concerns/locale_helpers_controller.rb
locomotivecms-4.0.0.alpha2 app/controllers/locomotive/concerns/locale_helpers_controller.rb
locomotivecms-4.0.0.alpha1 app/controllers/locomotive/concerns/locale_helpers_controller.rb