2020-12-17 10:08:16 +01:00
|
|
|
use crate::compositor::{Component, Compositor, Context, EventResult};
|
|
|
|
use crossterm::event::{Event, KeyCode, KeyEvent, KeyModifiers};
|
|
|
|
use tui::buffer::Buffer as Surface;
|
|
|
|
use tui::{
|
|
|
|
layout::Rect,
|
|
|
|
style::{Color, Style},
|
|
|
|
widgets::{Block, Borders},
|
|
|
|
};
|
|
|
|
|
|
|
|
use fuzzy_matcher::skim::SkimMatcherV2 as Matcher;
|
|
|
|
use fuzzy_matcher::FuzzyMatcher;
|
|
|
|
|
2020-12-21 09:58:54 +01:00
|
|
|
use std::borrow::Cow;
|
|
|
|
|
2020-12-17 10:08:16 +01:00
|
|
|
use crate::ui::{Prompt, PromptEvent};
|
|
|
|
use helix_core::Position;
|
|
|
|
use helix_view::Editor;
|
|
|
|
|
2020-12-18 11:19:50 +01:00
|
|
|
pub struct Picker<T> {
|
|
|
|
options: Vec<T>,
|
2020-12-17 10:08:16 +01:00
|
|
|
// filter: String,
|
|
|
|
matcher: Box<Matcher>,
|
2020-12-18 08:43:15 +01:00
|
|
|
/// (index, score)
|
|
|
|
matches: Vec<(usize, i64)>,
|
2020-12-17 10:08:16 +01:00
|
|
|
|
|
|
|
cursor: usize,
|
|
|
|
// pattern: String,
|
|
|
|
prompt: Prompt,
|
|
|
|
|
2020-12-21 09:58:54 +01:00
|
|
|
format_fn: Box<dyn Fn(&T) -> Cow<str>>,
|
2020-12-18 11:19:50 +01:00
|
|
|
callback_fn: Box<dyn Fn(&mut Editor, &T)>,
|
|
|
|
}
|
2020-12-17 10:08:16 +01:00
|
|
|
|
2020-12-18 11:19:50 +01:00
|
|
|
impl<T> Picker<T> {
|
|
|
|
pub fn new(
|
|
|
|
options: Vec<T>,
|
2020-12-21 09:58:54 +01:00
|
|
|
format_fn: impl Fn(&T) -> Cow<str> + 'static,
|
2020-12-18 11:19:50 +01:00
|
|
|
callback_fn: impl Fn(&mut Editor, &T) + 'static,
|
|
|
|
) -> Self {
|
2020-12-17 10:08:16 +01:00
|
|
|
let prompt = Prompt::new(
|
|
|
|
"".to_string(),
|
|
|
|
|pattern: &str| Vec::new(),
|
|
|
|
|editor: &mut Editor, pattern: &str, event: PromptEvent| {
|
|
|
|
//
|
|
|
|
},
|
|
|
|
);
|
|
|
|
|
2020-12-18 08:43:15 +01:00
|
|
|
let mut picker = Self {
|
2020-12-18 11:19:50 +01:00
|
|
|
options,
|
2020-12-17 10:08:16 +01:00
|
|
|
matcher: Box::new(Matcher::default()),
|
2020-12-18 08:43:15 +01:00
|
|
|
matches: Vec::new(),
|
2020-12-17 10:08:16 +01:00
|
|
|
cursor: 0,
|
|
|
|
prompt,
|
2020-12-18 11:19:50 +01:00
|
|
|
format_fn: Box::new(format_fn),
|
|
|
|
callback_fn: Box::new(callback_fn),
|
2020-12-18 08:43:15 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
// TODO: scoring on empty input should just use a fastpath
|
|
|
|
picker.score();
|
|
|
|
|
|
|
|
picker
|
2020-12-17 10:08:16 +01:00
|
|
|
}
|
|
|
|
|
2020-12-18 08:43:15 +01:00
|
|
|
pub fn score(&mut self) {
|
|
|
|
// need to borrow via pattern match otherwise it complains about simultaneous borrow
|
|
|
|
let Self {
|
2020-12-18 11:19:50 +01:00
|
|
|
ref mut options,
|
2020-12-18 08:43:15 +01:00
|
|
|
ref mut matcher,
|
|
|
|
ref mut matches,
|
2020-12-18 11:19:50 +01:00
|
|
|
ref format_fn,
|
2020-12-18 08:43:15 +01:00
|
|
|
..
|
|
|
|
} = *self;
|
|
|
|
|
|
|
|
let pattern = &self.prompt.line;
|
|
|
|
|
|
|
|
// reuse the matches allocation
|
|
|
|
matches.clear();
|
2020-12-18 11:19:50 +01:00
|
|
|
matches.extend(
|
|
|
|
self.options
|
|
|
|
.iter()
|
|
|
|
.enumerate()
|
|
|
|
.filter_map(|(index, option)| {
|
|
|
|
// TODO: maybe using format_fn isn't the best idea here
|
|
|
|
let text = (format_fn)(option);
|
|
|
|
// TODO: using fuzzy_indices could give us the char idx for match highlighting
|
|
|
|
matcher
|
2020-12-21 09:58:54 +01:00
|
|
|
.fuzzy_match(&text, pattern)
|
2020-12-18 11:19:50 +01:00
|
|
|
.map(|score| (index, score))
|
|
|
|
}),
|
|
|
|
);
|
2020-12-18 08:43:15 +01:00
|
|
|
matches.sort_unstable_by_key(|(_, score)| -score);
|
|
|
|
|
|
|
|
// reset cursor position
|
|
|
|
self.cursor = 0;
|
2020-12-17 10:08:16 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
pub fn move_up(&mut self) {
|
|
|
|
self.cursor = self.cursor.saturating_sub(1);
|
|
|
|
}
|
|
|
|
|
|
|
|
pub fn move_down(&mut self) {
|
|
|
|
// TODO: len - 1
|
2020-12-18 11:19:50 +01:00
|
|
|
if self.cursor < self.options.len() {
|
2020-12-17 10:08:16 +01:00
|
|
|
self.cursor += 1;
|
|
|
|
}
|
|
|
|
}
|
2020-12-18 08:43:15 +01:00
|
|
|
|
2020-12-18 11:19:50 +01:00
|
|
|
pub fn selection(&self) -> Option<&T> {
|
2020-12-18 08:43:15 +01:00
|
|
|
self.matches
|
|
|
|
.get(self.cursor)
|
2020-12-18 11:19:50 +01:00
|
|
|
.map(|(index, _score)| &self.options[*index])
|
2020-12-18 08:43:15 +01:00
|
|
|
}
|
2020-12-17 10:08:16 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
// process:
|
|
|
|
// - read all the files into a list, maxed out at a large value
|
|
|
|
// - on input change:
|
|
|
|
// - score all the names in relation to input
|
|
|
|
|
2020-12-18 11:19:50 +01:00
|
|
|
impl<T> Component for Picker<T> {
|
2020-12-17 10:08:16 +01:00
|
|
|
fn handle_event(&mut self, event: Event, cx: &mut Context) -> EventResult {
|
|
|
|
let key_event = match event {
|
|
|
|
Event::Key(event) => event,
|
|
|
|
Event::Resize(..) => return EventResult::Consumed(None),
|
|
|
|
_ => return EventResult::Ignored,
|
|
|
|
};
|
|
|
|
|
2020-12-21 08:23:05 +01:00
|
|
|
let close_fn = EventResult::Consumed(Some(Box::new(
|
|
|
|
|compositor: &mut Compositor, editor: &mut Editor| {
|
|
|
|
// remove the layer
|
|
|
|
compositor.pop();
|
|
|
|
},
|
|
|
|
)));
|
2020-12-17 10:08:16 +01:00
|
|
|
|
|
|
|
match key_event {
|
|
|
|
// KeyEvent {
|
|
|
|
// code: KeyCode::Char(c),
|
|
|
|
// modifiers: KeyModifiers::NONE,
|
|
|
|
// } => {
|
|
|
|
// self.insert_char(c);
|
|
|
|
// (self.callback_fn)(cx.editor, &self.line, PromptEvent::Update);
|
|
|
|
// }
|
|
|
|
KeyEvent {
|
|
|
|
code: KeyCode::Up, ..
|
|
|
|
}
|
|
|
|
| KeyEvent {
|
|
|
|
code: KeyCode::Char('k'),
|
|
|
|
modifiers: KeyModifiers::CONTROL,
|
|
|
|
} => self.move_up(),
|
|
|
|
KeyEvent {
|
|
|
|
code: KeyCode::Down,
|
|
|
|
..
|
|
|
|
}
|
|
|
|
| KeyEvent {
|
|
|
|
code: KeyCode::Char('j'),
|
|
|
|
modifiers: KeyModifiers::CONTROL,
|
|
|
|
} => self.move_down(),
|
|
|
|
KeyEvent {
|
|
|
|
code: KeyCode::Esc, ..
|
|
|
|
} => {
|
|
|
|
return close_fn;
|
2020-12-18 09:16:04 +01:00
|
|
|
}
|
|
|
|
KeyEvent {
|
|
|
|
code: KeyCode::Enter,
|
|
|
|
..
|
|
|
|
} => {
|
2020-12-18 11:19:50 +01:00
|
|
|
if let Some(option) = self.selection() {
|
|
|
|
(self.callback_fn)(&mut cx.editor, option);
|
2020-12-18 09:16:04 +01:00
|
|
|
}
|
|
|
|
return close_fn;
|
2020-12-17 10:08:16 +01:00
|
|
|
}
|
2020-12-18 08:43:15 +01:00
|
|
|
_ => {
|
2021-01-08 08:31:19 +01:00
|
|
|
if let EventResult::Consumed(_) = self.prompt.handle_event(event, cx) {
|
|
|
|
// TODO: recalculate only if pattern changed
|
|
|
|
self.score();
|
2020-12-18 08:43:15 +01:00
|
|
|
}
|
|
|
|
}
|
2020-12-17 10:08:16 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
EventResult::Consumed(None)
|
|
|
|
}
|
|
|
|
|
|
|
|
fn render(&self, area: Rect, surface: &mut Surface, cx: &mut Context) {
|
|
|
|
let padding_vertical = area.height * 20 / 100;
|
|
|
|
let padding_horizontal = area.width * 20 / 100;
|
|
|
|
|
|
|
|
let area = Rect::new(
|
|
|
|
area.x + padding_horizontal,
|
|
|
|
area.y + padding_vertical,
|
|
|
|
area.width - padding_horizontal * 2,
|
|
|
|
area.height - padding_vertical * 2,
|
|
|
|
);
|
|
|
|
|
|
|
|
// -- Render the frame:
|
|
|
|
|
2020-12-23 08:20:49 +01:00
|
|
|
// clear area
|
2020-12-22 08:48:34 +01:00
|
|
|
let background = cx.editor.theme.get("ui.background");
|
2020-12-17 10:08:16 +01:00
|
|
|
for y in area.top()..area.bottom() {
|
|
|
|
for x in area.left()..area.right() {
|
2020-12-22 08:48:34 +01:00
|
|
|
let cell = surface.get_mut(x, y);
|
2020-12-23 08:20:49 +01:00
|
|
|
cell.reset();
|
|
|
|
// cell.symbol.clear();
|
2020-12-22 08:48:34 +01:00
|
|
|
cell.set_style(background);
|
2020-12-17 10:08:16 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
use tui::widgets::Widget;
|
|
|
|
// don't like this but the lifetime sucks
|
|
|
|
let block = Block::default().borders(Borders::ALL);
|
|
|
|
|
|
|
|
// calculate the inner area inside the box
|
|
|
|
let inner = block.inner(area);
|
|
|
|
|
|
|
|
block.render(area, surface);
|
|
|
|
// TODO: abstract into a clear(area) fn
|
|
|
|
// surface.set_style(inner, Style::default().bg(Color::Rgb(150, 50, 0)));
|
|
|
|
|
|
|
|
// -- Render the input bar:
|
|
|
|
|
|
|
|
let area = Rect::new(inner.x + 1, inner.y, inner.width - 1, 1);
|
|
|
|
self.prompt.render(area, surface, cx);
|
|
|
|
|
|
|
|
// -- Separator
|
|
|
|
use tui::widgets::BorderType;
|
|
|
|
let style = Style::default().fg(Color::Rgb(90, 89, 119));
|
|
|
|
let symbols = BorderType::line_symbols(BorderType::Plain);
|
|
|
|
for x in inner.left()..inner.right() {
|
|
|
|
surface
|
|
|
|
.get_mut(x, inner.y + 1)
|
|
|
|
.set_symbol(symbols.horizontal)
|
|
|
|
.set_style(style);
|
|
|
|
}
|
|
|
|
|
|
|
|
// -- Render the contents:
|
|
|
|
|
|
|
|
let style = Style::default().fg(Color::Rgb(164, 160, 232)); // lavender
|
|
|
|
let selected = Style::default().fg(Color::Rgb(255, 255, 255));
|
|
|
|
|
|
|
|
let rows = inner.height - 2; // -1 for search bar
|
2020-12-18 08:43:15 +01:00
|
|
|
|
|
|
|
let files = self.matches.iter().map(|(index, _score)| {
|
2020-12-18 11:19:50 +01:00
|
|
|
(index, self.options.get(*index).unwrap()) // get_unchecked
|
2020-12-18 08:43:15 +01:00
|
|
|
});
|
|
|
|
|
2020-12-18 11:19:50 +01:00
|
|
|
for (i, (_index, option)) in files.take(rows as usize).enumerate() {
|
2020-12-17 10:08:16 +01:00
|
|
|
if i == self.cursor {
|
|
|
|
surface.set_string(inner.x + 1, inner.y + 2 + i as u16, ">", selected);
|
|
|
|
}
|
|
|
|
|
|
|
|
surface.set_stringn(
|
|
|
|
inner.x + 3,
|
|
|
|
inner.y + 2 + i as u16,
|
2020-12-18 11:19:50 +01:00
|
|
|
(self.format_fn)(option),
|
2020-12-17 10:08:16 +01:00
|
|
|
inner.width as usize - 1,
|
|
|
|
if i == self.cursor { selected } else { style },
|
|
|
|
);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-02-09 07:40:30 +01:00
|
|
|
fn cursor_position(&self, area: Rect, editor: &Editor) -> Option<Position> {
|
|
|
|
self.prompt.cursor_position(area, editor)
|
2020-12-17 10:08:16 +01:00
|
|
|
}
|
|
|
|
}
|