Class: QueryReport::ColumnModule::Column
- Inherits:
-
Object
- Object
- QueryReport::ColumnModule::Column
- Includes:
- ActionView::Helpers::SanitizeHelper
- Defined in:
- lib/query_report/column.rb
Instance Attribute Summary collapse
-
#data ⇒ Object
readonly
Returns the value of attribute data.
-
#name ⇒ Object
readonly
Returns the value of attribute name.
-
#options ⇒ Object
readonly
Returns the value of attribute options.
-
#report ⇒ Object
readonly
Returns the value of attribute report.
-
#type ⇒ Object
readonly
Returns the value of attribute type.
Instance Method Summary collapse
- #align ⇒ Object
- #has_total? ⇒ Boolean
- #humanize ⇒ Object
-
#initialize(report, column_name, options = {}, block = nil) ⇒ Column
constructor
A new instance of Column.
- #only_on_web? ⇒ Boolean
- #rowspan? ⇒ Boolean
- #rowspan_column_humanized ⇒ Object
- #sortable? ⇒ Boolean
- #total ⇒ Object
- #value(record) ⇒ Object
Constructor Details
#initialize(report, column_name, options = {}, block = nil) ⇒ Column
Returns a new instance of Column.
51 52 53 54 55 |
# File 'lib/query_report/column.rb', line 51 def initialize(report, column_name, ={}, block = nil) @report, @name, @options = report, column_name, @type = @report.model_class.columns_hash[column_name.to_s].try(:type) || [:type] || :string rescue :string @data = block || column_name.to_sym end |
Instance Attribute Details
#data ⇒ Object (readonly)
Returns the value of attribute data.
49 50 51 |
# File 'lib/query_report/column.rb', line 49 def data @data end |
#name ⇒ Object (readonly)
Returns the value of attribute name.
49 50 51 |
# File 'lib/query_report/column.rb', line 49 def name @name end |
#options ⇒ Object (readonly)
Returns the value of attribute options.
49 50 51 |
# File 'lib/query_report/column.rb', line 49 def @options end |
#report ⇒ Object (readonly)
Returns the value of attribute report.
49 50 51 |
# File 'lib/query_report/column.rb', line 49 def report @report end |
#type ⇒ Object (readonly)
Returns the value of attribute type.
49 50 51 |
# File 'lib/query_report/column.rb', line 49 def type @type end |
Instance Method Details
#align ⇒ Object
90 91 92 |
# File 'lib/query_report/column.rb', line 90 def align @options[:align] || (has_total? ? :right : :left) end |
#has_total? ⇒ Boolean
86 87 88 |
# File 'lib/query_report/column.rb', line 86 def has_total? @options[:show_total] == true end |
#humanize ⇒ Object
78 79 80 |
# File 'lib/query_report/column.rb', line 78 def humanize @humanize ||= [:as] || @report.model_class.human_attribute_name(name) end |
#only_on_web? ⇒ Boolean
57 58 59 |
# File 'lib/query_report/column.rb', line 57 def only_on_web? @options[:only_on_web] == true end |
#rowspan? ⇒ Boolean
65 66 67 |
# File 'lib/query_report/column.rb', line 65 def rowspan? @options[:rowspan] == true || @options[:rowspan].kind_of?(Symbol) end |
#rowspan_column_humanized ⇒ Object
69 70 71 72 73 74 75 76 |
# File 'lib/query_report/column.rb', line 69 def rowspan_column_humanized rowspan_column_name = @options[:rowspan].kind_of?(Symbol) ? @options[:rowspan] : self.name report.columns.each do |column| return column.humanize if column.name == rowspan_column_name end return self.humanize end |
#sortable? ⇒ Boolean
61 62 63 |
# File 'lib/query_report/column.rb', line 61 def sortable? @options[:sortable] == true end |
#total ⇒ Object
94 95 96 97 98 99 100 101 102 103 104 105 106 |
# File 'lib/query_report/column.rb', line 94 def total @total ||= begin if has_total? report.records_with_rowspan.inject(0) do |sum, r| r = report.content_from_element(r[humanize]) r = (r) if r.kind_of? String sum + r.to_f end else nil end end end |
#value(record) ⇒ Object
82 83 84 |
# File 'lib/query_report/column.rb', line 82 def value(record) self.data.kind_of?(Symbol) ? (record.respond_to?(self.name) ? record.send(self.name) : record[self.name]) : self.data.call(record) end |