80 lines
2.2 KiB
Rust
80 lines
2.2 KiB
Rust
mod line;
|
|
mod tab;
|
|
|
|
use zellij_tile::prelude::*;
|
|
|
|
use crate::line::tab_line;
|
|
use crate::tab::tab_style;
|
|
|
|
#[derive(Debug)]
|
|
pub struct LinePart {
|
|
part: String,
|
|
len: usize,
|
|
}
|
|
|
|
#[derive(Default)]
|
|
struct State {
|
|
tabs: Vec<TabInfo>,
|
|
mode_info: ModeInfo,
|
|
}
|
|
|
|
static ARROW_SEPARATOR: &str = "";
|
|
|
|
register_plugin!(State);
|
|
|
|
impl ZellijPlugin for State {
|
|
fn load(&mut self) {
|
|
set_selectable(false);
|
|
set_invisible_borders(true);
|
|
set_max_height(1);
|
|
subscribe(&[EventType::TabUpdate, EventType::ModeUpdate]);
|
|
}
|
|
|
|
fn update(&mut self, event: Event) {
|
|
match event {
|
|
Event::ModeUpdate(mode_info) => self.mode_info = mode_info,
|
|
Event::TabUpdate(tabs) => self.tabs = tabs,
|
|
_ => unimplemented!(), // FIXME: This should be unreachable, but this could be cleaner
|
|
}
|
|
}
|
|
|
|
fn render(&mut self, _rows: usize, cols: usize) {
|
|
if self.tabs.is_empty() {
|
|
return;
|
|
}
|
|
let mut all_tabs: Vec<LinePart> = vec![];
|
|
let mut active_tab_index = 0;
|
|
for t in self.tabs.iter_mut() {
|
|
let mut tabname = t.name.clone();
|
|
if t.active && self.mode_info.mode == InputMode::RenameTab {
|
|
if tabname.is_empty() {
|
|
tabname = String::from("Enter name...");
|
|
}
|
|
active_tab_index = t.position;
|
|
} else if t.active {
|
|
active_tab_index = t.position;
|
|
}
|
|
let tab = tab_style(
|
|
tabname,
|
|
t.active,
|
|
t.position,
|
|
t.is_sync_panes_active,
|
|
self.mode_info.palette,
|
|
);
|
|
all_tabs.push(tab);
|
|
}
|
|
let tab_line = tab_line(all_tabs, active_tab_index, cols, self.mode_info.palette);
|
|
let mut s = String::new();
|
|
for bar_part in tab_line {
|
|
s = format!("{}{}", s, bar_part.part);
|
|
}
|
|
match self.mode_info.palette.bg {
|
|
PaletteColor::Rgb((r, g, b)) => {
|
|
println!("{}\u{1b}[48;2;{};{};{}m\u{1b}[0K", s, r, g, b);
|
|
}
|
|
PaletteColor::EightBit(color) => {
|
|
println!("{}\u{1b}[48;5;{}m\u{1b}[0K", s, color);
|
|
}
|
|
}
|
|
}
|
|
}
|