Sha256: e7c25ee38e9a4f8d65791e1f8b142b3c062df4039e0fd954752987da29d125ea

Contents?: true

Size: 1.15 KB

Versions: 6

Compression:

Stored size: 1.15 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
          return 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

6 entries across 6 versions & 1 rubygems

Version Path
ransack-1.8.6 lib/ransack/nodes/attribute.rb
ransack-1.8.4 lib/ransack/nodes/attribute.rb
ransack-1.8.3 lib/ransack/nodes/attribute.rb
ransack-1.8.2 lib/ransack/nodes/attribute.rb
ransack-1.8.1 lib/ransack/nodes/attribute.rb
ransack-1.8.0 lib/ransack/nodes/attribute.rb