Class: ActiveScaffold::DataStructures::Column

Inherits:
Object
  • Object
show all
Includes:
Configurable
Defined in:
lib/active_scaffold/data_structures/column.rb

Constant Summary collapse

@@associated_limit =
3
@@associated_number =
true
@@show_blank_record =
true
[:new, :edit, :show]
@@association_form_ui =
nil

Instance Attribute Summary collapse

Instance Method Summary collapse

Methods included from Configurable

#configure, #method_missing

Constructor Details

#initialize(name, active_record_class) ⇒ Column

instantiation is handled internally through the DataStructures::Columns object



323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
# File 'lib/active_scaffold/data_structures/column.rb', line 323

def initialize(name, active_record_class) #:nodoc:
  self.name = name.to_sym
  @tableless = active_record_class < ActiveScaffold::Tableless
  @column = active_record_class.columns_hash[self.name.to_s]
  @association = active_record_class.reflect_on_association(self.name)
  @autolink = !@association.nil?
  @active_record_class = active_record_class
  @table = active_record_class.table_name
  @associated_limit = self.class.associated_limit
  @associated_number = self.class.associated_number
  @show_blank_record = self.class.show_blank_record
  @send_form_on_update_column = self.class.send_form_on_update_column
  @actions_for_association_links = self.class.actions_for_association_links.clone if @association
  @select_columns = default_select_columns

  @text = @column.nil? || [:string, :text].include?(@column.type)
  if @column
    if active_record_class.respond_to?(:defined_enums) && active_record_class.defined_enums[name.to_s]
      @form_ui = :select
      @options = {:options => active_record_class.send(name.to_s.pluralize).keys}
    elsif @column.number?
      @number = true
      @form_ui = :number
      @options = {:format => :i18n_number}
    else
      @form_ui = case @column.type
        when :boolean then :checkbox
        when :text then :textarea
      end
    end
  end
  @allow_add_existing = true
  @form_ui = self.class.association_form_ui if @association && self.class.association_form_ui

  if association && !polymorphic_association?
    self.includes = [association.name]
    self.search_joins = includes.clone
  end

  # default all the configurable variables
  self.css_class = ''
  self.required = active_record_class.validators_on(self.name).any? do |val|
    validator_force_required?(val)
  end
  self.sort = true
  self.search_sql = true

  @weight = estimate_weight
end

Dynamic Method Handling

This class handles dynamic methods through the method_missing method in the class ActiveScaffold::Configurable

Instance Attribute Details

Returns the value of attribute actions_for_association_links.



255
256
257
# File 'lib/active_scaffold/data_structures/column.rb', line 255

def actions_for_association_links
  @actions_for_association_links
end

#active_record_classObject (readonly)

Returns the value of attribute active_record_class.



5
6
7
# File 'lib/active_scaffold/data_structures/column.rb', line 5

def active_record_class
  @active_record_class
end

#allow_add_existingObject

Whether to enable add_existing for this column



25
26
27
# File 'lib/active_scaffold/data_structures/column.rb', line 25

def allow_add_existing
  @allow_add_existing
end

#associated_limitObject

Returns the value of attribute associated_limit.



232
233
234
# File 'lib/active_scaffold/data_structures/column.rb', line 232

def associated_limit
  @associated_limit
end

#associated_number=(value) ⇒ Object (writeonly)

Sets the attribute associated_number

Parameters:

  • value

    the value to set the attribute associated_number to.



237
238
239
# File 'lib/active_scaffold/data_structures/column.rb', line 237

def associated_number=(value)
  @associated_number = value
end

#associationObject (readonly)

the association from the ActiveRecord class



268
269
270
# File 'lib/active_scaffold/data_structures/column.rb', line 268

def association
  @association
end

#calculateObject

define a calculation for the column. anything that ActiveRecord::Calculations::ClassMethods#calculate accepts will do.



173
174
175
# File 'lib/active_scaffold/data_structures/column.rb', line 173

def calculate
  @calculate
end

#collapsedObject

Whether this column set is collapsed by default in contexts where collapsing is supported



22
23
24
# File 'lib/active_scaffold/data_structures/column.rb', line 22

def collapsed
  @collapsed
end

#columnObject (readonly)

the ConnectionAdapter::*Column object from the ActiveRecord class



265
266
267
# File 'lib/active_scaffold/data_structures/column.rb', line 265

def column
  @column
end

#css_classObject

this will be /joined/ to the :name for the td’s class attribute. useful if you want to style columns on different ActiveScaffolds the same way, but the columns have different names.



60
61
62
# File 'lib/active_scaffold/data_structures/column.rb', line 60

def css_class
  @css_class
end

#descriptionObject



