1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 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 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502
//! Text input
use crate::{
error::ClackError,
style::{ansi, chars},
};
use crossterm::{cursor, QueueableCommand};
use owo_colors::OwoColorize;
use rustyline::{highlight::Highlighter, Completer, Editor, Helper, Hinter, Validator};
use std::{
borrow::Cow,
error::Error,
fmt::Display,
io::{stdout, Write},
str::FromStr,
};
#[derive(Completer, Helper, Hinter, Validator)]
pub(super) struct PlaceholderHightlighter<'a> {
placeholder: Option<&'a str>,
pub is_val: bool,
}
impl<'a> PlaceholderHightlighter<'a> {
pub fn new(placeholder: Option<&'a str>) -> Self {
PlaceholderHightlighter {
placeholder,
is_val: false,
}
}
}
impl Highlighter for PlaceholderHightlighter<'_> {
fn highlight<'l>(&self, line: &'l str, _pos: usize) -> Cow<'l, str> {
if let Some(placeholder) = self.placeholder {
if line.is_empty() {
Cow::Owned(placeholder.dimmed().to_string())
} else {
Cow::Borrowed(line)
}
} else {
Cow::Borrowed(line)
}
}
fn highlight_char(&self, _line: &str, _pos: usize, _forced: bool) -> bool {
true
}
fn highlight_prompt<'b, 's: 'b, 'p: 'b>(
&'s self,
prompt: &'p str,
default: bool,
) -> Cow<'b, str> {
if !default {
// i honestly don't know what this even does
Cow::Borrowed(prompt)
} else if self.is_val {
Cow::Owned(prompt.yellow().to_string())
} else {
Cow::Owned(prompt.cyan().to_string())
}
}
}
type ValidateFn = dyn Fn(&str) -> Option<&'static str>;
/// `Input` struct
///
/// # Examples
///
/// ```no_run
/// use may_clack::{input, cancel};
///
/// # fn main() -> Result<(), may_clack::error::ClackError> {
/// let answer = input("message")
/// .initial_value("initial_value")
/// .validate(|x| x.find(char::is_uppercase).map(|_| "only use lowercase characters"))
/// .cancel(do_cancel)
/// .interact()?;
/// println!("answer {:?}", answer);
/// # Ok(())
/// # }
///
/// fn do_cancel() {
/// cancel!("operation cancelled");
/// std::process::exit(1);
/// }
/// ````
pub struct Input<M: Display> {
message: M,
initial_value: Option<String>,
placeholder: Option<String>,
validate: Option<Box<ValidateFn>>,
cancel: Option<Box<dyn Fn()>>,
}
impl<M: Display> Input<M> {
/// Creates a new `Input` struct.
///
/// Has a shorthand version in [`input()`]
///
/// # Examples
///
/// ```no_run
/// use may_clack::{input, input::Input};
///
/// // these two are equivalent
/// let question = Input::new("message");
/// let question = input("message");
/// ```
pub fn new(message: M) -> Self {
Input {
message,
initial_value: None,
placeholder: None,
validate: None,
cancel: None,
}
}
/// Specify a placeholder.
///
/// # Examples
///
/// ```no_run
/// use may_clack::input;
///
/// # fn main() -> Result<(), may_clack::error::ClackError> {
/// let answer = input("message").placeholder("placeholder").required()?;
/// println!("answer {:?}", answer);
/// # Ok(())
/// # }
/// ```
pub fn placeholder<S: Into<String>>(&mut self, placeholder: S) -> &mut Self {
self.placeholder = Some(placeholder.into());
self
}
/// Specify the initial value.
///
/// # Examples
///
/// ```no_run
/// use may_clack::input;
///
/// # fn main() -> Result<(), may_clack::error::ClackError> {
/// let answer = input("message").initial_value("initial_value").interact()?;
/// println!("answer {:?}", answer);
/// # Ok(())
/// # }
/// ```
pub fn initial_value<S: Into<String>>(&mut self, initial_value: S) -> &mut Self {
self.initial_value = Some(initial_value.into());
self
}
/// Specify a validation function.
///
/// On a successful validation, return a `None` from the closure,
/// and on an unsuccessful validation return a `Some<&'static str>` with the error message.
///
/// # Examples
///
/// ```no_run
/// use may_clack::input;
///
/// # fn main() -> Result<(), may_clack::error::ClackError> {
/// let answer = input("message")
/// .validate(|x| (!x.is_ascii()).then_some("only use ascii characters"))
/// .interact()?;
/// println!("answer {:?}", answer);
/// # Ok(())
/// # }
/// ```
pub fn validate<F>(&mut self, validate: F) -> &mut Self
where
F: Fn(&str) -> Option<&'static str> + 'static,
{
let validate = Box::new(validate);
self.validate = Some(validate);
self
}
fn do_validate(&self, input: &str) -> Option<&'static str> {
if let Some(validate) = self.validate.as_deref() {
validate(input)
} else {
None
}
}
/// Specify function to call on cancel.
///
/// # Examples
///
/// ```no_run
/// use may_clack::{input, cancel};
///
/// # fn main() -> Result<(), may_clack::error::ClackError> {
/// let answer = input("message").cancel(do_cancel).interact()?;
/// println!("answer {:?}", answer);
/// # Ok(())
/// # }
///
/// fn do_cancel() {
/// cancel!("operation cancelled");
/// panic!("operation cancelled");
/// }
pub fn cancel<F>(&mut self, cancel: F) -> &mut Self
where
F: Fn() + 'static,
{
let cancel = Box::new(cancel);
self.cancel = Some(cancel);
self
}
fn interact_once<T: FromStr>(&self, enforce_non_empty: bool) -> Result<Option<T>, ClackError>
where
T::Err: Error,
{
let prompt = format!("{} ", *chars::BAR);
let mut editor = Editor::new()?;
let helper = PlaceholderHightlighter::new(self.placeholder.as_deref());
editor.set_helper(Some(helper));
let mut initial_value = self.initial_value.as_deref().map(Cow::Borrowed);
loop {
let line = if let Some(ref init) = initial_value {
editor.readline_with_initial(&prompt, (init, ""))
} else {
editor.readline(&prompt)
};
// todo this looks refactor-able
if let Ok(value) = line {
if value.is_empty() {
if enforce_non_empty {
initial_value = None;
if let Some(helper) = editor.helper_mut() {
helper.is_val = true;
}
self.w_val("value is required");
} else {
break Ok(None);
}
} else if let Some(text) = self.do_validate(&value) {
initial_value = Some(Cow::Owned(value));
if let Some(helper) = editor.helper_mut() {
helper.is_val = true;
}
self.w_val(text);
} else {
match value.parse::<T>() {
Ok(val) => break Ok(Some(val)),
Err(err) => {
initial_value = Some(Cow::Owned(value));
if let Some(helper) = editor.helper_mut() {
helper.is_val = true;
}
self.w_val(&err.to_string());
}
}
}
} else {
break Err(ClackError::Cancelled);
}
}
}
/// Like [`Input::required()`], but parses the value before returning.
///
/// Useful for getting number inputs.
///
/// # Examples
///
/// ```no_run
/// use may_clack::input;
///
/// # fn main() -> Result<(), may_clack::error::ClackError> {
/// let answer: i32 = input("message").parse::<i32>()?;
/// println!("answer {:?}", answer);
/// # Ok(())
/// # }
/// ```
pub fn parse<T: FromStr + Display>(&self) -> Result<T, ClackError>
where
T::Err: Error,
{
self.w_init();
let interact = self.interact_once::<T>(true);
match interact {
Ok(Some(value)) => {
self.w_out(&value);
Ok(value)
}
Ok(None) => unreachable!(),
Err(ClackError::Cancelled) => {
self.w_cancel();
if let Some(cancel) = self.cancel.as_deref() {
cancel();
}
Err(ClackError::Cancelled)
}
Err(err) => Err(err),
}
}
/// Like [`Input::parse()`], but it also allows empty line submits like [`Input::interact()`].
///
/// ```no_run
/// use may_clack::input;
/// use std::net::Ipv4Addr;
///
/// # fn main() -> Result<(), may_clack::error::ClackError> {
/// let answer = input("message").maybe_parse::<Ipv4Addr>()?;
/// println!("answer {:?}", answer);
/// # Ok(())
/// # }
/// ```
pub fn maybe_parse<T: FromStr + Display>(&self) -> Result<Option<T>, ClackError>
where
T::Err: Error,
{
self.w_init();
let interact = self.interact_once::<T>(false);
match interact {
Ok(val) => {
if let Some(val) = &val {
self.w_out(val);
} else {
self.w_out("");
}
Ok(val)
}
Err(ClackError::Cancelled) => {
self.w_cancel();
if let Some(cancel) = self.cancel.as_deref() {
cancel();
}
Err(ClackError::Cancelled)
}
Err(err) => Err(err),
}
}
/// Like [`Input::interact()`], but does not return an empty line.
///
/// # Examples
///
/// ```no_run
/// use may_clack::input;
///
/// # fn main() -> Result<(), may_clack::error::ClackError> {
/// let answer = input("message").required()?;
/// println!("answer {:?}", answer);
/// # Ok(())
/// # }
/// ```
pub fn required(&self) -> Result<String, ClackError> {
self.w_init();
let interact = self.interact_once::<String>(true);
match interact {
Ok(Some(value)) => {
self.w_out(&value);
Ok(value)
}
Ok(None) => unreachable!(),
Err(ClackError::Cancelled) => {
self.w_cancel();
if let Some(cancel) = self.cancel.as_deref() {
cancel();
}
Err(ClackError::Cancelled)
}
Err(err) => Err(err),
}
}
/// Waits for the user to submit a line of text.
///
/// Returns [`None`] on an empty line and [`Some::<String>`] otherwise.
///
/// # Examples
///
/// ```no_run
/// use may_clack::{input, cancel};
///
/// # fn main() -> Result<(), may_clack::error::ClackError> {
/// let answer = input("message")
/// .initial_value("initial_value")
/// .validate(|x| x.parse::<u32>().err().map(|_| "invalid u32"))
/// .cancel(do_cancel)
/// .interact()?;
/// println!("answer {:?}", answer);
/// # Ok(())
/// # }
///
/// fn do_cancel() {
/// cancel!("operation cancelled");
/// std::process::exit(1);
/// }
/// ```
pub fn interact(&self) -> Result<Option<String>, ClackError> {
self.w_init();
let interact = self.interact_once(false);
match interact {
Ok(val) => {
let v = val.as_deref().unwrap_or("");
self.w_out(v);
Ok(val)
}
Err(ClackError::Cancelled) => {
self.w_cancel();
if let Some(cancel) = self.cancel.as_deref() {
cancel();
}
Err(ClackError::Cancelled)
}
Err(err) => Err(err),
}
}
}
impl<M: Display> Input<M> {
fn w_init(&self) {
let mut stdout = stdout();
println!("{}", *chars::BAR);
println!("{} {}", (*chars::STEP_ACTIVE).cyan(), self.message);
println!("{}", (*chars::BAR).cyan());
print!("{}", (*chars::BAR_END).cyan());
let _ = stdout.queue(cursor::MoveToPreviousLine(1));
let _ = stdout.flush();
print!("{} ", (*chars::BAR).cyan());
let _ = stdout.flush();
}
fn w_val(&self, text: &str) {
let mut stdout = stdout();
let _ = stdout.queue(cursor::MoveToPreviousLine(2));
let _ = stdout.flush();
println!("{} {}", (*chars::STEP_ERROR).yellow(), self.message);
println!("{}", (*chars::BAR).yellow());
print!("{}", ansi::CLEAR_LINE);
print!("{} {}", (*chars::BAR_END).yellow(), text.yellow());
let _ = stdout.queue(cursor::MoveToPreviousLine(1));
let _ = stdout.flush();
}
fn w_out<D: Display>(&self, value: D) {
let mut stdout = stdout();
let _ = stdout.queue(cursor::MoveToPreviousLine(2));
let _ = stdout.flush();
println!("{} {}", (*chars::STEP_SUBMIT).green(), self.message);
print!("{}", ansi::CLEAR_LINE);
println!("{} {}", *chars::BAR, value.dimmed());
print!("{}", ansi::CLEAR_LINE);
}
fn w_cancel(&self) {
let mut stdout = stdout();
let _ = stdout.queue(cursor::MoveToPreviousLine(2));
let _ = stdout.flush();
println!("{} {}", (*chars::STEP_CANCEL).red(), self.message);
print!("{}", ansi::CLEAR_LINE);
println!("{} {}", *chars::BAR, "cancelled".strikethrough().dimmed());
print!("{}", ansi::CLEAR_LINE);
}
}
/// Shorthand for [`Input::new()`]
pub fn input<M: Display>(message: M) -> Input<M> {
Input::new(message)
}