Class: TTY::Table::Operation::AlignmentSet
- Defined in:
- lib/tty/table/operation/alignment_set.rb
Overview
A class which responsiblity is to align table rows and header.
Instance Attribute Summary collapse
-
#widths ⇒ Object
readonly
Returns the value of attribute widths.
Instance Method Summary collapse
-
#[](index) ⇒ Symbol
Lookup an alignment by index.
-
#alignments ⇒ Array
private
Return each alignment in an Array.
-
#call(field, row, col) ⇒ TTY::Table::Field
Evaluate alignment of the provided row.
-
#initialize(aligns, widths = nil) ⇒ AlignmentSet
constructor
private
Initialize an AlignmentSet.
Methods inherited from Vector
[], #[]=, #each, #empty?, #size, #to_a, #to_ary
Constructor Details
#initialize(aligns, widths = nil) ⇒ AlignmentSet
This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.
Initialize an AlignmentSet
14 15 16 17 18 |
# File 'lib/tty/table/operation/alignment_set.rb', line 14 def initialize(aligns, widths = nil) @converter = Necromancer.new @elements = @converter.convert(aligns).to(:array) @widths = widths end |
Instance Attribute Details
#widths ⇒ Object (readonly)
Returns the value of attribute widths.
9 10 11 |
# File 'lib/tty/table/operation/alignment_set.rb', line 9 def widths @widths end |
Instance Method Details
#[](index) ⇒ Symbol
Lookup an alignment by index
27 28 29 |
# File 'lib/tty/table/operation/alignment_set.rb', line 27 def [](index) elements.fetch(index, :left) end |
#alignments ⇒ Array
This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.
Return each alignment in an Array
36 37 38 |
# File 'lib/tty/table/operation/alignment_set.rb', line 36 def alignments map { |alignment| alignment } end |
#call(field, row, col) ⇒ TTY::Table::Field
Evaluate alignment of the provided row
50 51 52 |
# File 'lib/tty/table/operation/alignment_set.rb', line 50 def call(field, row, col) align_field(field, col) end |