Sha256: ce07fcaf8594c09c64774372c254d8690398228fbf0255da0a562a2a8b11e7e7

Contents?: true

Size: 1.13 KB

Versions: 5

Compression:

Stored size: 1.13 KB

Contents

module Ransack
  module Nodes
    class Attribute < Node
      include Bindable

      attr_reader :name, :ransacker_args

      delegate :blank?, :present?, to: :name
      delegate :engine, to: :context

      def initialize(context, name = nil, ransacker_args = [])
        super(context)
        self.name = name unless name.blank?
        @ransacker_args = ransacker_args
      end

      def name=(name)
        @name = name
      end

      def valid?
        bound? && attr &&
        context.klassify(parent).ransackable_attributes(context.auth_object)
        .include?(attr_name.split('.').last)
      end

      def associated_collection?
        parent.respond_to?(:reflection) && parent.reflection.collection?
      end

      def type
        if ransacker
          ransacker.type
        else
          context.type_for(self)
        end
      end

      def eql?(other)
        self.class == other.class &&
        self.name == other.name
      end
      alias :== :eql?

      def hash
        self.name.hash
      end

      def persisted?
        false
      end

      def inspect
        "Attribute <#{name}>"
      end

    end
  end
end

Version data entries

5 entries across 5 versions & 1 rubygems

Version Path
ransack-4.2.1 lib/ransack/nodes/attribute.rb
ransack-4.2.0 lib/ransack/nodes/attribute.rb
ransack-4.1.1 lib/ransack/nodes/attribute.rb
ransack-4.1.0 lib/ransack/nodes/attribute.rb
ransack-4.0.0 lib/ransack/nodes/attribute.rb