Sha256: 44833756219a5a827884f2a97f2e961a8e3c0f02375fb413122ca9c8150ce989

Contents?: true

Size: 704 Bytes

Versions: 250

Compression:

Stored size: 704 Bytes

Contents

# frozen_string_literal: true

module ActionView
  module Helpers
    module Tags # :nodoc:
      module Placeholderable # :nodoc:
        def initialize(*)
          super

          if tag_value = @options[:placeholder]
            placeholder = tag_value if tag_value.is_a?(String)
            method_and_value = tag_value.is_a?(TrueClass) ? @method_name : "#{@method_name}.#{tag_value}"

            placeholder ||= Tags::Translator
              .new(object, @object_name, method_and_value, scope: "helpers.placeholder")
              .translate
            placeholder ||= @method_name.humanize
            @options[:placeholder] = placeholder
          end
        end
      end
    end
  end
end

Version data entries

250 entries across 237 versions & 17 rubygems

Version Path
omg-actionview-8.0.0.alpha1 lib/action_view/helpers/tags/placeholderable.rb
actionview-7.1.4 lib/action_view/helpers/tags/placeholderable.rb
actionview-7.2.1 lib/action_view/helpers/tags/placeholderable.rb
actionview-7.2.0 lib/action_view/helpers/tags/placeholderable.rb
actionview-7.2.0.rc1 lib/action_view/helpers/tags/placeholderable.rb
blacklight-spotlight-3.6.0.beta8 vendor/bundle/ruby/3.2.0/gems/actionview-7.0.8.4/lib/action_view/helpers/tags/placeholderable.rb
blacklight-spotlight-3.6.0.beta8 vendor/bundle/ruby/3.2.0/gems/actionview-7.1.3.4/lib/action_view/helpers/tags/placeholderable.rb
actionview-7.2.0.beta3 lib/action_view/helpers/tags/placeholderable.rb
cm-admin-1.5.22 vendor/bundle/ruby/3.3.0/gems/actionview-7.0.5.1/lib/action_view/helpers/tags/placeholderable.rb
cm-admin-1.5.21 vendor/bundle/ruby/3.3.0/gems/actionview-7.0.5.1/lib/action_view/helpers/tags/placeholderable.rb
cm-admin-1.5.20 vendor/bundle/ruby/3.3.0/gems/actionview-7.0.5.1/lib/action_view/helpers/tags/placeholderable.rb
katalyst-govuk-formbuilder-1.9.2 vendor/bundle/ruby/3.3.0/gems/actionview-7.1.3.4/lib/action_view/helpers/tags/placeholderable.rb
tinymce-rails-7.1.2 vendor/bundle/ruby/3.3.0/gems/actionview-7.1.3.4/lib/action_view/helpers/tags/placeholderable.rb
actionview-7.2.0.beta2 lib/action_view/helpers/tags/placeholderable.rb
actionview-7.1.3.4 lib/action_view/helpers/tags/placeholderable.rb
actionview-7.0.8.4 lib/action_view/helpers/tags/placeholderable.rb
actionview-6.1.7.8 lib/action_view/helpers/tags/placeholderable.rb
actionview-7.2.0.beta1 lib/action_view/helpers/tags/placeholderable.rb
actionview-7.1.3.2 lib/action_view/helpers/tags/placeholderable.rb
actionview-7.1.3.1 lib/action_view/helpers/tags/placeholderable.rb