Class: TTY::Prompt::Question
- Inherits:
-
Object
- Object
- TTY::Prompt::Question
- Includes:
- Checks
- Defined in:
- lib/tty/prompt/question.rb,
lib/tty/prompt/question/checks.rb,
lib/tty/prompt/question/modifier.rb,
lib/tty/prompt/question/validation.rb
Overview
A class responsible for gathering user input
Direct Known Subclasses
Defined Under Namespace
Modules: Checks Classes: Modifier, Validation
Constant Summary collapse
- UndefinedSetting =
Class.new do def to_s "undefined" end alias_method :inspect, :to_s end
Instance Attribute Summary collapse
-
#message ⇒ Object
readonly
Store question message.
-
#messages ⇒ Object
readonly
Stores all the error messages displayed to user The currently supported messages are: * :range? * :required? * :valid?.
- #modifier ⇒ Object readonly
- #validation ⇒ Object readonly
Instance Method Summary collapse
-
#call(message = "", &block) ⇒ self
Call the question.
-
#convert(value = (not_set = true), message = nil) ⇒ Object
Specify answer conversion.
-
#convert? ⇒ Boolean
Check if conversion is set.
-
#convert_result(value) ⇒ Object
private
Convert value to expected type.
-
#default(value = (not_set = true)) ⇒ Object
Set default value.
-
#default? ⇒ Boolean
Check if default value is set.
-
#echo(value = nil) ⇒ Object
(also: #echo?)
Turn terminal echo on or off.
-
#in(value = (not_set = true), message = nil) ⇒ Object
Set expected range of values.
-
#in? ⇒ Boolean
Check if range is set.
-
#initialize(prompt, **options) ⇒ Question
constructor
Initialize a Question.
-
#inspect ⇒ Object
String representation of this question.
-
#message_for(name, tokens = nil) ⇒ Array[String]
private
Retrieve message based on the key.
-
#modify(*rules) ⇒ Object
Modify string according to the rule given.
-
#process_input(question) ⇒ Object
private
Decide how to handle input from user.
-
#quiet(value) ⇒ Object
Set quiet mode.
-
#raw(value = nil) ⇒ Object
(also: #raw?)
Turn raw mode on or off.
-
#read_input(question) ⇒ Object
private
Process input.
-
#refresh(lines, lines_to_clear) ⇒ String
private
Determine area of the screen to clear.
-
#render ⇒ Object
private
Read answer and convert to type.
-
#render_error(errors) ⇒ String
private
Handle error condition.
-
#render_question ⇒ String
private
Render question.
-
#required(value = (not_set = true), message = nil) ⇒ Boolean
(also: #required?)
Ensure that passed argument is present or not.
- #to_s ⇒ Object
-
#validate(value = nil, message = nil, &block) ⇒ Question
Set validation rule for an argument.
- #validation? ⇒ Boolean
-
#value(val) ⇒ Object
Prepopulate input with custom content.
-
#value? ⇒ Boolean
private
Check if custom value is present.
Constructor Details
#initialize(prompt, **options) ⇒ Question
Initialize a Question
37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 |
# File 'lib/tty/prompt/question.rb', line 37 def initialize(prompt, **) # Option deprecation if [:validation] warn "[DEPRECATION] The `:validation` option is deprecated. Use `:validate` instead." [:validate] = [:validation] end @prompt = prompt @prefix = .fetch(:prefix) { @prompt.prefix } @default = .fetch(:default) { UndefinedSetting } @required = .fetch(:required) { false } @echo = .fetch(:echo) { true } @in = .fetch(:in) { UndefinedSetting } @modifier = .fetch(:modifier) { [] } @validation = .fetch(:validate) { UndefinedSetting } @convert = .fetch(:convert) { UndefinedSetting } @active_color = .fetch(:active_color) { @prompt.active_color } @help_color = .fetch(:help_color) { @prompt.help_color } @error_color = .fetch(:error_color) { :red } @value = .fetch(:value) { UndefinedSetting } @quiet = .fetch(:quiet) { @prompt.quiet } @messages = Utils.deep_copy(.fetch(:messages) { {} }) @done = false @first_render = true @input = nil @evaluator = Evaluator.new(self) @evaluator << CheckRequired @evaluator << CheckDefault @evaluator << CheckRange @evaluator << CheckValidation @evaluator << CheckModifier @evaluator << CheckConversion end |
Instance Attribute Details
#message ⇒ Object (readonly)
Store question message
28 29 30 |
# File 'lib/tty/prompt/question.rb', line 28 def @message end |
#messages ⇒ Object (readonly)
Stores all the error messages displayed to user The currently supported messages are:
* :range?
* :required?
* :valid?
78 79 80 |
# File 'lib/tty/prompt/question.rb', line 78 def @messages end |
#modifier ⇒ Object (readonly)
30 31 32 |
# File 'lib/tty/prompt/question.rb', line 30 def modifier @modifier end |
#validation ⇒ Object (readonly)
32 33 34 |
# File 'lib/tty/prompt/question.rb', line 32 def validation @validation end |
Instance Method Details
#call(message = "", &block) ⇒ self
Call the question
107 108 109 110 111 112 113 |
# File 'lib/tty/prompt/question.rb', line 107 def call( = "", &block) @message = block.call(self) if block @prompt.subscribe(self) do render end end |
#convert(value = (not_set = true), message = nil) ⇒ Object
Specify answer conversion
237 238 239 240 241 242 243 244 |
# File 'lib/tty/prompt/question.rb', line 237 def convert(value = (not_set = true), = nil) [:convert?] = if if not_set @convert else @convert = value end end |
#convert? ⇒ Boolean
Check if conversion is set
251 252 253 |
# File 'lib/tty/prompt/question.rb', line 251 def convert? @convert != UndefinedSetting end |
#convert_result(value) ⇒ Object
This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.
Convert value to expected type
221 222 223 224 225 226 227 228 229 230 231 232 |
# File 'lib/tty/prompt/question.rb', line 221 def convert_result(value) if convert? && !Utils.blank?(value) case @convert when Proc @convert.call(value) else Converters.convert(@convert, value) end else value end end |
#default(value = (not_set = true)) ⇒ Object
Set default value.
258 259 260 261 262 |
# File 'lib/tty/prompt/question.rb', line 258 def default(value = (not_set = true)) return @default if not_set @default = value end |
#default? ⇒ Boolean
Check if default value is set
269 270 271 |
# File 'lib/tty/prompt/question.rb', line 269 def default? @default != UndefinedSetting end |
#echo(value = nil) ⇒ Object Also known as: echo?
Turn terminal echo on or off. This is used to secure the display so that the entered characters are not echoed back to the screen.
331 332 333 334 335 |
# File 'lib/tty/prompt/question.rb', line 331 def echo(value = nil) return @echo if value.nil? @echo = value end |
#in(value = (not_set = true), message = nil) ⇒ Object
Set expected range of values
353 354 355 356 357 358 359 360 361 |
# File 'lib/tty/prompt/question.rb', line 353 def in(value = (not_set = true), = nil) [:range?] = if if in? && !@in.is_a?(Range) @in = Converters.convert(:range, @in) end return @in if not_set @in = Converters.convert(:range, value) end |
#in? ⇒ Boolean
Check if range is set
368 369 370 |
# File 'lib/tty/prompt/question.rb', line 368 def in? @in != UndefinedSetting end |
#inspect ⇒ Object
String representation of this question
386 387 388 |
# File 'lib/tty/prompt/question.rb', line 386 def inspect "#<#{self.class.name} @message=#{}, @input=#{@input}>" end |
#message_for(name, tokens = nil) ⇒ Array[String]
This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.
Retrieve message based on the key
91 92 93 94 95 96 97 98 |
# File 'lib/tty/prompt/question.rb', line 91 def (name, tokens = nil) template = @messages[name] if template && !template.match(/\%\{/).nil? [template % tokens] else [template || ""] end end |
#modify(*rules) ⇒ Object
Modify string according to the rule given.
323 324 325 |
# File 'lib/tty/prompt/question.rb', line 323 def modify(*rules) @modifier = rules end |
#process_input(question) ⇒ Object
This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.
Decide how to handle input from user
161 162 163 164 165 166 167 |
# File 'lib/tty/prompt/question.rb', line 161 def process_input(question) @input = read_input(question) if Utils.blank?(@input) @input = default? ? default : nil end @evaluator.(@input) end |
#quiet(value) ⇒ Object
Set quiet mode.
375 376 377 |
# File 'lib/tty/prompt/question.rb', line 375 def quiet(value) @quiet = value end |
#raw(value = nil) ⇒ Object Also known as: raw?
Turn raw mode on or off. This enables character-based input.
341 342 343 344 345 |
# File 'lib/tty/prompt/question.rb', line 341 def raw(value = nil) return @raw if value.nil? @raw = value end |
#read_input(question) ⇒ Object
This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.
Process input
172 173 174 175 176 177 178 179 |
# File 'lib/tty/prompt/question.rb', line 172 def read_input(question) = { echo: echo } if value? && @first_render [:value] = @value @first_render = false end @prompt.read_line(question, **).chomp end |
#refresh(lines, lines_to_clear) ⇒ String
This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.
Determine area of the screen to clear
201 202 203 204 205 206 207 208 209 210 211 212 213 214 |
# File 'lib/tty/prompt/question.rb', line 201 def refresh(lines, lines_to_clear) output = [] if @done if @errors.count.zero? output << @prompt.cursor.up(lines) else lines += @errors.count lines_to_clear += @errors.count end else output << @prompt.cursor.up(lines) end output.join + @prompt.clear_lines(lines_to_clear) end |
#render ⇒ Object
This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.
Read answer and convert to type
118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 |
# File 'lib/tty/prompt/question.rb', line 118 def render @errors = [] until @done result = process_input(render_question) if result.failure? @errors = result.errors @prompt.print(render_error(result.errors)) else @done = true end question = render_question input_line = question + result.value.to_s total_lines = @prompt.count_screen_lines(input_line) @prompt.print(refresh(question.lines.count, total_lines)) end @prompt.print(render_question) unless @quiet result.value end |
#render_error(errors) ⇒ String
This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.
Handle error condition
186 187 188 189 190 191 |
# File 'lib/tty/prompt/question.rb', line 186 def render_error(errors) errors.reduce([]) do |acc, err| acc << @prompt.decorate(">>", :red) + " " + err acc end.join("\n") end |
#render_question ⇒ String
This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.
Render question
142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 |
# File 'lib/tty/prompt/question.rb', line 142 def render_question header = [] if !Utils.blank?(@prefix) || !Utils.blank?() header << "#{@prefix}#{} " end if !echo? header elsif @done header << @prompt.decorate(@input.to_s, @active_color) elsif default? && !Utils.blank?(@default) header << @prompt.decorate("(#{default})", @help_color) + " " end header << "\n" if @done header.join end |
#required(value = (not_set = true), message = nil) ⇒ Boolean Also known as: required?
Ensure that passed argument is present or not
278 279 280 281 282 283 |
# File 'lib/tty/prompt/question.rb', line 278 def required(value = (not_set = true), = nil) [:required?] = if return @required if not_set @required = value end |
#to_s ⇒ Object
380 381 382 |
# File 'lib/tty/prompt/question.rb', line 380 def to_s .to_s end |
#validate(value = nil, message = nil, &block) ⇒ Question
Set validation rule for an argument
293 294 295 296 |
# File 'lib/tty/prompt/question.rb', line 293 def validate(value = nil, = nil, &block) [:valid?] = if @validation = (value || block) end |
#validation? ⇒ Boolean
314 315 316 |
# File 'lib/tty/prompt/question.rb', line 314 def validation? @validation != UndefinedSetting end |
#value(val) ⇒ Object
Prepopulate input with custom content
301 302 303 304 305 |
# File 'lib/tty/prompt/question.rb', line 301 def value(val) return @value if val.nil? @value = val end |
#value? ⇒ Boolean
This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.
Check if custom value is present
310 311 312 |
# File 'lib/tty/prompt/question.rb', line 310 def value? @value != UndefinedSetting end |