Module: CLI::UI::Widgets
- Extended by:
- T::Sig
- Defined in:
- lib/cli/ui/widgets.rb,
lib/cli/ui/widgets/base.rb,
lib/cli/ui/widgets/status.rb
Overview
Widgets are formatter objects with more custom implementations than the other features, which all center around formatting text with colours, etc.
If you want to extend CLI::UI with your own widgets, you may want to do something like this:
require('cli/ui')
class MyWidget < CLI::UI::Widgets::Base
# ...
end
CLI::UI::Widgets.register('my-widget') { MyWidget }
puts(CLI::UI.fmt("{{@widget/my-widget:args}}"))
Defined Under Namespace
Classes: Base, InvalidWidgetArguments, InvalidWidgetHandle, Status
Constant Summary collapse
- MAP =
{}
Class Method Summary collapse
Methods included from T::Sig
Class Method Details
.available ⇒ Object
54 55 56 |
# File 'lib/cli/ui/widgets.rb', line 54 def available MAP.keys end |
.lookup(handle) ⇒ Object
45 46 47 48 49 |
# File 'lib/cli/ui/widgets.rb', line 45 def lookup(handle) MAP.fetch(handle).call rescue KeyError, NameError raise(InvalidWidgetHandle, handle) end |
.register(name, &cb) ⇒ Object
32 33 34 |
# File 'lib/cli/ui/widgets.rb', line 32 def register(name, &cb) MAP[name] = cb end |