45
46
47
48
49
50
51
# File 'lib/active_scaffold/data_structures/column.rb', line 45

def description
  if @description
    @description
  else
    I18n.t name, :scope => [:activerecord, :description, active_record_class.to_s.underscore.to_sym], :default => ''
  end
end

#form_uiObject

Returns the value of attribute form_ui.



117
118
119
# File 'lib/active_scaffold/data_structures/column.rb', line 117

def form_ui
  @form_ui
end

#includesObject

a collection of associations to pre-load when finding the records on a page



181
182
183
# File 'lib/active_scaffold/data_structures/column.rb', line 181

def includes
  @includes
end

#inplace_editObject

Whether to enable inplace editing for this column. Currently works for text columns, in the List.



11
12
13
# File 'lib/active_scaffold/data_structures/column.rb', line 11

def inplace_edit
  @inplace_edit
end

#inplace_edit_updateObject

:table to refresh list true or :row to refresh row



19
20
21
# File 'lib/active_scaffold/data_structures/column.rb', line 19

def inplace_edit_update
  @inplace_edit_update
end

#labelObject



39
40
41
# File 'lib/active_scaffold/data_structures/column.rb', line 39

def label
  as_(@label) || active_record_class.human_attribute_name(name.to_s)
end

#list_methodObject

to cache method to get value in list



405
406
407
# File 'lib/active_scaffold/data_structures/column.rb', line 405

def list_method
  @list_method
end

#nameObject

this is the name of the getter on the ActiveRecord model. it is the only absolutely required attribute … all others will be inferred from this name.



8
9
10
# File 'lib/active_scaffold/data_structures/column.rb', line 8

def name
  @name
end

#number=(value) ⇒ Object (writeonly)

Sets the attribute number

Parameters:

  • value

    the value to set the attribute number to.



299
300
301
# File 'lib/active_scaffold/data_structures/column.rb', line 299

def number=(value)
  @number = value
end

#numerical_constraintsObject

cache constraints for numeric columns (get in ActiveScaffold::Helpers::FormColumnHelpers::numerical_constraints_for_column)



408
409
410
# File 'lib/active_scaffold/data_structures/column.rb', line 408

def numerical_constraints
  @numerical_constraints
end

#optionsObject

a place to store dev’s column specific options



139
140
141
# File 'lib/active_scaffold/data_structures/column.rb', line 139

def options
  @options
end

#placeholderObject



55
56
57
# File 'lib/active_scaffold/data_structures/column.rb', line 55

def placeholder
  @placeholder || I18n.t(name, :scope => [:activerecord, :placeholder, active_record_class.to_s.underscore.to_sym], :default => '')
end

#required=(value) ⇒ Object (writeonly)

whether the field is required or not. used on the form for visually indicating the fact to the user. TODO: move into predicate



64
65
66
# File 'lib/active_scaffold/data_structures/column.rb', line 64

def required=(value)
  @required = value
end

#search_uiObject



134
135
136
# File 'lib/active_scaffold/data_structures/column.rb', line 134

def search_ui
  @search_ui || @form_ui || (@association && !polymorphic_association? ? :select : nil)
end

#select_associated_columnsObject

a collection of columns to load when eager loading is disabled, if it’s nil all columns will be loaded



202
203
204
# File 'lib/active_scaffold/data_structures/column.rb', line 202

def select_associated_columns
  @select_associated_columns
end

#select_columnsObject

What columns load from main table



28
29
30
# File 'lib/active_scaffold/data_structures/column.rb', line 28

def select_columns
  @select_columns
end

#send_form_on_update_columnObject

Returns the value of attribute send_form_on_update_column.



80
81
82
# File 'lib/active_scaffold/data_structures/column.rb', line 80

def send_form_on_update_column
  @send_form_on_update_column
end

#show_blank_record=(value) ⇒ Object (writeonly)

Sets the attribute show_blank_record

Parameters:

  • value

    the value to set the attribute show_blank_record to.



245
246
247
# File 'lib/active_scaffold/data_structures/column.rb', line 245

def show_blank_record=(value)
  @show_blank_record = value
end

#show_uiObject



129
130
131
# File 'lib/active_scaffold/data_structures/column.rb', line 129

def show_ui
  @show_ui || list_ui
end

#update_columnsObject

Returns the value of attribute update_columns.



69
70
71
# File 'lib/active_scaffold/data_structures/column.rb', line 69

def update_columns
  @update_columns
end

#weightObject

to modify the default order of columns



227
228
229
# File 'lib/active_scaffold/data_structures/column.rb', line 227

def weight
  @weight
end

Instance Method Details

#<=>(other) ⇒ Object



