cfabianski/json_translate

View on GitHub
lib/json_translate/translates/instance_methods.rb

Summary

Maintainability
A
1 hr
Test Coverage
module JSONTranslate
  module Translates
    module InstanceMethods
      def disable_fallback
        toggle_fallback(false)
        yield if block_given?
      end

      def enable_fallback
        toggle_fallback(true)
        yield if block_given?
      end

      protected

      attr_reader :enabled_fallback

      def json_translate_fallback_locales(locale)
        if enabled_fallback != false && I18n.respond_to?(:fallbacks)
          Array(I18n.fallbacks[locale])
        else
          Array(locale)
        end
      end

      def read_json_translation(attr_name, locale: I18n.locale, fallback: true, **params)
        translations = public_send("#{attr_name}#{SUFFIX}") || {}

        selected_locale = locale
        if fallback
          selected_locale = json_translate_fallback_locales(locale).detect do |available_locale|
            translations[available_locale.to_s].present?
          end
        end

        translation = translations[selected_locale.to_s]

        if translation && params.present?
          begin
            translation = I18n.interpolate(translation, params)
          rescue I18n::MissingInterpolationArgument
          end
        end

        translation
      end

      def write_json_translation(attr_name, value, locale: I18n.locale, allow_blank:)
        value = allow_blank ? value : value.presence
        translation_store = "#{attr_name}#{SUFFIX}"
        translations = public_send(translation_store) || {}
        translation_store_will_change!(translation_store) unless translations[locale.to_s] == value
        if value
          translations[locale.to_s] = value
        else
          translations.delete(locale.to_s)
        end
        public_send("#{translation_store}=", translations)
        value
      end

      def translation_store_will_change!(translation_store)
        public_send("#{translation_store}_will_change!")
      end

      def toggle_fallback(enabled)
        if block_given?
          old_value = @enabled_fallback
          begin
            @enabled_fallback = enabled
            yield
          ensure
            @enabled_fallback = old_value
          end
        else
          @enabled_fallback = enabled
        end
      end
    end
  end
end