Archived
1
0
Fork 0
This repository has been archived on 2023-03-27. You can view files and clone it, but cannot push or open issues or pull requests.
cli-old/lib/widgets/chat/history.rb
2017-07-24 11:54:00 +00:00

55 lines
1.1 KiB
Ruby

# frozen_string_literal: true
module Widgets
class Chat < VPanel
class History < Base
attr_reader :messages
def initialize(parent, x, y, width, height)
super
@messages = 1.upto(100).map do
{
out: rand <= 0.2,
time: Faker::Time.forward,
name: Faker::Name.name,
text: Faker::Lorem.sentence.freeze,
}
end
end
def draw
offset = 0
messages.each do |msg|
offset += draw_message offset, msg[:out], msg[:time].strftime('%H:%M:%S'), msg[:name], msg[:text]
break if offset >= height
end
end
def draw_message(offset, out, time, name, text)
setpos 0, offset
Style.default.message_time window do
addstr time
end
addstr ' '
Style.default.message_author window do
addstr name
end
lines = (text.length / width.to_f).ceil
1.upto lines do |line|
setpos 0, offset + line
addstr text[(width * (line - 1))...(width * line)]
end
1 + lines
end
end
end
end