Class: Para::AttributeField::Base

Inherits:
Object
  • Object
show all
Defined in:
lib/para/attribute_field/base.rb

Instance Attribute Summary collapse

Class Method Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(model, options = {}) ⇒ Base

Returns a new instance of Base.



44
45
46
47
48
49
50
51
52
# File 'lib/para/attribute_field/base.rb', line 44

def initialize(model, options = {})
  @model = model
  @name = options.delete(:name)
  @type = options.delete(:type)
  @field_type = options.delete(:field_type)
  @options = options

  determine_name_and_field_method!
end

Instance Attribute Details

#field_methodObject (readonly)

Returns the value of attribute field_method.



7
8
9
# File 'lib/para/attribute_field/base.rb', line 7

def field_method
  @field_method
end

#field_typeObject (readonly)

Returns the value of attribute field_type.



7
8
9
# File 'lib/para/attribute_field/base.rb', line 7

def field_type
  @field_type
end

#modelObject (readonly)

Returns the value of attribute model.



7
8
9
# File 'lib/para/attribute_field/base.rb', line 7

def model
  @model
end

#nameObject (readonly)

Returns the value of attribute name.



7
8
9
# File 'lib/para/attribute_field/base.rb', line 7

def name
  @name
end

#optionsObject (readonly)

Returns the value of attribute options.



7
8
9
# File 'lib/para/attribute_field/base.rb', line 7

def options
  @options
end

#typeObject (readonly)

Returns the value of attribute type.



7
8
9
# File 'lib/para/attribute_field/base.rb', line 7

def type
  @type
end

Class Method Details

.field_option(key, method_name, options = {}) ⇒ Object



9
10
11
12
13
14
15
16
17
# File 'lib/para/attribute_field/base.rb', line 9

def self.field_option(key, method_name, options = {})
  self._field_options ||= []

  self._field_options += [{
    key: key,
    method_name: method_name,
    options: options
  }]
end

.field_typesObject



38
39
40
# File 'lib/para/attribute_field/base.rb', line 38

def self.field_types
  @_field_types ||= {}
end

.register(*args) ⇒ Object

Registers the class as the responder for a given field type

Example :

# This will allow looking :my_field or :myfield up and instantiate
# self as the field
class MyField < Para::AttributeField::Base
  register :my_field, :myfield, self
end


30
31
32
33
34
35
36
# File 'lib/para/attribute_field/base.rb', line 30

def self.register(*args)
  attribute_class = args.pop

  args.each do |arg|
    Base.field_types[arg] = attribute_class
  end
end

Instance Method Details

#attribute_column_pathObject



102
103
104
# File 'lib/para/attribute_field/base.rb', line 102

def attribute_column_path
  [name]
end

#determine_name_and_field_method!Object



54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
# File 'lib/para/attribute_field/base.rb', line 54

def determine_name_and_field_method!
  name = @name

  reference = model.reflect_on_all_associations.find do |association|
    association.foreign_key == name
  end

  if reference
    @name = reference.name
    @field_method = :association
  else
    @name = name
    @field_method = :input
  end
end

#excerptable_value?Boolean

Returns:

  • (Boolean)


74
75
76
# File 'lib/para/attribute_field/base.rb', line 74

def excerptable_value?
  true
end

#field_nameObject



98
99
100
# File 'lib/para/attribute_field/base.rb', line 98

def field_name
  name
end

#field_optionsObject



91
92
93
94
95
96
# File 'lib/para/attribute_field/base.rb', line 91

def field_options
  self.class._field_options.each_with_object({}) do |params, hash|
    value = send(params[:method_name])
    hash[params[:key]] = value if value != nil || params[:options][:allow_nil]
  end
end

#parse_input(params, resource) ⇒ Object

Allows parsing input params before they’re passed to the model, so it can be easy to edit them according to some field type specific behavior



89
# File 'lib/para/attribute_field/base.rb', line 89

def parse_input(params, resource); end

#searchable?Boolean

Returns:

  • (Boolean)


79
80
81
82
83
# File 'lib/para/attribute_field/base.rb', line 79

def searchable?
  options[:searchable] != false && (
    [:string, :text].include?(type.to_sym) && !name.match(/password/)
  )
end

#type?(type) ⇒ Boolean

Returns:

  • (Boolean)


106
107
108
# File 'lib/para/attribute_field/base.rb', line 106

def type?(type)
  self.type.to_s == type.to_s
end

#value_for(instance) ⇒ Object



70
71
72
# File 'lib/para/attribute_field/base.rb', line 70

def value_for(instance)
  instance.send(name)
end