rustic-rs 0.11.2

rustic - fast, encrypted, deduplicated backups powered by Rust
Documentation
use super::{Draw, Event, Frame, KeyCode, KeyEvent, ProcessEvent, Rect, SizedWidget, Style};

use crossterm::event::KeyModifiers;
use tui_textarea::{CursorMove, TextArea};

pub struct TextInput {
    textarea: TextArea<'static>,
    lines: u16,
    changeable: bool,
}

pub enum TextInputResult {
    Cancel,
    Input(String),
    None,
}

impl TextInput {
    pub fn new(text: Option<&str>, initial: &str, lines: u16, changeable: bool) -> Self {
        let mut textarea = TextArea::default();
        textarea.set_style(Style::default());
        if let Some(text) = text {
            textarea.set_placeholder_text(text);
        }
        _ = textarea.insert_str(initial);
        if !changeable {
            textarea.move_cursor(CursorMove::Top);
        }
        Self {
            textarea,
            lines,
            changeable,
        }
    }
}

impl SizedWidget for TextInput {
    fn height(&self) -> Option<u16> {
        Some(self.lines)
    }
}

impl Draw for TextInput {
    fn draw(&mut self, area: Rect, f: &mut Frame<'_>) {
        f.render_widget(&self.textarea, area);
    }
}

impl ProcessEvent for TextInput {
    type Result = TextInputResult;
    fn input(&mut self, event: Event) -> TextInputResult {
        if let Event::Key(key) = event {
            let KeyEvent {
                code, modifiers, ..
            } = key;
            if self.changeable {
                match (code, modifiers) {
                    (KeyCode::Esc, _) => return TextInputResult::Cancel,
                    (KeyCode::Enter, _) if self.lines == 1 => {
                        return TextInputResult::Input(self.textarea.lines().join("\n"));
                    }
                    (KeyCode::Char('s'), KeyModifiers::CONTROL) => {
                        return TextInputResult::Input(self.textarea.lines().join("\n"));
                    }
                    _ => {
                        _ = self.textarea.input(event);
                    }
                }
            } else {
                match (code, modifiers) {
                    (KeyCode::Esc | KeyCode::Enter | KeyCode::Char('q' | 'x'), _) => {
                        return TextInputResult::Cancel;
                    }
                    (KeyCode::Home, _) => {
                        self.textarea.move_cursor(CursorMove::Top);
                    }
                    (KeyCode::End, _) => {
                        self.textarea.move_cursor(CursorMove::Bottom);
                    }
                    (KeyCode::PageDown | KeyCode::PageUp | KeyCode::Up | KeyCode::Down, _) => {
                        _ = self.textarea.input(key);
                    }
                    _ => {}
                }
            }
        }
        TextInputResult::None
    }
}