Class: TermUtils::Tab::Table

Inherits:
Object
  • Object
show all
Defined in:
lib/term_utils/tab.rb

Overview

Represents a table.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(opts = {}) ⇒ Table

Returns a new instance of Table.

Parameters:

  • opts (Hash) (defaults to: {})

Options Hash (opts):

  • :id (Symbol)
  • :offset (Integer)
  • :column_defaults (Hash)


128
129
130
131
132
133
134
135
# File 'lib/term_utils/tab.rb', line 128

def initialize(opts = {})
  opts = TermUtils::Tab.init_table_props.merge(opts)
  @id = opts.fetch(:id, nil)
  @offset = opts.fetch(:offset)
  @column_separator_width = opts.fetch(:column_separator_width)
  @column_defaults = opts.key?(:column_defaults) ? opts[:column_defaults].dup : TermUtils::Tab.default_column_props
  @columns = []
end

Instance Attribute Details

#column_defaultsHash

Returns ‘:width`, `:align`, `:fixed`, `:ellipsis`, `:format`.

Returns:

  • (Hash)

    ‘:width`, `:align`, `:fixed`, `:ellipsis`, `:format`.



120
121
122
# File 'lib/term_utils/tab.rb', line 120

def column_defaults
  @column_defaults
end

#column_separator_widthInteger

Returns:

  • (Integer)


118
119
120
# File 'lib/term_utils/tab.rb', line 118

def column_separator_width
  @column_separator_width
end

#columnsArray<Tab::Column>

Returns:



122
123
124
# File 'lib/term_utils/tab.rb', line 122

def columns
  @columns
end

#idSymbol

Returns:

  • (Symbol)


114
115
116
# File 'lib/term_utils/tab.rb', line 114

def id
  @id
end

#offsetInteger

Returns:

  • (Integer)


116
117
118
# File 'lib/term_utils/tab.rb', line 116

def offset
  @offset
end

Instance Method Details

#define_column(id, opts = {}, &block) ⇒ Tab::Column

Defines a column.

Parameters:

  • id (Symbol)
  • opts (Hash) (defaults to: {})

Options Hash (opts):

  • :width (Integer)
  • :align (Symbol)
  • :fixed (Boolean)
  • :ellipsis (String)
  • :format (Proc, String, nil)

Returns:



163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
# File 'lib/term_utils/tab.rb', line 163

def define_column(id, opts = {}, &block)
  col = @columns.find { |c| c.id == id }
  if col
    block&.call(col)
    col.validate
  else
    opts[:id] = id
    opts[:index] = @columns.length
    col = Column.new(@column_defaults.merge(opts))
    block&.call(col)
    col.validate
    @columns << col
  end
  col
end

#find_column(id) ⇒ Tab::Column?

Finds a column.

Parameters:

  • id (Symbol)

Returns:



182
183
184
# File 'lib/term_utils/tab.rb', line 182

def find_column(id)
  @columns.find { |c| c.id == id }
end

Prints a data row.

Parameters:

  • io (#puts)
  • values (Array<Object>, Hash<Symbol, Object>)
  • opts (Hash) (defaults to: {})

Options Hash (opts):

  • :offset (Integer)
  • :column_separator_width (Integer)

Returns:

  • (nil)

Raises:



237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
# File 'lib/term_utils/tab.rb', line 237

def print_data(io, values, opts = {})
  vals = values
  if values.is_a? Hash
    vals = []
    @columns.each do |col|
      vals << values[col.id]
    end
  end
  raise TermUtils::Tab::TableError, 'wrong values (not array)' unless vals.is_a? Array

  offset = opts.fetch(:offset)
  column_separator_width = opts.fetch(:column_separator_width)
  sb = StringIO.new
  sb << ' ' * offset if offset.positive?
  @columns.each do |col|
    sb << ' ' * column_separator_width if col.index.positive?
    sb << col.render_data(vals[col.index])
  end
  io.puts sb.string
end

Prints a header row.

Parameters:

  • io (#puts)
  • values (Array<Object>, Hash<Symbol, Object>) (defaults to: nil)
  • opts (Hash) (defaults to: {})

Options Hash (opts):

  • :offset (Integer)
  • :column_separator_width (Integer)

Returns:

  • (nil)

Raises:



206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
# File 'lib/term_utils/tab.rb', line 206

def print_header(io, values = nil, opts = {})
  vals = values
  if values.nil?
    vals = @columns.map { |col| col.header.title }
  elsif values.is_a? Hash
    vals = []
    @columns.each do |col|
      vals << values[col.id]
    end
  end
  raise TermUtils::Tab::TableError, 'wrong values (not array)' unless vals.is_a? Array

  offset = opts.fetch(:offset)
  column_separator_width = opts.fetch(:column_separator_width)
  sb = StringIO.new
  sb << ' ' * offset if offset.positive?
  @columns.each do |col|
    sb << ' ' * column_separator_width if col.index.positive?
    sb << col.render_header(vals[col.index])
  end
  io.puts sb.string
end

Prints a separator row.

Parameters:

  • io (#puts)
  • opts (Hash) (defaults to: {})

Options Hash (opts):

  • :offset (Integer)
  • :column_separator_width (Integer)

Returns:

  • (nil)


264
265
266
267
268
269
270
271
272
273
274
# File 'lib/term_utils/tab.rb', line 264

def print_separator(io, opts = {})
  offset = opts.fetch(:offset)
  column_separator_width = opts.fetch(:column_separator_width)
  sb = StringIO.new
  sb << ' ' * offset if offset.positive?
  @columns.each do |col|
    sb << ' ' * column_separator_width if col.index.positive?
    sb << '-' * col.width
  end
  io.puts sb.string
end

#printer(io, opts = {}, &block) ⇒ Tab::Printer

Creates a new table printer.

Parameters:

  • io (#puts)
  • opts (Hash) (defaults to: {})

Options Hash (opts):

  • :offset (Integer)
  • :column_separator_width (Integer)

Returns:



192
193
194
195
196
# File 'lib/term_utils/tab.rb', line 192

def printer(io, opts = {}, &block)
  ptr = Printer.new(self, io, props.merge(opts))
  block&.call(ptr)
  ptr
end

#propsHash

Returns the properties of this one.

Returns:

  • (Hash)


139
140
141
# File 'lib/term_utils/tab.rb', line 139

def props
  { offset: @offset, column_separator_width: @column_separator_width }
end

#set_column_defaults(opts = {}) ⇒ Object

Sets column default properties.

Parameters:

  • opts (Hash) (defaults to: {})

Options Hash (opts):

  • :width (Integer)
  • :align (Symbol)
  • :fixed (Boolean)
  • :ellipsis (String)
  • :format (Proc, String, nil)


150
151
152
# File 'lib/term_utils/tab.rb', line 150

def set_column_defaults(opts = {})
  TermUtils::Tab.assign_column_props(@column_defaults, opts)
end

#titlesHash<Symbol, String>

Returns column titles.

Returns:

  • (Hash<Symbol, String>)


278
279
280
281
282
283
284
# File 'lib/term_utils/tab.rb', line 278

def titles
  h = {}
  @columns.each do |col|
    h[col.id] = col.id.to_s
  end
  h
end