Sha256: 2b8d0005d87050edeab90fda079c8a6614af193a20aeea8905be9b4a9c206ae2

Contents?: true

Size: 893 Bytes

Versions: 4

Compression:

Stored size: 893 Bytes

Contents

require 'copy_tuner_client/copyray'

begin
  require "simple_form"
rescue LoadError
end

if defined?(SimpleForm)
  module SimpleForm::Components::Labels
    protected
    def label_translation_with_copyray_comment
      source = label_translation_without_copyray_comment

      if !CopyTunerClient.configuration.disable_copyray_comment_injection && object.class.respond_to?(:lookup_ancestors)
        attributes_scope = "#{object.class.i18n_scope}.attributes"
        defaults = object.class.lookup_ancestors.map do |klass|
          "#{attributes_scope}.#{klass.model_name.i18n_key}.#{reflection_or_attribute_name}"
        end
        CopyTunerClient::Copyray.augment_template(source, defaults.shift).html_safe
      else
        source
      end
    end
    if CopyTunerClient.configuration.enable_middleware?
      alias_method_chain :label_translation, :copyray_comment
    end
  end
end

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
copy_tuner_client-0.3.4 lib/copy_tuner_client/simple_form_extention.rb
copy_tuner_client-0.3.3 lib/copy_tuner_client/simple_form_extention.rb
copy_tuner_client-0.3.2 lib/copy_tuner_client/simple_form_extention.rb
copy_tuner_client-0.3.1 lib/copy_tuner_client/simple_form_extention.rb