Module: FatFreeCRM::Fields::SingletonMethods

Defined in:
lib/fat_free_crm/fields.rb

Instance Method Summary collapse

Instance Method Details

#field_groupsObject



26
27
28
29
30
31
# File 'lib/fat_free_crm/fields.rb', line 26

def field_groups
  # catches cases where this code runs before database has been created or migrated
  FieldGroup.where(klass_name: name).order(:position)
rescue ActiveRecord::NoDatabaseError, ActiveRecord::StatementInvalid
  []
end

#fieldsObject



33
34
35
# File 'lib/fat_free_crm/fields.rb', line 33

def fields
  field_groups.map(&:fields).flatten
end

#ransack_column_select_optionsObject

Shows custom field select options in ransack search form



44
45
46
47
48
49
50
51
52
# File 'lib/fat_free_crm/fields.rb', line 44

def ransack_column_select_options
  field_groups.each_with_object({}) do |group, hash|
    group.fields.select { |f| f.collection.present? }.each do |field|
      hash[field.name] = field.collection.each_with_object({}) do |option, options|
        options[option] = option
      end
    end
  end
end

#serialize_custom_fields!Object



37
38
39
40
41
# File 'lib/fat_free_crm/fields.rb', line 37

def serialize_custom_fields!
  fields.each do |field|
    serialize(field.name.to_sym, Array) if field.as == 'check_boxes'
  end
end