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 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528
//! Text input with an input mask.
//!
//! * Can do the usual insert/delete/move operations.
//! * Text selection with keyboard + mouse
//! * Scrolls with the cursor.
//! * Modes for focus and valid.
//! * Info-overlay for sub-fields without value.
//! * Localization with [format_num_pattern::NumberSymbols]
//!
//! * Accepts an input mask:
//! * `0`: can enter digit, display as 0
//! * `9`: can enter digit, display as space
//! * `#`: digit, plus or minus sign, display as space
//! * `-`: sign
//! * `+`: sign, positive is '+', negative is '-', not localized.
//! * `.` and `,`: decimal and grouping separators
//!
//! * `H`: must enter a hex digit, display as 0
//! * `h`: can enter a hex digit, display as space
//! * `O`: must enter an octal digit, display as 0
//! * `o`: can enter an octal digit, display as space
//! * `D`: must enter a decimal digit, display as 0
//! * `d`: can enter a decimal digit, display as space
//!
//! * `l`: can enter letter, display as space
//! * `a`: can enter letter or digit, display as space
//! * `c`: can enter character or space, display as space
//! * `_`: anything, display as space
//!
//! * `<space>`, `:`, `;`, `/`: separator characters move the cursor when entered.
//! * `\`: escapes the following character and uses it as a separator.
//! * all other ascii characters a reserved.
//! * other unicode characters can be used as separators without escaping.
//!
//! * Accepts a display overlay used instead of the default chars of the input mask.
//!
//! ```rust ignore
//! use ratatui::widgets::StatefulWidget;
//! use rat_input::masked_input::{MaskedInput, MaskedInputState};
//!
//! let date_focused = false;
//! let creditcard_focused = true;
//! let area = Rect::default();
//! let buf = Buffer::default();
//!
//! let mut date_state = MaskedInputState::new();
//! date_state.set_mask("99/99/9999")?;
//! date_state.set_display_mask("mm/dd/yyyy");
//!
//! let w_date = MaskedInput::default();
//! w_date.render(area, &mut buf, &mut date_state);
//! if date_focused {
//! frame.set_cursor(date_state.cursor.x, date_state.cursor.y);
//! }
//!
//! let mut creditcard_state = MaskedInputState::new();
//! creditcard_state.set_mask("dddd dddd dddd dddd")?;
//!
//! let w_creditcard = MaskedInput::default();
//! w_creditcard.render(area, &mut buf, &mut creditcard_state);
//! if creditcard_focused {
//! frame.set_cursor(creditcard_state.cursor.x, creditcard_state.cursor.y);
//! }
//!
//! ```
//!
//! For event-handling call one of the HandleEvent implementations.
use crate::_private::NonExhaustive;
use crate::event::{FocusKeys, HandleEvent, MouseOnly};
use format_num_pattern::NumberSymbols;
use rat_focus::{FocusFlag, HasFocusFlag};
use rat_input::event::{ReadOnly, TextOutcome};
pub use rat_input::masked_input::MaskedInputStyle;
use ratatui::buffer::Buffer;
use ratatui::layout::Rect;
use ratatui::prelude::Style;
use ratatui::widgets::{Block, StatefulWidget};
use std::fmt;
use std::ops::Range;
/// Text input widget with input mask.
#[derive(Debug, Default, Clone)]
pub struct RMaskedInput<'a> {
widget: rat_input::masked_input::MaskedInput<'a>,
}
/// State of the input-mask.
#[derive(Debug, Clone)]
pub struct RMaskedInputState {
/// Baseline widget.
pub widget: rat_input::masked_input::MaskedInputState,
pub non_exhaustive: NonExhaustive,
}
impl<'a> RMaskedInput<'a> {
pub fn new() -> Self {
Self::default()
}
/// Show the compact form, if the focus is not with this widget.
#[inline]
pub fn show_compact(mut self, show_compact: bool) -> Self {
self.widget = self.widget.show_compact(show_compact);
self
}
/// Set the combined style.
#[inline]
pub fn styles(mut self, style: MaskedInputStyle) -> Self {
self.widget = self.widget.styles(style);
self
}
/// Base text style.
#[inline]
pub fn style(mut self, style: impl Into<Style>) -> Self {
self.widget = self.widget.style(style);
self
}
/// Style when focused.
#[inline]
pub fn focus_style(mut self, style: impl Into<Style>) -> Self {
self.widget = self.widget.focus_style(style);
self
}
/// Style for selection
#[inline]
pub fn select_style(mut self, style: impl Into<Style>) -> Self {
self.widget = self.widget.select_style(style);
self
}
/// Style for the invalid indicator.
#[inline]
pub fn invalid_style(mut self, style: impl Into<Style>) -> Self {
self.widget = self.widget.invalid_style(style);
self
}
#[inline]
pub fn block(mut self, block: Block<'a>) -> Self {
self.widget = self.widget.block(block);
self
}
}
impl<'a> StatefulWidget for RMaskedInput<'a> {
type State = RMaskedInputState;
fn render(self, area: Rect, buf: &mut Buffer, state: &mut Self::State) {
self.widget.render(area, buf, &mut state.widget)
}
}
impl Default for RMaskedInputState {
fn default() -> Self {
Self {
widget: Default::default(),
non_exhaustive: NonExhaustive,
}
}
}
impl HasFocusFlag for RMaskedInputState {
fn focus(&self) -> &FocusFlag {
&self.widget.focus
}
fn area(&self) -> Rect {
self.widget.area
}
}
impl RMaskedInputState {
pub fn new() -> Self {
Self::default()
}
#[inline]
pub fn new_with_symbols(sym: NumberSymbols) -> Self {
Self {
widget: rat_input::masked_input::MaskedInputState::new_with_symbols(sym),
..Default::default()
}
}
/// Renders the widget in invalid style.
#[inline]
pub fn set_invalid(&mut self, invalid: bool) {
self.widget.set_invalid(invalid);
}
/// Renders the widget in invalid style.
#[inline]
pub fn get_invalid(&self) -> bool {
self.widget.get_invalid()
}
/// Reset to empty.
#[inline]
pub fn clear(&mut self) -> bool {
self.widget.clear()
}
/// Offset shown.
#[inline]
pub fn offset(&self) -> usize {
self.widget.offset()
}
/// Offset shown. This is corrected if the cursor wouldn't be visible.
#[inline]
pub fn set_offset(&mut self, offset: usize) {
self.widget.set_offset(offset)
}
/// Cursor position
#[inline]
pub fn cursor(&self) -> usize {
self.widget.cursor()
}
/// Set the cursor position, reset selection.
#[inline]
pub fn set_cursor(&mut self, cursor: usize, extend_selection: bool) -> bool {
self.widget.set_cursor(cursor, extend_selection)
}
/// Place cursor at decimal separator, if any. 0 otherwise.
#[inline]
pub fn set_default_cursor(&mut self) {
self.widget.set_default_cursor()
}
/// Selection anchor.
#[inline]
pub fn anchor(&self) -> usize {
self.widget.anchor()
}
/// Set the display mask. This text is used for parts that have
/// no valid input yet. Part means consecutive characters of the
/// input mask with the same mask type.
///
/// There is a default representation for each mask type if this
/// is not set.
///
/// If the length differs from the mask, the difference will be
/// ignored / filled with defaults.
#[inline]
pub fn set_display_mask<S: Into<String>>(&mut self, s: S) {
self.widget.set_display_mask(s)
}
/// Display mask.
#[inline]
pub fn display_mask(&self) -> String {
self.widget.display_mask()
}
/// Set the input mask. This overwrites the display mask and the value
/// with a default representation of the mask.
///
/// The result value contains all punctuation and
/// the value given as 'display' below. See [compact_value()](rat_input::masked_input::MaskedInputState::compact_value).
///
/// * `0`: can enter digit, display as 0
/// * `9`: can enter digit, display as space
/// * `#`: digit, plus or minus sign, display as space
/// * `+`: sign. display '+' for positive
/// * `-`: sign. display ' ' for positive
/// * `.` and `,`: decimal and grouping separators
///
/// * `H`: must enter a hex digit, display as 0
/// * `h`: can enter a hex digit, display as space
/// * `O`: must enter an octal digit, display as 0
/// * `o`: can enter an octal digit, display as space
/// * `D`: must enter a decimal digit, display as 0
/// * `d`: can enter a decimal digit, display as space
///
/// * `l`: can enter letter, display as space
/// * `a`: can enter letter or digit, display as space
/// * `c`: can enter character or space, display as space
/// * `_`: anything, display as space
///
/// * `:` `;` `-` `/`: separator characters move the cursor when entered.
/// * `\`: escapes the following character and uses it as a separator.
/// * all other ascii characters a reserved.
///
/// Inspired by <https://support.microsoft.com/en-gb/office/control-data-entry-formats-with-input-masks-e125997a-7791-49e5-8672-4a47832de8da>
#[inline]
pub fn set_mask<S: AsRef<str>>(&mut self, s: S) -> Result<(), fmt::Error> {
self.widget.set_mask(s)
}
/// Display mask.
#[inline]
pub fn mask(&self) -> String {
self.widget.mask()
}
/// Mask with some debug information.
#[inline]
pub fn debug_mask(&self) -> String {
self.widget.debug_mask()
}
/// Set symbols for number display.
///
/// These are only used for rendering and to map user input.
/// The value itself uses ".", "," and "-".
#[inline]
pub fn set_num_symbols(&mut self, sym: NumberSymbols) {
self.widget.set_num_symbols(sym)
}
/// Create a default value according to the mask.
#[inline]
pub fn default_value(&self) -> String {
self.widget.default_value()
}
/// Set the value.
///
/// No checks if the value conforms to the mask.
/// If the value is too short it will be filled with space.
/// if the value is too long it will be truncated.
#[inline]
pub fn set_value<S: Into<String>>(&mut self, s: S) {
self.widget.set_value(s)
}
/// Value with all punctuation and default values according to the mask type.
#[inline]
pub fn value(&self) -> &str {
self.widget.value()
}
/// Value split along any separators
#[inline]
pub fn value_parts(&self) -> Vec<String> {
self.widget.value_parts()
}
/// Value without optional whitespace and grouping separators. Might be easier to parse.
#[inline]
pub fn compact_value(&self) -> String {
self.widget.compact_value()
}
/// Empty
#[inline]
pub fn is_empty(&self) -> bool {
self.widget.is_empty()
}
/// Length in grapheme count.
#[inline]
pub fn len(&self) -> usize {
self.widget.len()
}
/// Selection
#[inline]
pub fn has_selection(&self) -> bool {
self.widget.has_selection()
}
/// Selection
#[inline]
pub fn selection(&self) -> Range<usize> {
self.widget.selection()
}
/// Selection
#[inline]
pub fn set_selection(&mut self, anchor: usize, cursor: usize) -> bool {
self.widget.set_selection(anchor, cursor)
}
/// Selection
#[inline]
pub fn select_all(&mut self) -> bool {
self.widget.select_all()
}
/// Selection
#[inline]
pub fn selected_str(&self) -> &str {
self.widget.selected_value()
}
/// Insert a char at the current position.
#[inline]
pub fn insert_char(&mut self, c: char) -> bool {
self.widget.insert_char(c)
}
/// Remove the selected range. The text will be replaced with the default value
/// as defined by the mask.
#[inline]
pub fn delete_range(&mut self, range: Range<usize>) -> bool {
self.widget.delete_range(range)
}
/// Deletes the next word.
#[inline]
pub fn delete_next_word(&mut self) -> bool {
self.widget.delete_next_word()
}
/// Deletes the given range.
#[inline]
pub fn delete_prev_word(&mut self) -> bool {
self.widget.delete_prev_word()
}
/// Delete the char before the cursor.
#[inline]
pub fn delete_prev_char(&mut self) -> bool {
self.widget.delete_prev_char()
}
/// Delete the char after the cursor.
#[inline]
pub fn delete_next_char(&mut self) -> bool {
self.widget.delete_next_char()
}
#[inline]
pub fn move_to_next_word(&mut self, extend_selection: bool) -> bool {
self.widget.move_to_next_word(extend_selection)
}
#[inline]
pub fn move_to_prev_word(&mut self, extend_selection: bool) -> bool {
self.widget.move_to_prev_word(extend_selection)
}
/// Move to the next char.
#[inline]
pub fn move_to_next(&mut self, extend_selection: bool) -> bool {
self.widget.move_to_next(extend_selection)
}
/// Move to the previous char.
#[inline]
pub fn move_to_prev(&mut self, extend_selection: bool) -> bool {
self.widget.move_to_prev(extend_selection)
}
/// Start of line
#[inline]
pub fn move_to_line_start(&mut self, extend_selection: bool) -> bool {
self.widget.move_to_line_start(extend_selection)
}
/// End of line
#[inline]
pub fn move_to_line_end(&mut self, extend_selection: bool) -> bool {
self.widget.move_to_line_end(extend_selection)
}
/// Converts a grapheme based position to a screen position
/// relative to the widget area.
pub fn to_screen_col(&self, pos: usize) -> Option<u16> {
self.widget.to_screen_col(pos)
}
/// Converts from a widget relative screen coordinate to a grapheme index.
/// x is the relative screen position.
pub fn from_screen_col(&self, x: usize) -> Option<usize> {
self.widget.from_screen_col(x)
}
/// Set the cursor position from a visual position relative to the origin.
#[inline]
pub fn set_screen_cursor(&mut self, cursor: isize, extend_selection: bool) -> bool {
self.widget.set_screen_cursor(cursor, extend_selection)
}
/// The current text cursor as an absolute screen position.
#[inline]
pub fn screen_cursor(&self) -> Option<(u16, u16)> {
if self.is_focused() {
self.widget.screen_cursor()
} else {
None
}
}
}
impl HandleEvent<crossterm::event::Event, FocusKeys, TextOutcome> for RMaskedInputState {
fn handle(&mut self, event: &crossterm::event::Event, _keymap: FocusKeys) -> TextOutcome {
if self.gained_focus() {
TextOutcome::NotUsed
} else if self.is_focused() {
self.widget.handle(event, FocusKeys)
} else {
self.widget.handle(event, MouseOnly)
}
}
}
impl HandleEvent<crossterm::event::Event, ReadOnly, TextOutcome> for RMaskedInputState {
fn handle(&mut self, event: &crossterm::event::Event, _keymap: ReadOnly) -> TextOutcome {
if self.gained_focus() {
TextOutcome::NotUsed
} else if self.is_focused() {
self.widget.handle(event, ReadOnly)
} else {
self.widget.handle(event, MouseOnly)
}
}
}
impl HandleEvent<crossterm::event::Event, MouseOnly, TextOutcome> for RMaskedInputState {
fn handle(&mut self, event: &crossterm::event::Event, _keymap: MouseOnly) -> TextOutcome {
if self.gained_focus() {
TextOutcome::NotUsed
} else {
self.widget.handle(event, MouseOnly)
}
}
}