379
380
381
382
# File 'lib/active_scaffold/data_structures/column.rb', line 379

def <=>(other)
  order_weight = weight <=> other.weight
  order_weight != 0 ? order_weight : name.to_s <=> other.name.to_s
end

#==(other) ⇒ Object

this is so that array.delete and array.include?, etc., will work by column name



309
310
311
312
313
314
315
316
317
318
319
320
# File 'lib/active_scaffold/data_structures/column.rb', line 309

def ==(other) #:nodoc:
  # another column
  if other.respond_to?(:name) && other.class == self.class
    name == other.name.to_sym
  # a string or symbol
  elsif other.respond_to? :to_sym
    name == other.to_sym rescue false # catch "interning empty string"
  # unknown
  else
    self.eql? other
  end
end

#associated_number?Boolean

Returns:

  • (Boolean)


238
239
240
# File 'lib/active_scaffold/data_structures/column.rb', line 238

def associated_number?
  @associated_number
end

#autolink?Boolean

set an action_link to nested list or inline form in this column

Returns:

  • (Boolean)


162
163
164
# File 'lib/active_scaffold/data_structures/column.rb', line 162

def autolink?
  @autolink
end

#calculation?Boolean

get whether to run a calculation on this column

Returns:

  • (Boolean)


176
177
178
# File 'lib/active_scaffold/data_structures/column.rb', line 176

def calculation?
  !(@calculate == false || @calculate.nil?)
end

this should not only delete any existing link but also prevent column links from being automatically added by later routines



167
168
169
170
# File 'lib/active_scaffold/data_structures/column.rb', line 167

def clear_link
  @link = nil
  @autolink = false
end

#fieldObject

the table.field name for this column, if applicable



411
412
413
# File 'lib/active_scaffold/data_structures/column.rb', line 411

def field
  @field ||= quoted_field(field_name)
end

#field_nameObject

just the field (not table.field)



374
375
376
377
# File 'lib/active_scaffold/data_structures/column.rb', line 374

def field_name
  return nil if virtual?
  @field_name ||= column ? @active_record_class.connection.quote_column_name(column.name) : association.foreign_key
end


144
145
146
147
# File 'lib/active_scaffold/data_structures/column.rb', line 144

def link
  @link = @link.call(self) if @link.is_a? Proc
  @link
end

#list_uiObject



124
125
126
# File 'lib/active_scaffold/data_structures/column.rb', line 124

def list_ui
  @list_ui || form_ui
end

#list_ui=(value) ⇒ Object



119
120
121
122
# File 'lib/active_scaffold/data_structures/column.rb', line 119

def list_ui=(value)
  self.list_method = nil if value != @list_ui
  @list_ui = value
end

#number?Boolean

Returns:

  • (Boolean)


300
301
302
# File 'lib/active_scaffold/data_structures/column.rb', line 300

def number?
  @number
end

#number_to_native(value) ⇒ Object



384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
# File 'lib/active_scaffold/data_structures/column.rb', line 384

