mirror of
https://github.com/sxyazi/yazi.git
synced 2026-07-25 08:41:05 +00:00
66 lines
1.6 KiB
Rust
66 lines
1.6 KiB
Rust
use std::path::MAIN_SEPARATOR;
|
|
|
|
use ratatui::{buffer::Buffer, layout::Rect, widgets::{Block, BorderType, Borders, Clear, List, ListItem, Widget}};
|
|
use yazi_config::{popup::{Offset, Position}, THEME};
|
|
use yazi_core::Ctx;
|
|
|
|
pub(crate) struct Completion<'a> {
|
|
cx: &'a Ctx,
|
|
}
|
|
|
|
impl<'a> Completion<'a> {
|
|
pub(crate) fn new(cx: &'a Ctx) -> Self { Self { cx } }
|
|
}
|
|
|
|
impl<'a> Widget for Completion<'a> {
|
|
fn render(self, rect: Rect, buf: &mut Buffer) {
|
|
let items = self
|
|
.cx
|
|
.completion
|
|
.window()
|
|
.iter()
|
|
.enumerate()
|
|
.map(|(i, x)| {
|
|
let icon = if x.ends_with(MAIN_SEPARATOR) {
|
|
&THEME.completion.icon_folder
|
|
} else {
|
|
&THEME.completion.icon_file
|
|
};
|
|
|
|
let mut item = ListItem::new(format!(" {} {}", icon, x));
|
|
if i == self.cx.completion.rel_cursor() {
|
|
item = item.style(THEME.completion.active.into());
|
|
} else {
|
|
item = item.style(THEME.completion.inactive.into());
|
|
}
|
|
|
|
item
|
|
})
|
|
.collect::<Vec<_>>();
|
|
|
|
let input_area = self.cx.area(&self.cx.input.position);
|
|
let mut area = Position::sticky(input_area, Offset {
|
|
x: 1,
|
|
y: 0,
|
|
width: input_area.width.saturating_sub(2),
|
|
height: items.len() as u16 + 2,
|
|
});
|
|
|
|
if area.y > input_area.y {
|
|
area.y = area.y.saturating_sub(1);
|
|
} else {
|
|
area.y = rect.height.min(area.y + 1);
|
|
area.height = rect.height.saturating_sub(area.y).min(area.height);
|
|
}
|
|
|
|
Clear.render(area, buf);
|
|
List::new(items)
|
|
.block(
|
|
Block::new()
|
|
.borders(Borders::ALL)
|
|
.border_type(BorderType::Rounded)
|
|
.border_style(THEME.completion.border.into()),
|
|
)
|
|
.render(area, buf);
|
|
}
|
|
}
|