activerecord-hackery--ransack/lib/ransack/nodes/attribute.rb

56 lines
1019 B
Ruby
Raw Normal View History

2011-03-31 00:31:39 +00:00
module Ransack
module Nodes
class Attribute < Node
include Bindable
attr_reader :name
delegate :blank?, :present?, :==, :to => :name
delegate :engine, :to => :context
2011-03-31 00:31:39 +00:00
def initialize(context, name = nil)
super(context)
self.name = name unless name.blank?
end
def name=(name)
@name = name
context.bind(self, name) unless name.blank?
2011-03-31 00:31:39 +00:00
end
def valid?
2013-12-07 00:51:55 +00:00
bound? && attr &&
2013-12-15 18:27:50 +00:00
context.klassify(parent).ransackable_attributes(context.auth_object)
.include?(attr_name)
end
def type
if ransacker
return ransacker.type
else
context.type_for(self)
end
2011-03-31 00:31:39 +00:00
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
2011-03-31 00:31:39 +00:00
end
end
end