зеркало из
https://github.com/glebtv/tui-textarea.git
synced 2026-08-28 11:36:17 +03:00
* chore: migrate to Rust 2024 edition and bump to v0.9.2 - Bump edition to 2024 and rust-version to 1.85.0 - Replace f64::log10 with usize::ilog10 in num_digits - Fix clippy lints surfaced by edition bump: repeat_n, derived Default, then_some - Expand watch-check and watch-test aliases to cover all feature paths (crossterm_0_28, no-backend, tuirs variants, serde, arbitrary) - Expand CI test and clippy workflows to full 6/8-entry feature matrices including termion on Ubuntu - Apply rustfmt import reordering from edition 2024 rules * fix: revert turis linux checks
89 строки
2.6 KiB
Rust
89 строки
2.6 KiB
Rust
use crossterm::event::{DisableMouseCapture, EnableMouseCapture};
|
|
use crossterm::terminal::{
|
|
EnterAlternateScreen, LeaveAlternateScreen, disable_raw_mode, enable_raw_mode,
|
|
};
|
|
use ratatui::Terminal;
|
|
use ratatui::backend::CrosstermBackend;
|
|
use ratatui::layout::{Constraint, Layout};
|
|
use ratatui::style::{Color, Style};
|
|
use ratatui::widgets::{Block, Borders};
|
|
use std::io;
|
|
use tui_textarea::{Input, Key, TextArea};
|
|
|
|
fn validate(textarea: &mut TextArea) -> bool {
|
|
if let Err(err) = textarea.lines()[0].parse::<f64>() {
|
|
textarea.set_style(Style::default().fg(Color::LightRed));
|
|
textarea.set_block(
|
|
Block::default()
|
|
.borders(Borders::ALL)
|
|
.border_style(Color::LightRed)
|
|
.title(format!("ERROR: {}", err)),
|
|
);
|
|
false
|
|
} else {
|
|
textarea.set_style(Style::default().fg(Color::LightGreen));
|
|
textarea.set_block(
|
|
Block::default()
|
|
.border_style(Color::LightGreen)
|
|
.borders(Borders::ALL)
|
|
.title("OK"),
|
|
);
|
|
true
|
|
}
|
|
}
|
|
|
|
fn main() -> io::Result<()> {
|
|
let stdout = io::stdout();
|
|
let mut stdout = stdout.lock();
|
|
|
|
enable_raw_mode()?;
|
|
crossterm::execute!(stdout, EnterAlternateScreen, EnableMouseCapture)?;
|
|
let backend = CrosstermBackend::new(stdout);
|
|
let mut term = Terminal::new(backend)?;
|
|
|
|
let mut textarea = TextArea::default();
|
|
textarea.set_cursor_line_style(Style::default());
|
|
textarea.set_placeholder_text("Enter a valid float (e.g. 1.56)");
|
|
let layout = Layout::default().constraints([Constraint::Length(3), Constraint::Min(1)]);
|
|
let mut is_valid = validate(&mut textarea);
|
|
|
|
loop {
|
|
term.draw(|f| {
|
|
let chunks = layout.split(f.area());
|
|
f.render_widget(&textarea, chunks[0]);
|
|
})?;
|
|
|
|
match crossterm::event::read()?.into() {
|
|
Input { key: Key::Esc, .. } => break,
|
|
Input {
|
|
key: Key::Enter, ..
|
|
} if is_valid => break,
|
|
Input {
|
|
key: Key::Char('m'),
|
|
ctrl: true,
|
|
..
|
|
}
|
|
| Input {
|
|
key: Key::Enter, ..
|
|
} => {}
|
|
input => {
|
|
// TextArea::input returns if the input modified its text
|
|
if textarea.input(input) {
|
|
is_valid = validate(&mut textarea);
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
disable_raw_mode()?;
|
|
crossterm::execute!(
|
|
term.backend_mut(),
|
|
LeaveAlternateScreen,
|
|
DisableMouseCapture
|
|
)?;
|
|
term.show_cursor()?;
|
|
|
|
println!("Input: {:?}", textarea.lines()[0]);
|
|
Ok(())
|
|
}
|