Sha256: c0bba916af35e672dcfe200a5052cfc94dc8ac5aec4e4c20f3b6de747a76b04a

Contents?: true

Size: 1.43 KB

Versions: 1

Compression:

Stored size: 1.43 KB

Contents

module Bhf
  module ActiveRecord
    module Object

      extend ActiveSupport::Concern
      
      def to_bhf_s
        return title if self.respond_to? :title
        return name if self.respond_to? :name

        if self.respond_to? :attributes
          return title if attributes['title']
          return name if attributes['name']
          return "#{self.class.to_s.humanize} ID: #{send(self.class.primary_key)}" if attributes[self.class.primary_key]
        end

        self.to_s.humanize
      end

      module ClassMethods        
        def bhf_default_search(search_params)
          return if (search_term = search_params[:text]).blank?
          where_statement = []
          columns_hash.each_pair do |name, props|
            is_number = search_term.to_i.to_s == search_term || search_term.to_f.to_s == search_term

            if props.type == :string || props.type == :text
              where_statement << "LOWER(#{name}) LIKE LOWER('%#{search_term}%')"
            elsif props.type == :integer && is_number
              where_statement << "#{name} = #{search_term.to_i}"
            elsif props.type == :float && is_number
              where_statement << "#{name} = #{search_term.to_f}"
            end
          end

          where_statement.join(' OR ')
        end
        
        def bhf_primary_key
          primary_key
        end
        
        def bhf_embedded?
          false
        end
      end
      
    end
  end
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
bhf-0.3.11 lib/bhf/active_record/active_record.rb