Sha256: 79e32ed28ad500f86780e2c7d86fdf0a399a779502033d964a406f5a1a11dae1

Contents?: true

Size: 1.64 KB

Versions: 7

Compression:

Stored size: 1.64 KB

Contents

module Bhf::ActiveRecord
  module Base

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

      if self.respond_to?(:attributes)
        return title if attributes['title']
        return name if attributes['name']
        klass_name = if self.class.respond_to?(:model_name)
          self.class.model_name.human
        else
          self.class.to_s.humanize
        end
        return "#{klass_name} 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 self 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(where_statement.join(' OR '))
      end
      
      def bhf_attribute_method?(column_name)
        column_names.include?(column_name)
      end
      
      def bhf_primary_key
        primary_key
      end
      
      def bhf_embedded?
        false
      end
    end
    
  end
end

Version data entries

7 entries across 7 versions & 1 rubygems

Version Path
bhf-0.9.0 lib/bhf/active_record/base.rb
bhf-0.8.7 lib/bhf/active_record/base.rb
bhf-0.8.6 lib/bhf/active_record/base.rb
bhf-0.8.5 lib/bhf/active_record/base.rb
bhf-0.8.4 lib/bhf/active_record/base.rb
bhf-0.8.3 lib/bhf/active_record/base.rb
bhf-0.8.2 lib/bhf/active_record/base.rb