use unicode_segmentation::UnicodeSegmentation; use unicode_width::UnicodeWidthStr; use odds::vec::VecExt; use {Printer, With, XY}; use direction::Direction; use vec::Vec2; use event::{Event, EventResult, Key}; use utils::{LinesIterator, Row, prefix_length}; use view::{ScrollBase, SizeCache, View}; use theme::{ColorStyle, Effect}; /// Multi-lines text editor. /// /// A `TextArea` by itself doesn't have a well-defined size. /// You should wrap it in a `BoxView` to control its size. pub struct TextArea { // TODO: use a smarter data structure (rope?) content: String, /// Byte offsets within `content` representing text rows rows: Vec, /// When `false`, we don't take any input. enabled: bool, /// Base for scrolling features scrollbase: ScrollBase, /// Cache to avoid re-computing layout on no-op events last_size: Option>, /// Byte offset of the currently selected grapheme. cursor: usize, } fn make_rows(text: &str, width: usize) -> Vec { LinesIterator::new(text, width) .show_spaces() .collect() } impl TextArea { /// Creates a new, empty TextArea. pub fn new() -> Self { TextArea { content: String::new(), rows: vec![Row { start: 0, end: 0, width: 0, }], enabled: true, scrollbase: ScrollBase::new().right_padding(0), last_size: None, cursor: 0, } } /// Retrieves the content of the view. pub fn get_content(&self) -> &str { &self.content } fn invalidate(&mut self) { self.last_size = None; } /// Sets the content of the view. pub fn set_content>(&mut self, content: S) { self.content = content.into(); if let Some(size) = self.last_size.map(|s| s.map(|s| s.value)) { self.compute_rows(size); } } /// Sets the content of the view. /// /// Chainable variant. pub fn content>(self, content: S) -> Self { self.with(|s| s.set_content(content)) } /// Finds the row containing the grapheme at the given offset fn row_at(&self, offset: usize) -> usize { // println_stderr!("Offset: {}", offset); self.rows .iter() .enumerate() .take_while(|&(_, row)| row.start <= offset) .map(|(i, _)| i) .last() .unwrap() } fn col_at(&self, offset: usize) -> usize { let row_id = self.row_at(offset); let row = self.rows[row_id]; // Number of cells to the left of the cursor self.content[row.start..offset].width() } /// Finds the row containing the cursor fn selected_row(&self) -> usize { self.row_at(self.cursor) } fn page_up(&mut self) { for _ in 0..5 { self.move_up(); } } fn page_down(&mut self) { for _ in 0..5 { self.move_down(); } } fn move_up(&mut self) { let row_id = self.selected_row(); if row_id == 0 { return; } // Number of cells to the left of the cursor let x = self.col_at(self.cursor); let prev_row = self.rows[row_id - 1]; let prev_text = &self.content[prev_row.start..prev_row.end]; let offset = prefix_length(prev_text.graphemes(true), x, ""); self.cursor = prev_row.start + offset; } fn move_down(&mut self) { let row_id = self.selected_row(); if row_id + 1 == self.rows.len() { return; } let x = self.col_at(self.cursor); let next_row = self.rows[row_id + 1]; let next_text = &self.content[next_row.start..next_row.end]; let offset = prefix_length(next_text.graphemes(true), x, ""); self.cursor = next_row.start + offset; } /// Moves the cursor to the left. /// /// Wraps the previous line if required. fn move_left(&mut self) { let len = { // We don't want to utf8-parse the entire content. // So restrict to the last row. let mut row = self.selected_row(); if self.rows[row].start == self.cursor { row -= 1; } let text = &self.content[self.rows[row].start..self.cursor]; text.graphemes(true) .last() .unwrap() .len() }; self.cursor -= len; } /// Moves the cursor to the right. /// /// Jumps to the next line is required. fn move_right(&mut self) { let len = self.content[self.cursor..] .graphemes(true) .next() .unwrap() .len(); self.cursor += len; } fn is_cache_valid(&self, size: Vec2) -> bool { match self.last_size { None => false, Some(ref last) => last.x.accept(size.x) && last.y.accept(size.y), } } fn fix_ghost_row(&mut self) { if self.rows.is_empty() || self.rows.last().unwrap().end != self.content.len() { // Add a fake, empty row at the end. self.rows.push(Row { start: self.content.len(), end: self.content.len(), width: 0, }); } } fn compute_rows(&mut self, size: Vec2) { if self.is_cache_valid(size) { return; } // println_stderr!("Computing! Oh yeah!"); let mut available = size.x; self.rows = make_rows(&self.content, available); self.fix_ghost_row(); if self.rows.len() > size.y { available -= 1; // Doh :( self.rows = make_rows(&self.content, available); self.fix_ghost_row(); } if !self.rows.is_empty() { self.last_size = Some(SizeCache::build(size, size)); } } fn backspace(&mut self) { if self.cursor != 0 { self.move_left(); self.delete(); } } fn delete(&mut self) { if self.cursor == self.content.len() { return; } // println_stderr!("Rows: {:?}", self.rows); let len = self.content[self.cursor..] .graphemes(true) .next() .unwrap() .len(); let start = self.cursor; let end = self.cursor + len; // println_stderr!("Start/end: {}/{}", start, end); // println_stderr!("Content: `{}`", self.content); for _ in self.content.drain(start..end) {} // println_stderr!("Content: `{}`", self.content); let selected_row = self.selected_row(); // println_stderr!("Selected row: {}", selected_row); if self.cursor == self.rows[selected_row].end { // We're removing an (implicit) newline. // This means merging two rows. let new_end = self.rows[selected_row + 1].end; self.rows[selected_row].end = new_end; self.rows.remove(selected_row + 1); } self.rows[selected_row].end -= len; // update all the rows downstream for row in &mut self.rows.iter_mut().skip(1 + selected_row) { row.rev_shift(len); } // println_stderr!("Rows: {:?}", self.rows); self.fix_damages(); // println_stderr!("Rows: {:?}", self.rows); } fn insert(&mut self, ch: char) { // First, we inject the data, but keep the cursor unmoved // (So the cursor is to the left of the injected char) self.content.insert(self.cursor, ch); // Then, we shift the indexes of every row after this one. let shift = ch.len_utf8(); // The current row grows, every other is just shifted. let selected_row = self.selected_row(); self.rows[selected_row].end += shift; for row in &mut self.rows.iter_mut().skip(1 + selected_row) { row.shift(shift); } self.cursor += shift; // Finally, rows may not have the correct width anymore, so fix them. self.fix_damages(); } /// Fix a damage located at the cursor. /// /// The only damages are assumed to have occured around the cursor. fn fix_damages(&mut self) { if self.last_size.is_none() { // If we don't know our size, it means we'll get a layout command soon. // So no need to do that here. return; } let size = self.last_size.unwrap().map(|s| s.value); // Find affected text. // We know the damage started at this row, so it'll need to go. let mut first_row = self.selected_row(); // Actually, if possible, also re-compute the previous row. // Indeed, the previous row may have been cut short, and if we now // break apart a big word, maybe the first half can go up one level. if first_row > 0 { first_row -= 1; } // The let first_byte = self.rows[first_row].start; // We don't need to go beyond a newline. // If we don't find one, end of the text it is. // println_stderr!("Cursor: {}", self.cursor); let last_byte = self.content[self.cursor..] .find('\n') .map(|i| 1 + i + self.cursor); let last_row = last_byte.map_or(self.rows.len(), |last_byte| self.row_at(last_byte)); let last_byte = last_byte.unwrap_or(self.content.len()); // println_stderr!("Content: `{}` (len={})", // self.content, // self.content.len()); // println_stderr!("start/end: {}/{}", first_byte, last_byte); // println_stderr!("start/end rows: {}/{}", first_row, last_row); // Do we have access to the entire width?... let mut available = size.x; let scrollable = self.rows.len() > size.y; if scrollable { // ... not if a scrollbar is there available -= 1; } // First attempt, if scrollbase status didn't change. // println_stderr!("Rows: {:?}", self.rows); let new_rows = make_rows(&self.content[first_byte..last_byte], available); // How much did this add? // println_stderr!("New rows: {:?}", new_rows); // println_stderr!("{}-{}", first_row, last_row); let new_row_count = self.rows.len() + new_rows.len() + first_row - last_row; if !scrollable && new_row_count > size.y { // We just changed scrollable status. // This changes everything. // TODO: compute_rows() currently makes a scroll-less attempt. // Here, we know it's just no gonna happen. self.invalidate(); self.compute_rows(size); self.scrollbase.set_heights(size.y, self.rows.len()); return; } // Otherwise, replace stuff. let affected_rows = first_row..last_row; let replacement_rows = new_rows.into_iter() .map(|row| row.shifted(first_byte)); self.rows.splice(affected_rows, replacement_rows); self.fix_ghost_row(); self.scrollbase.set_heights(size.y, self.rows.len()); } } impl View for TextArea { fn draw(&self, printer: &Printer) { printer.with_color(ColorStyle::Secondary, |printer| { let effect = if self.enabled { Effect::Reverse } else { Effect::Simple }; let w = if self.scrollbase.scrollable() { printer.size.x - 1 } else { printer.size.x }; printer.with_effect(effect, |printer| { for y in 0..printer.size.y { printer.print_hline((0, y), w, " "); } }); // println_stderr!("Content: `{}`", &self.content); self.scrollbase.draw(printer, |printer, i| { // println_stderr!("Drawing row {}", i); let row = &self.rows[i]; // println_stderr!("row: {:?}", row); let text = &self.content[row.start..row.end]; // println_stderr!("row text: `{}`", text); printer.with_effect(effect, |printer| { printer.print((0, 0), text); }); if printer.focused && i == self.selected_row() { let cursor_offset = self.cursor - row.start; let c = if cursor_offset == text.len() { "_" } else { text[cursor_offset..] .graphemes(true) .next() .expect("Found no char!") }; let offset = text[..cursor_offset].width(); printer.print((offset, 0), c); } }); }); } fn on_event(&mut self, event: Event) -> EventResult { match event { Event::Char(ch) => self.insert(ch), Event::Key(Key::Enter) => self.insert('\n'), Event::Key(Key::Backspace) if self.cursor > 0 => self.backspace(), Event::Key(Key::Del) if self.cursor < self.content.len() => { self.delete() } Event::Key(Key::End) => { let row = self.selected_row(); self.cursor = self.rows[row].end; if row + 1 < self.rows.len() && self.cursor == self.rows[row + 1].start { self.move_left(); } } Event::Ctrl(Key::Home) => self.cursor = 0, Event::Ctrl(Key::End) => self.cursor = self.content.len(), Event::Key(Key::Home) => { self.cursor = self.rows[self.selected_row()].start } Event::Key(Key::Up) if self.selected_row() > 0 => self.move_up(), Event::Key(Key::Down) if self.selected_row() + 1 < self.rows.len() => self.move_down(), Event::Key(Key::PageUp) => self.page_up(), Event::Key(Key::PageDown) => self.page_down(), Event::Key(Key::Left) if self.cursor > 0 => self.move_left(), Event::Key(Key::Right) if self.cursor < self.content.len() => { self.move_right() } _ => return EventResult::Ignored, } // println_stderr!("Rows: {:?}", self.rows); let focus = self.selected_row(); self.scrollbase.scroll_to(focus); EventResult::Consumed(None) } fn take_focus(&mut self, _: Direction) -> bool { self.enabled } fn layout(&mut self, size: Vec2) { self.compute_rows(size); self.scrollbase.set_heights(size.y, self.rows.len()); } }