Class: CLI::UI::Progress
- Inherits:
-
Object
- Object
- CLI::UI::Progress
- Extended by:
- T::Sig
- Defined in:
- lib/cli/ui/progress.rb
Constant Summary collapse
- FILLED_BAR =
A Cyan filled block
"\e[46m"
- UNFILLED_BAR =
A bright white block
"\e[1;47m"
Class Method Summary collapse
Instance Method Summary collapse
-
#initialize(title = nil, width: Terminal.width) ⇒ Progress
constructor
A new instance of Progress.
- #tick(percent: nil, set_percent: nil) ⇒ Object
- #to_s ⇒ Object
- #update_title(new_title) ⇒ Object
Methods included from T::Sig
Constructor Details
Class Method Details
.progress(title = nil, width: Terminal.width, &block) ⇒ Object
54 55 56 57 58 59 60 61 62 63 |
# File 'lib/cli/ui/progress.rb', line 54 def progress(title = nil, width: Terminal.width, &block) = Progress.new(title, width: width) print(CLI::UI::ANSI.hide_cursor) yield() ensure puts() CLI::UI.raw do print(ANSI.show_cursor) end end |
Instance Method Details
#tick(percent: nil, set_percent: nil) ⇒ Object
91 92 93 94 95 96 97 98 99 100 101 102 |
# File 'lib/cli/ui/progress.rb', line 91 def tick(percent: nil, set_percent: nil) raise ArgumentError, 'percent and set_percent cannot both be specified' if percent && set_percent @percent_done += percent || 0.01 @percent_done = set_percent if set_percent @percent_done = [@percent_done, 1.0].min # Make sure we can't go above 1.0 print(self) printed_lines = @title ? 2 : 1 print(CLI::UI::ANSI.previous_lines(printed_lines) + "\n") end |
#to_s ⇒ Object
118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 |
# File 'lib/cli/ui/progress.rb', line 118 def to_s suffix = " #{(@percent_done * 100).floor}%".ljust(5) workable_width = @max_width - Frame.prefix_width - suffix.size filled = [(@percent_done * workable_width.to_f).ceil, 0].max unfilled = [workable_width - filled, 0].max title = CLI::UI.resolve_text(@title, truncate_to: @max_width - Frame.prefix_width) if @title = CLI::UI.resolve_text([ FILLED_BAR + ' ' * filled, UNFILLED_BAR + ' ' * unfilled, CLI::UI::Color::RESET.code + suffix, ].join) [title, ].compact.join("\n") end |
#update_title(new_title) ⇒ Object
111 112 113 |
# File 'lib/cli/ui/progress.rb', line 111 def update_title(new_title) @title = new_title end |