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/info.rb

32 lines
595 B
Ruby
Raw Normal View History

2017-07-22 04:16:58 -04:00
# frozen_string_literal: true
module Widgets
2017-07-22 05:00:28 -04:00
class Chat < VPanel
class Info < Base
2017-07-22 07:49:55 -04:00
attr_reader :name, :public_key
def initialize(x, y, width, height)
super
@name = Faker::Name.name
@public_key = SecureRandom.hex 32
end
2017-07-22 09:03:10 -04:00
def draw
2017-07-22 10:31:38 -04:00
setpos 0, 0
2017-07-24 05:52:42 -04:00
Style.default.online_mark window do
2017-07-22 14:46:50 -04:00
addstr '[Online]'
2017-07-22 07:49:55 -04:00
end
2017-07-22 14:46:50 -04:00
addstr ' '
2017-07-24 05:52:42 -04:00
Style.default.peer_info_name window do
2017-07-22 14:46:50 -04:00
addstr name
2017-07-22 07:49:55 -04:00
end
2017-07-22 10:31:38 -04:00
setpos 0, 1
2017-07-22 14:46:50 -04:00
addstr 'Public key: '
addstr public_key
2017-07-22 07:49:55 -04:00
end
2017-07-22 04:16:58 -04:00
end
end
end