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

41 lines
864 B
Ruby
Raw Normal View History

2017-07-21 14:04:59 -04:00
# frozen_string_literal: true
module Widgets
2017-07-22 05:00:28 -04:00
class Chat < VPanel
class History < Base
2017-07-22 09:03:10 -04:00
def draw
offset = 0
2017-07-25 10:36:28 -04:00
props[:messages].each do |msg|
2017-07-24 07:40:49 -04:00
offset += draw_message offset, msg[:out], msg[:time].strftime('%H:%M:%S'), msg[:name], msg[:text]
2017-07-25 10:36:28 -04:00
break if offset >= props[:height]
end
2017-07-21 14:04:59 -04:00
end
2017-07-24 07:54:21 -04:00
def draw_message(offset, _out, time, name, text)
2017-07-22 10:31:38 -04:00
setpos 0, offset
2017-07-24 05:52:42 -04:00
Style.default.message_time window do
2017-07-22 14:46:50 -04:00
addstr time
2017-07-22 05:46:15 -04:00
end
2017-07-22 14:46:50 -04:00
addstr ' '
2017-07-22 05:46:15 -04:00
2017-07-24 05:52:42 -04:00
Style.default.message_author window do
2017-07-22 14:46:50 -04:00
addstr name
2017-07-22 05:46:15 -04:00
end
2017-07-25 10:36:28 -04:00
lines = (text.length / props[:width].to_f).ceil
1.upto lines do |line|
2017-07-22 10:31:38 -04:00
setpos 0, offset + line
2017-07-25 10:36:28 -04:00
addstr text[(props[:width] * (line - 1))...(props[:width] * line)]
end
2017-07-24 07:40:49 -04:00
1 + lines
end
2017-07-21 14:04:59 -04:00
end
end
end