def number_to_native(value)
  return value if value.blank? || !value.is_a?(String)
  native = '.' # native ruby separator
  format = {:separator => '', :delimiter => ''}.merge! I18n.t('number.format', :default => {})
  specific = case options[:format]
  when :currency
    I18n.t('number.currency.format', :default => nil)
  when :size
    I18n.t('number.human.format', :default => nil)
  when :percentage
    I18n.t('number.percentage.format', :default => nil)
  end
  format.merge! specific unless specific.nil?
  if format[:separator].blank? || !value.include?(format[:separator]) && value.include?(native) && (format[:delimiter] != native || value !~ /\.\d{3}$/)
    value
  else
    value.gsub(/[^0-9\-#{format[:separator]}]/, '').gsub(format[:separator], native)
  end
end

#paramsObject

Any extra parameters this particular column uses. This is for create/update purposes.



31
32
33
34
# File 'lib/active_scaffold/data_structures/column.rb', line 31

def params
  # lazy initialize
  @params ||= Set.new
end

#plural_association?Boolean

Returns:

  • (Boolean)


273
274
275
# File 'lib/active_scaffold/data_structures/column.rb', line 273

def plural_association?
  association && association.collection?
end

#polymorphic_association?Boolean

Returns:

  • (Boolean)


281
282
283
# File 'lib/active_scaffold/data_structures/column.rb', line 281

def polymorphic_association?
  association && association.options[:polymorphic]
end

#readonly_association?Boolean

Returns:

  • (Boolean)


285
286
287
288
289
290
291
292
# File 'lib/active_scaffold/data_structures/column.rb', line 285

def readonly_association?
  return false unless association
  if association.options.key? :readonly
    association.options[:readonly]
  else
    self.through_association?
  end
end

#required?Boolean

Returns:

  • (Boolean)


65
66
67
# File 'lib/active_scaffold/data_structures/column.rb', line 65

def required?
  @required
end

#search_joinsObject

a collection of associations to do left join when this column is included on search



190
191
192
# File 'lib/active_scaffold/data_structures/column.rb', line 190

def search_joins
  @search_joins || @includes
end

#search_joins=(value) ⇒ Object



194
195
196
197
198
199
# File 'lib/active_scaffold/data_structures/column.rb', line 194

def search_joins=(value)
  @search_joins = case value
    when Array then value
    else [value] # automatically convert to an array
  end
end

#search_sqlObject



217
218
219
220
# File 'lib/active_scaffold/data_structures/column.rb', line 217

def search_sql
  initialize_search_sql if @search_sql == true
  @search_sql
end

#search_sql=(value) ⇒ Object

describes how to search on a column

search = true           default, uses intelligent search sql
search = "CONCAT(a, b)" define your own sql for searching. this should be the "left-side" of a WHERE condition. the operator and value will be supplied by ActiveScaffold.
search = [:a, :b]       searches in both fields


208
209
210
211
212
213
214
215
# File 'lib/active_scaffold/data_structures/column.rb', line 208

def search_sql=(value)
  @search_sql =
    if value
      (value == true || value.is_a?(Proc)) ? value : Array(value)
    else
      value
    end
end

#searchable?Boolean

Returns:

  • (Boolean)


222
223
224
# File 'lib/active_scaffold/data_structures/column.rb', line 222

def searchable?
  search_sql.present?
end

associate an action_link with this column



150
151
152
153
154
155
156
157
158
159
# File 'lib/active_scaffold/data_structures/column.rb', line 150

def set_link(action, options = {})
  if action.is_a?(ActiveScaffold::DataStructures::ActionLink) || (action.is_a? Proc)
    @link = action
  else
    options[:label] ||= label
    options[:position] ||= :after unless options.key?(:position)
    options[:type] ||= :member
    @link = ActiveScaffold::DataStructures::ActionLink.new(action, options)
  end
end

#show_blank_record?(associated) ⇒ Boolean

Returns:

  • (Boolean)


246
247
248
249
250
# File 'lib/active_scaffold/data_structures/column.rb', line 246

def show_blank_record?(associated)
  return false unless @show_blank_record
  return false unless association.klass.authorized_for?(:crud_type => :create) && !association.options[:readonly]
  self.plural_association? || (self.singular_association? && associated.blank?)
end

#singular_association?Boolean

Returns:

  • (Boolean)


269
270
271
# File 'lib/active_scaffold/data_structures/column.rb', line 269

def singular_association?
  association && !association.collection?
end

#sortObject



96
97
98
99
# File 'lib/active_scaffold/data_structures/column.rb', line 96

def sort
  initialize_sort if @sort == true
  @sort
end

#sort=(value) ⇒ Object

sorting on a column can be configured four ways:

sort = true               default, uses intelligent sorting sql default
sort = false              sometimes sorting doesn't make sense
sort = {:sql => ""}       define your own sql for sorting. this should be result in a sortable value in SQL. ActiveScaffold will handle the ascending/descending.
sort = {:method => ""}    define ruby-side code for sorting. this is SLOW with large recordsets!


87
88
89
90
91
92
93
94
# File 'lib/active_scaffold/data_structures/column.rb', line 87

def sort=(value)
  if value.is_a? Hash
    value.assert_valid_keys(:sql, :method)
    @sort = value
  else
    @sort = value ? true : false # force true or false
  end
end

#sort_by(options) ⇒ Object

a configuration helper for the self.sort property. simply provides a method syntax instead of setter syntax.



106
107
108
# File 'lib/active_scaffold/data_structures/column.rb', line 106

def sort_by(options)
  self.sort = options
end

#sortable?Boolean

Returns:

  • (Boolean)


101
102
103
# File 'lib/active_scaffold/data_structures/column.rb', line 101

def sortable?
  sort != false && !sort.nil?
end

#text?Boolean

Returns:

  • (Boolean)


304
305
306
# File 'lib/active_scaffold/data_structures/column.rb', line 304

def text?
  @text
end

#through_association?Boolean

Returns:

  • (Boolean)


277
278
279
# File 'lib/active_scaffold/data_structures/column.rb', line 277

def through_association?
  association && association.options[:through]
end

#virtual?Boolean

an interpreted property. the column is virtual if it isn’t from the active record model or any associated models

Returns:

  • (Boolean)


295
296
297
# File 'lib/active_scaffold/data_structures/column.rb', line 295

def virtual?
  column.nil? && association.nil?
end