Class: Terminal::Table

Inherits:
Object
  • Object
show all
Defined in:
lib/terminal-table/row.rb,
lib/terminal-table/cell.rb,
lib/terminal-table/style.rb,
lib/terminal-table/table.rb,
lib/terminal-table/version.rb,
lib/terminal-table/separator.rb,
lib/terminal-table/table_helper.rb

Defined Under Namespace

Modules: TableHelper Classes: Cell, Row, Separator, Style

Constant Summary collapse

VERSION =
'1.7.0'

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(options = {}, &block) ⇒ Table

Generates a ASCII table with the given options.



12
13
14
15
16
17
18
19
# File 'lib/terminal-table/table.rb', line 12

def initialize options = {}, &block
  @column_widths = []
  self.style = options.fetch :style, {}
  self.headings = options.fetch :headings, []
  self.rows = options.fetch :rows, []
  self.title = options.fetch :title, nil
  yield_or_eval(&block) if block
end

Instance Attribute Details

#headingsObject

Returns the value of attribute headings.



7
8
9
# File 'lib/terminal-table/table.rb', line 7

def headings
  @headings
end

#titleObject

Returns the value of attribute title.



6
7
8
# File 'lib/terminal-table/table.rb', line 6

def title
  @title
end

Instance Method Details

#==(other) ⇒ Object

Check if other is equal to self. other is considered equal if it contains the same headings and rows.



172
173
174
175
176
# File 'lib/terminal-table/table.rb', line 172

def == other
  if other.respond_to? :render and other.respond_to? :rows
    self.headings == other.headings and self.rows == other.rows
  end
end

#add_row(array) ⇒ Object Also known as: <<

Add a row.



35
36
37
38
39
# File 'lib/terminal-table/table.rb', line 35

def add_row array
  row = array == :separator ? Separator.new(self) : Row.new(self, array)
  @rows << row
  recalc_column_widths row
end

#add_separatorObject

Add a separator.



45
46
47
# File 'lib/terminal-table/table.rb', line 45

def add_separator
  self << :separator
end

#align_column(n, alignment) ⇒ Object

Align column n to the given alignment of :center, :left, or :right.



24
25
26
27
28
29
30
# File 'lib/terminal-table/table.rb', line 24

def align_column n, alignment
  r = rows
  column(n).each_with_index do |col, i|
    cell = r[i][n]
    cell.alignment = alignment unless cell.alignment?
  end
end

#cell_paddingObject



53
54
55
# File 'lib/terminal-table/table.rb', line 53

def cell_padding
  style.padding_left + style.padding_right
end

#cell_spacingObject



49
50
51
# File 'lib/terminal-table/table.rb', line 49

def cell_spacing
  cell_padding + style.border_y.length
end

#column(n, method = :value, array = rows) ⇒ Object

Return column n.



60
61
62
63
64
65
66
67
68
69
70
71
72
73
# File 'lib/terminal-table/table.rb', line 60

def column n, method = :value, array = rows
  array.map { |row|
    # for each cells in a row, find the column with index
    # just greater than the required one, and go back one.
    index = col = 0
    row.cells.each do |cell|
      break if index > n
      index += cell.colspan
      col += 1
    end
    cell = row[col - 1]
    cell && method ? cell.__send__(method) : cell
  }.compact
end

#column_width(n) ⇒ Object Also known as: length_of_column

Return length of column n.



92
93
94
95
# File 'lib/terminal-table/table.rb', line 92

def column_width n
  width = @column_widths[n] || 0
  width + additional_column_widths[n].to_i
end

#column_with_headings(n, method = :value) ⇒ Object

Return n column including headings.



78
79
80
# File 'lib/terminal-table/table.rb', line 78

def column_with_headings n, method = :value
  column n, method, headings_with_rows
end

#columnsObject

Return columns.



85
86
87
# File 'lib/terminal-table/table.rb', line 85

def columns
  (0...number_of_columns).map { |n| column n }
end

#number_of_columnsObject

Return total number of columns available.



101
102
103
# File 'lib/terminal-table/table.rb', line 101

def number_of_columns
  headings_with_rows.map { |r| r.cells.size }.max
end

#renderObject Also known as: to_s

Render the table.



120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
# File 'lib/terminal-table/table.rb', line 120

def render
  separator = Separator.new(self)
  buffer = [separator]
  unless @title.nil?
    buffer << Row.new(self, [title_cell_options])
    buffer << separator
  end
  @headings.each do |row|
    unless row.cells.empty?
      buffer << row
      buffer << separator
    end
  end
  if style.all_separators
    buffer += @rows.product([separator]).flatten
  else
    buffer += @rows
    buffer << separator
  end
  buffer.map { |r| style.margin_left + r.render.rstrip }.join("\n")
end

#rowsObject

Return rows without separator rows.



146
147
148
# File 'lib/terminal-table/table.rb', line 146

def rows
  @rows.reject { |row| row.is_a? Separator }
end

#rows=(array) ⇒ Object



150
151
152
153
# File 'lib/terminal-table/table.rb', line 150

def rows= array
  @rows = []
  array.each { |arr| self << arr }
end

#styleObject



159
160
161
# File 'lib/terminal-table/table.rb', line 159

def style
  @style ||= Style.new
end

#style=(options) ⇒ Object



155
156
157
# File 'lib/terminal-table/table.rb', line 155

def style=(options)
  style.apply options
end