Sha256: 63e4bb94be86deb5de11ab8d3fa2cc3e23f7e3b3117408fa92bebeb8a8990852

Contents?: true

Size: 1.36 KB

Versions: 5

Compression:

Stored size: 1.36 KB

Contents

module CopyTunerClient
  class TranslationLog
    def self.translations
      Thread.current[:translations]
    end

    def self.clear
      Thread.current[:translations] = {}
    end

    def self.initialized?
      !Thread.current[:translations].nil?
    end

    def self.add(key, result)
      translations[key] = result if initialized? && !translations.key?(key)
    end

    def self.install_hook
      I18n.class_eval do
        class << self
          def translate_with_copy_tuner_hook(key = nil, **options)
            scope = options[:scope]
            scope = scope.dup if scope.is_a?(Array) || scope.is_a?(String)
            result = translate_without_copy_tuner_hook(key, **options)

            if key.is_a?(Array)
              key.zip(result).each { |k, v| CopyTunerClient::TranslationLog.add(I18n.normalize_keys(nil, k, scope).compact.join('.'), v) unless v.is_a?(Array) }
            else
              CopyTunerClient::TranslationLog.add(I18n.normalize_keys(nil, key, scope).compact.join('.'), result) unless result.is_a?(Array)
            end
            result
          end

          if CopyTunerClient.configuration.enable_middleware?
            alias_method :translate_without_copy_tuner_hook, :translate
            alias_method :translate, :translate_with_copy_tuner_hook
            alias :t :translate
          end
        end
      end
    end
  end
end

Version data entries

5 entries across 5 versions & 1 rubygems

Version Path
copy_tuner_client-0.19.0 lib/copy_tuner_client/translation_log.rb
copy_tuner_client-0.18.0 lib/copy_tuner_client/translation_log.rb
copy_tuner_client-0.17.1 lib/copy_tuner_client/translation_log.rb
copy_tuner_client-0.16.3 lib/copy_tuner_client/translation_log.rb
copy_tuner_client-0.16.2 lib/copy_tuner_client/translation_log.rb