meli/meli/src/utilities/text.rs

327 lines
11 KiB
Rust

/*
* meli
*
* Copyright 2017-2020 Manos Pitsidianakis
*
* This file is part of meli.
*
* meli is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* meli is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with meli. If not, see <http://www.gnu.org/licenses/>.
*/
use super::*;
use crate::melib::text_processing::Truncate;
pub struct TextField {
inner: UText,
autocomplete: Option<(AutoCompleteFn, Box<AutoComplete>)>,
id: ComponentId,
}
impl std::fmt::Debug for TextField {
fn fmt(&self, fmt: &mut std::fmt::Formatter) -> std::fmt::Result {
fmt.debug_struct(stringify!(TextField))
.field("id", &self.id)
.field("inner", &self.inner)
.field("has AutoComplete", &self.autocomplete.is_some())
.finish()
}
}
impl Default for TextField {
fn default() -> TextField {
Self {
inner: UText::new(String::with_capacity(256)),
autocomplete: None,
id: ComponentId::default(),
}
}
}
impl TextField {
pub fn new(inner: UText, autocomplete: Option<(AutoCompleteFn, Box<AutoComplete>)>) -> Self {
Self {
inner,
autocomplete,
id: ComponentId::default(),
}
}
pub fn as_str(&self) -> &str {
self.inner.as_str()
}
pub fn cursor(&self) -> usize {
self.inner.grapheme_pos()
}
pub fn cursor_inc(&mut self) {
self.inner.cursor_inc();
}
pub fn cursor_dec(&mut self) {
self.inner.cursor_dec();
}
pub fn is_empty(&self) -> bool {
self.as_str().is_empty()
}
pub fn into_string(self) -> String {
self.inner.into_string()
}
pub fn clear(&mut self) {
self.inner.clear()
}
pub fn draw_cursor(
&mut self,
grid: &mut CellBuffer,
area: Area,
secondary_area: Area,
context: &mut Context,
) {
let width = area.width();
let pos = if width < self.inner.grapheme_pos() {
width
} else {
self.inner.grapheme_pos()
};
grid.change_colors(
area.skip_cols(pos).take_cols(1),
crate::conf::value(context, "theme_default").fg,
crate::conf::value(context, "highlight").bg,
);
if self.inner.grapheme_len() <= 2 {
return;
}
if let Some((autocomplete_fn, autocomplete)) = self.autocomplete.as_mut() {
let entries = autocomplete_fn(context, self.inner.as_str());
autocomplete.set_suggestions(entries);
autocomplete.draw(grid, secondary_area, context);
}
}
}
impl Component for TextField {
fn draw(&mut self, grid: &mut CellBuffer, area: Area, context: &mut Context) {
let theme_attr = crate::conf::value(context, "widgets.form.field");
let width = area.width();
let str = self.as_str();
/* Calculate which part of the str is visible
* ##########################################
*
* Example:
* For the string "The quick brown fox jumps over the lazy dog" with visible
* width of field of 10 columns
*
*
* Cursor <= width
* =================
* Cursor at:
*
* The quick brown fox jumps over the lazy dog
*
* cursor
*
* ┌──────────┐
* │The quick │ brown fox jumps over the lazy dog
* └──────────┘
*
* No skip.
*
* Cursor at the end
* =================
* Cursor at:
*
* The quick brown fox jumps over the lazy dog
*
* remainder cursor
* ⇩⇩⇩⇩⇩ ⇩
* +╌╌╌+╭┅┅┅┅┅┅┅┅┅┅╮╭┅┅┅┅┅┅┅┅┅┅╮╭┅┅┅┅┅┅┅┅┅┅╮┌──────────┐
* |The|┊ quick bro┊┊wn fox jum┊┊ps over th┊│e lazy dog│
* +╌╌╌+╰┅┅┅┅┅┅┅┅┅┅╯╰┅┅┅┅┅┅┅┅┅┅╯╰┅┅┅┅┅┅┅┅┅┅╯└──────────┘
* ⇧⇧⇧++⇧⇧⇧⇧⇧⇧⇧⇧⇧⇧++⇧⇧⇧⇧⇧⇧⇧⇧⇧⇧++⇧⇧⇧⇧⇧⇧⇧⇧⇧⇧
* skip offset
*
* Intermediate cursor
* ===================
* Cursor at:
*
* The quick brown fox jumps over the lazy dog
*
* remainder cursor
* ⇩ ⇩
* +╭┅┅┅┅┅┅┅┅┅┅╮╭┅┅┅┅┅┅┅┅┅┅╮┌──────────┐
* T|he quick b┊┊rown fox j┊│umps over │ the lazy dog
* +╰┅┅┅┅┅┅┅┅┅┅╯╰┅┅┅┅┅┅┅┅┅┅╯└──────────┘
* ⇧+⇧⇧⇧⇧⇧⇧⇧⇧⇧⇧++⇧⇧⇧⇧⇧⇧⇧⇧⇧⇧
* skip offset
*/
grid.write_string(
if width < self.inner.grapheme_pos() {
str.trim_left_at_boundary(
width
* self
.inner
.grapheme_pos()
.wrapping_div(width)
.saturating_sub(1)
+ self.inner.grapheme_pos().wrapping_rem(width),
)
} else {
str
},
theme_attr.fg,
theme_attr.bg,
theme_attr.attrs,
area,
None,
);
}
fn process_event(&mut self, event: &mut UIEvent, context: &mut Context) -> bool {
match *event {
UIEvent::InsertInput(Key::Char('\t')) => {
if let Some(suggestion) = self
.autocomplete
.as_mut()
.and_then(|a| a.1.get_suggestion())
{
self.inner = UText::new(suggestion);
let len = self.inner.as_str().len();
self.inner.set_cursor(len);
} else {
self.inner.insert_char(' ');
}
}
UIEvent::InsertInput(Key::Char('\n')) => {
if let Some(suggestion) = self
.autocomplete
.as_mut()
.and_then(|a| a.1.get_suggestion())
{
self.inner = UText::new(suggestion);
let len = self.inner.as_str().len();
self.inner.set_cursor(len);
}
context
.replies
.push_back(UIEvent::ChangeMode(UIMode::Normal));
}
UIEvent::InsertInput(Key::Up) => {
if let Some(ac) = self.autocomplete.as_mut() {
ac.1.dec_cursor();
} else {
return false;
}
}
UIEvent::InsertInput(Key::Down) => {
if let Some(ac) = self.autocomplete.as_mut() {
ac.1.inc_cursor();
} else {
return false;
}
}
UIEvent::InsertInput(Key::Right) => {
self.inner.cursor_inc();
}
UIEvent::InsertInput(Key::Left) => {
self.inner.cursor_dec();
}
UIEvent::InsertInput(Key::Char(k)) => {
self.inner.insert_char(k);
}
UIEvent::InsertInput(Key::Paste(ref p)) => {
for c in p.chars() {
self.inner.insert_char(c);
}
}
UIEvent::InsertInput(Key::Alt('b')) => { /* Meta+B Backward one word */ }
UIEvent::InsertInput(Key::Backspace) | UIEvent::InsertInput(Key::Ctrl('h')) => {
/* Ctrl+H Delete previous character */
self.inner.backspace();
if let Some(ac) = self.autocomplete.as_mut() {
ac.1.set_suggestions(Vec::new());
}
}
UIEvent::InsertInput(Key::Ctrl('t')) => {
/* Ctrl+T Transpose characters */
self.inner.set_cursor(0);
}
UIEvent::InsertInput(Key::Ctrl('a')) => {
/* Beginning of line */
self.inner.set_cursor(0);
}
UIEvent::InsertInput(Key::Ctrl('b')) => {
/* Backward one character */
self.inner.cursor_dec();
}
UIEvent::InsertInput(Key::Ctrl('d')) => {
/* Delete one character */
self.inner.cursor_dec();
}
UIEvent::InsertInput(Key::Ctrl('f')) => {
/* Ctrl+F / → Forward one character */
self.inner.cursor_inc();
}
UIEvent::InsertInput(Key::Ctrl('w')) => {
/* Cut previous word */
while self.inner.as_str()[..self.inner.cursor_pos()]
.last_grapheme()
.map(|(_, graph)| !graph.is_empty() && graph.trim().is_empty())
.unwrap_or(false)
{
self.inner.backspace();
}
while self.inner.as_str()[..self.inner.cursor_pos()]
.last_grapheme()
.map(|(_, graph)| !graph.is_empty() && !graph.trim().is_empty())
.unwrap_or(false)
{
self.inner.backspace();
}
}
UIEvent::InsertInput(Key::Ctrl('u')) => self.inner.cut_left(),
UIEvent::InsertInput(Key::Ctrl('e')) => {
/* Ctrl+E End of line */
self.inner.set_cursor(self.inner.as_str().len());
}
/* [ref:TODO]: add rest of readline shortcuts */
_ => {
return false;
}
}
self.set_dirty(true);
true
}
fn is_dirty(&self) -> bool {
false
}
fn set_dirty(&mut self, _value: bool) {}
fn id(&self) -> ComponentId {
self.id
}
}
impl std::fmt::Display for TextField {
fn fmt(&self, f: &mut std::fmt::Formatter) -> std::fmt::Result {
write!(f, "{}", self.as_str(),)
}
}