378 lines
12 KiB
Rust
378 lines
12 KiB
Rust
// examples/textarea_normal.rs
|
|
//! Demonstrates automatic cursor management with the textarea widget
|
|
//!
|
|
//! This example REQUIRES the `cursor-style` and `textarea` features to compile,
|
|
//! and is adapted for `textmode-normal` (always editing, no vim modes).
|
|
//!
|
|
//! Run with:
|
|
//! cargo run --example canvas_textarea_cursor_auto_normal --features "gui,cursor-style,textarea,textmode-normal"
|
|
|
|
#[cfg(not(feature = "cursor-style"))]
|
|
compile_error!(
|
|
"This example requires the 'cursor-style' feature. \
|
|
Run with: cargo run --example canvas_textarea_cursor_auto_normal --features \"gui,cursor-style,textarea,textmode-normal\""
|
|
);
|
|
|
|
#[cfg(not(feature = "textarea"))]
|
|
compile_error!(
|
|
"This example requires the 'textarea' feature. \
|
|
Run with: cargo run --example canvas_textarea_cursor_auto_normal --features \"gui,cursor-style,textarea,textmode-normal\""
|
|
);
|
|
|
|
use std::io;
|
|
use crossterm::{
|
|
event::{self, DisableMouseCapture, EnableMouseCapture, Event, KeyCode, KeyEvent, KeyModifiers},
|
|
execute,
|
|
terminal::{disable_raw_mode, enable_raw_mode, EnterAlternateScreen, LeaveAlternateScreen},
|
|
};
|
|
use ratatui::{
|
|
backend::{Backend, CrosstermBackend},
|
|
layout::{Constraint, Direction, Layout},
|
|
style::{Color, Style},
|
|
text::{Line, Span},
|
|
widgets::{Block, Borders, Paragraph},
|
|
Frame, Terminal,
|
|
};
|
|
|
|
use canvas::{
|
|
canvas::{modes::AppMode, CursorManager},
|
|
textarea::{TextArea, TextAreaState},
|
|
};
|
|
|
|
/// TextArea demo adapted for NORMALMODE (always editing)
|
|
struct AutoCursorTextArea {
|
|
textarea: TextAreaState,
|
|
has_unsaved_changes: bool,
|
|
debug_message: String,
|
|
command_buffer: String,
|
|
}
|
|
|
|
impl AutoCursorTextArea {
|
|
fn new() -> Self {
|
|
let initial_text = "🎯 Automatic Cursor Management Demo (NORMALMODE)\n\
|
|
Welcome to the textarea cursor demo!\n\
|
|
\n\
|
|
This demo runs in NORMALMODE:\n\
|
|
• Always editing (no insert/normal toggle)\n\
|
|
• Cursor is always underscore _\n\
|
|
\n\
|
|
Navigation commands:\n\
|
|
• hjkl or arrow keys: move cursor\n\
|
|
• w/b/e/W/B/E: word movements\n\
|
|
• 0/$: line start/end\n\
|
|
• g/gG: first/last line\n\
|
|
\n\
|
|
Editing commands:\n\
|
|
• x/X: delete characters\n\
|
|
\n\
|
|
Press ? for help, Ctrl+Q to quit.";
|
|
|
|
let mut textarea = TextAreaState::from_text(initial_text);
|
|
textarea.set_placeholder("Start typing...");
|
|
|
|
Self {
|
|
textarea,
|
|
has_unsaved_changes: false,
|
|
debug_message: "🎯 NORMALMODE Demo - always editing".to_string(),
|
|
command_buffer: String::new(),
|
|
}
|
|
}
|
|
|
|
fn handle_textarea_input(&mut self, key: KeyEvent) {
|
|
self.textarea.input(key);
|
|
self.has_unsaved_changes = true;
|
|
}
|
|
|
|
fn move_left(&mut self) {
|
|
self.textarea.move_left();
|
|
self.debug_message = "← left".to_string();
|
|
}
|
|
fn move_right(&mut self) {
|
|
self.textarea.move_right();
|
|
self.debug_message = "→ right".to_string();
|
|
}
|
|
fn move_up(&mut self) {
|
|
self.textarea.move_up();
|
|
self.debug_message = "↑ up".to_string();
|
|
}
|
|
fn move_down(&mut self) {
|
|
self.textarea.move_down();
|
|
self.debug_message = "↓ down".to_string();
|
|
}
|
|
|
|
fn move_word_next(&mut self) {
|
|
self.textarea.move_word_next();
|
|
self.debug_message = "w: next word".to_string();
|
|
}
|
|
fn move_word_prev(&mut self) {
|
|
self.textarea.move_word_prev();
|
|
self.debug_message = "b: previous word".to_string();
|
|
}
|
|
fn move_word_end(&mut self) {
|
|
self.textarea.move_word_end();
|
|
self.debug_message = "e: word end".to_string();
|
|
}
|
|
fn move_word_end_prev(&mut self) {
|
|
self.textarea.move_word_end_prev();
|
|
self.debug_message = "ge: previous word end".to_string();
|
|
}
|
|
|
|
fn move_line_start(&mut self) {
|
|
self.textarea.move_line_start();
|
|
self.debug_message = "0: line start".to_string();
|
|
}
|
|
fn move_line_end(&mut self) {
|
|
self.textarea.move_line_end();
|
|
self.debug_message = "$: line end".to_string();
|
|
}
|
|
fn move_first_line(&mut self) {
|
|
self.textarea.move_first_line();
|
|
self.debug_message = "gg: first line".to_string();
|
|
}
|
|
fn move_last_line(&mut self) {
|
|
self.textarea.move_last_line();
|
|
self.debug_message = "G: last line".to_string();
|
|
}
|
|
|
|
fn delete_char_forward(&mut self) {
|
|
if let Ok(_) = self.textarea.delete_forward() {
|
|
self.has_unsaved_changes = true;
|
|
self.debug_message = "x: deleted character".to_string();
|
|
}
|
|
}
|
|
fn delete_char_backward(&mut self) {
|
|
if let Ok(_) = self.textarea.delete_backward() {
|
|
self.has_unsaved_changes = true;
|
|
self.debug_message = "X: deleted character backward".to_string();
|
|
}
|
|
}
|
|
|
|
fn clear_command_buffer(&mut self) {
|
|
self.command_buffer.clear();
|
|
}
|
|
fn add_to_command_buffer(&mut self, ch: char) {
|
|
self.command_buffer.push(ch);
|
|
}
|
|
fn get_command_buffer(&self) -> &str {
|
|
&self.command_buffer
|
|
}
|
|
fn has_pending_command(&self) -> bool {
|
|
!self.command_buffer.is_empty()
|
|
}
|
|
|
|
fn debug_message(&self) -> &str {
|
|
&self.debug_message
|
|
}
|
|
fn set_debug_message(&mut self, msg: String) {
|
|
self.debug_message = msg;
|
|
}
|
|
fn has_unsaved_changes(&self) -> bool {
|
|
self.has_unsaved_changes
|
|
}
|
|
fn get_cursor_info(&self) -> String {
|
|
format!(
|
|
"Line {}, Col {}",
|
|
self.textarea.current_field() + 1,
|
|
self.textarea.cursor_position() + 1
|
|
)
|
|
}
|
|
|
|
// === BIG WORD MOVEMENTS ===
|
|
|
|
fn move_big_word_next(&mut self) {
|
|
self.textarea.move_big_word_next();
|
|
self.debug_message = "W: next WORD".to_string();
|
|
}
|
|
|
|
fn move_big_word_prev(&mut self) {
|
|
self.textarea.move_big_word_prev();
|
|
self.debug_message = "B: previous WORD".to_string();
|
|
}
|
|
|
|
fn move_big_word_end(&mut self) {
|
|
self.textarea.move_big_word_end();
|
|
self.debug_message = "E: WORD end".to_string();
|
|
}
|
|
|
|
fn move_big_word_end_prev(&mut self) {
|
|
self.textarea.move_big_word_end_prev();
|
|
self.debug_message = "gE: previous WORD end".to_string();
|
|
}
|
|
}
|
|
|
|
/// Handle key press in NORMALMODE (always editing, casual editor style)
|
|
fn handle_key_press(
|
|
key_event: KeyEvent,
|
|
editor: &mut AutoCursorTextArea,
|
|
) -> anyhow::Result<bool> {
|
|
let KeyEvent {
|
|
code: key,
|
|
modifiers,
|
|
..
|
|
} = key_event;
|
|
|
|
// Quit
|
|
if (key == KeyCode::Char('q') && modifiers.contains(KeyModifiers::CONTROL))
|
|
|| (key == KeyCode::Char('c') && modifiers.contains(KeyModifiers::CONTROL))
|
|
|| key == KeyCode::F(10)
|
|
{
|
|
return Ok(false);
|
|
}
|
|
|
|
match (key, modifiers) {
|
|
// Movement
|
|
(KeyCode::Left, _) => editor.move_left(),
|
|
(KeyCode::Right, _) => editor.move_right(),
|
|
(KeyCode::Up, _) => editor.move_up(),
|
|
(KeyCode::Down, _) => editor.move_down(),
|
|
|
|
// Word movement (Ctrl+Arrows)
|
|
(KeyCode::Left, m) if m.contains(KeyModifiers::CONTROL) => editor.move_word_prev(),
|
|
(KeyCode::Right, m) if m.contains(KeyModifiers::CONTROL) => editor.move_word_next(),
|
|
(KeyCode::Right, m) if m.contains(KeyModifiers::CONTROL | KeyModifiers::SHIFT) => {
|
|
editor.move_word_end()
|
|
}
|
|
|
|
// Line/document movement
|
|
(KeyCode::Home, _) => editor.move_line_start(),
|
|
(KeyCode::End, _) => editor.move_line_end(),
|
|
(KeyCode::Home, m) if m.contains(KeyModifiers::CONTROL) => editor.move_first_line(),
|
|
(KeyCode::End, m) if m.contains(KeyModifiers::CONTROL) => editor.move_last_line(),
|
|
|
|
// Delete
|
|
(KeyCode::Delete, _) => editor.delete_char_forward(),
|
|
(KeyCode::Backspace, _) => editor.delete_char_backward(),
|
|
|
|
// Debug/info
|
|
(KeyCode::Char('?'), _) => {
|
|
editor.set_debug_message(format!(
|
|
"{}, Mode: NORMALMODE (casual editor, underscore cursor)",
|
|
editor.get_cursor_info()
|
|
));
|
|
editor.clear_command_buffer();
|
|
}
|
|
|
|
// Default: treat as text input
|
|
_ => editor.handle_textarea_input(key_event),
|
|
}
|
|
|
|
Ok(true)
|
|
}
|
|
|
|
fn run_app<B: Backend>(terminal: &mut Terminal<B>, mut editor: AutoCursorTextArea) -> io::Result<()> {
|
|
loop {
|
|
terminal.draw(|f| ui(f, &mut editor))?;
|
|
|
|
if let Event::Key(key) = event::read()? {
|
|
match handle_key_press(key, &mut editor) {
|
|
Ok(should_continue) => {
|
|
if !should_continue {
|
|
break;
|
|
}
|
|
}
|
|
Err(e) => {
|
|
editor.set_debug_message(format!("Error: {}", e));
|
|
}
|
|
}
|
|
}
|
|
}
|
|
Ok(())
|
|
}
|
|
|
|
fn ui(f: &mut Frame, editor: &mut AutoCursorTextArea) {
|
|
let chunks = Layout::default()
|
|
.direction(Direction::Vertical)
|
|
.constraints([Constraint::Min(8), Constraint::Length(8)])
|
|
.split(f.area());
|
|
|
|
render_textarea(f, chunks[0], editor);
|
|
render_status_and_help(f, chunks[1], editor);
|
|
}
|
|
|
|
fn render_textarea(f: &mut Frame, area: ratatui::layout::Rect, editor: &mut AutoCursorTextArea) {
|
|
let block = Block::default()
|
|
.borders(Borders::ALL)
|
|
.title("🎯 Textarea with NORMALMODE (always editing)");
|
|
|
|
let textarea_widget = TextArea::default().block(block.clone());
|
|
f.render_stateful_widget(textarea_widget, area, &mut editor.textarea);
|
|
|
|
let (cx, cy) = editor.textarea.cursor(area, Some(&block));
|
|
f.set_cursor_position((cx, cy));
|
|
}
|
|
|
|
fn render_status_and_help(f: &mut Frame, area: ratatui::layout::Rect, editor: &AutoCursorTextArea) {
|
|
let chunks = Layout::default()
|
|
.direction(Direction::Vertical)
|
|
.constraints([Constraint::Length(3), Constraint::Length(5)])
|
|
.split(area);
|
|
|
|
let status_text = if editor.has_pending_command() {
|
|
format!(
|
|
"-- NORMALMODE (underscore cursor) -- {} [{}]",
|
|
editor.debug_message(),
|
|
editor.get_command_buffer()
|
|
)
|
|
} else if editor.has_unsaved_changes() {
|
|
format!(
|
|
"-- NORMALMODE (underscore cursor) -- [Modified] {} | {}",
|
|
editor.debug_message(),
|
|
editor.get_cursor_info()
|
|
)
|
|
} else {
|
|
format!(
|
|
"-- NORMALMODE (underscore cursor) -- {} | {}",
|
|
editor.debug_message(),
|
|
editor.get_cursor_info()
|
|
)
|
|
};
|
|
|
|
let status = Paragraph::new(Line::from(Span::raw(status_text)))
|
|
.block(Block::default().borders(Borders::ALL).title("🎯 Cursor Status"));
|
|
|
|
f.render_widget(status, chunks[0]);
|
|
|
|
let help_text = "🎯 NORMALMODE (always editing)\n\
|
|
hjkl/arrows=move, w/b/e=words, W/B/E=WORDS, 0/$=line, g/G=first/last\n\
|
|
x/X=delete, typing inserts text\n\
|
|
?=info, Ctrl+Q=quit";
|
|
|
|
let help = Paragraph::new(help_text)
|
|
.block(Block::default().borders(Borders::ALL).title("🚀 Help"))
|
|
.style(Style::default().fg(Color::Gray));
|
|
|
|
f.render_widget(help, chunks[1]);
|
|
}
|
|
|
|
fn main() -> Result<(), Box<dyn std::error::Error>> {
|
|
println!("🎯 Canvas Textarea Cursor Auto Demo (NORMALMODE)");
|
|
println!("✅ cursor-style feature: ENABLED");
|
|
println!("✅ textarea feature: ENABLED");
|
|
println!("✅ textmode-normal feature: ENABLED");
|
|
println!("🚀 Always editing, underscore cursor active");
|
|
println!();
|
|
|
|
enable_raw_mode()?;
|
|
let mut stdout = io::stdout();
|
|
execute!(stdout, EnterAlternateScreen, EnableMouseCapture)?;
|
|
let backend = CrosstermBackend::new(stdout);
|
|
let mut terminal = Terminal::new(backend)?;
|
|
|
|
let editor = AutoCursorTextArea::new();
|
|
|
|
let res = run_app(&mut terminal, editor);
|
|
|
|
CursorManager::reset()?;
|
|
|
|
disable_raw_mode()?;
|
|
execute!(terminal.backend_mut(), LeaveAlternateScreen, DisableMouseCapture)?;
|
|
terminal.show_cursor()?;
|
|
|
|
if let Err(err) = res {
|
|
println!("{:?}", err);
|
|
}
|
|
|
|
println!("🎯 Cursor automatically reset to default!");
|
|
Ok(())
|
|
}
|