2013-01-09 18:16:14 -05:00
|
|
|
class Pry
|
|
|
|
module Helpers
|
2013-01-17 00:29:32 -05:00
|
|
|
def self.tablify_or_one_line(heading, things)
|
|
|
|
plain_heading = Pry::Helpers::Text.strip_color(heading)
|
|
|
|
attempt = Table.new(things, :column_count => things.size)
|
2013-01-30 22:14:06 -05:00
|
|
|
if attempt.fits_on_line?(Terminal.width! - plain_heading.size - 2)
|
2013-01-17 00:29:32 -05:00
|
|
|
"#{heading}: #{attempt}\n"
|
|
|
|
else
|
|
|
|
"#{heading}: \n#{tablify_to_screen_width(things, :indent => ' ')}\n"
|
2013-01-09 18:16:14 -05:00
|
|
|
end
|
2013-01-17 00:29:32 -05:00
|
|
|
end
|
2013-01-09 18:16:14 -05:00
|
|
|
|
2013-01-17 00:29:32 -05:00
|
|
|
def self.tablify_to_screen_width(things, options = {})
|
|
|
|
things = things.compact
|
|
|
|
if indent = options[:indent]
|
2013-01-30 22:14:06 -05:00
|
|
|
usable_width = Terminal.width! - indent.size
|
2013-01-17 00:29:32 -05:00
|
|
|
tablify(things, usable_width).to_s.gsub(/^/, indent)
|
|
|
|
else
|
2013-01-30 22:14:06 -05:00
|
|
|
tablify(things, Terminal.width!).to_s
|
2013-01-17 00:29:32 -05:00
|
|
|
end
|
2013-01-09 18:16:14 -05:00
|
|
|
end
|
|
|
|
|
|
|
|
def self.tablify(things, line_length)
|
|
|
|
table = Table.new(things, :column_count => things.size)
|
2013-01-26 23:12:35 -05:00
|
|
|
table.column_count -= 1 until 1 == table.column_count or
|
2013-01-09 18:16:14 -05:00
|
|
|
table.fits_on_line?(line_length)
|
|
|
|
table
|
|
|
|
end
|
|
|
|
|
|
|
|
class Table
|
|
|
|
attr_reader :items, :column_count
|
|
|
|
def initialize items, args = {}
|
|
|
|
@column_count = args[:column_count]
|
|
|
|
self.items = items
|
|
|
|
end
|
|
|
|
|
|
|
|
def to_s
|
|
|
|
rows_to_s.join("\n")
|
|
|
|
end
|
|
|
|
|
|
|
|
def rows_to_s style = :color_on
|
|
|
|
widths = columns.map{|e| _max_width(e)}
|
|
|
|
@rows_without_colors.map do |r|
|
|
|
|
padded = []
|
|
|
|
r.each_with_index do |e,i|
|
|
|
|
next unless e
|
|
|
|
item = e.ljust(widths[i])
|
|
|
|
item.sub! e, _recall_color_for(e) if :color_on == style
|
|
|
|
padded << item
|
|
|
|
end
|
|
|
|
padded.join(Pry.config.ls.separator)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
def items= items
|
|
|
|
@items = items
|
|
|
|
_rebuild_colorless_cache
|
|
|
|
_recolumn
|
|
|
|
items
|
|
|
|
end
|
|
|
|
|
|
|
|
def column_count= n
|
|
|
|
@column_count = n
|
|
|
|
_recolumn
|
|
|
|
end
|
|
|
|
|
|
|
|
def fits_on_line? line_length
|
|
|
|
_max_width(rows_to_s :no_color) <= line_length
|
|
|
|
end
|
|
|
|
|
|
|
|
def columns
|
|
|
|
@rows_without_colors.transpose
|
|
|
|
end
|
|
|
|
|
|
|
|
def ==(other); items == other.to_a end
|
|
|
|
def to_a; items.to_a end
|
|
|
|
|
|
|
|
private
|
|
|
|
def _max_width(things)
|
|
|
|
things.compact.map(&:size).max || 0
|
|
|
|
end
|
|
|
|
|
|
|
|
def _rebuild_colorless_cache
|
|
|
|
@colorless_cache = {}
|
|
|
|
@plain_items = []
|
|
|
|
items.map do |e|
|
|
|
|
plain = Pry::Helpers::Text.strip_color(e)
|
|
|
|
@colorless_cache[plain] = e
|
|
|
|
@plain_items << plain
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
def _recolumn
|
|
|
|
@rows_without_colors = []
|
|
|
|
return if items.size.zero?
|
|
|
|
row_count = (items.size.to_f/column_count).ceil
|
|
|
|
row_count.times do |i|
|
|
|
|
row_indices = (0...column_count).map{|e| row_count*e+i}
|
|
|
|
@rows_without_colors << row_indices.map{|e| @plain_items[e]}
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
def _recall_color_for thing
|
|
|
|
@colorless_cache[thing]
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
end
|
|
|
|
end
|